I fixed my issue, this is what I did:
- ssh into the server, and viewed /etc/named.conf
- did a search for the domain and found that it was not present in the file
- went to the bottom of the file and added:
Code:
zone "domainthatwasmissing.com" {
type master;
file "/var/named/domainthatwasmissing.com.db";
};
-saved and closed the file
-went and looked inside the /var/named directory and confirmed that there was a file that was called domainthatwasmissing.com.db
-ran the following:
scripts/restartsrv_named
scripts/restartsrv_bind
The site loads fine now