I tracked down the reason why the "host" command wouldn't return good data. The hostname entry in /etc/sysconfig/network only had the server name, not the FQDN. Once I put in the full name and rebooted, the host `hostname` command returned the following:
Code:
[root@TB003 zcs]# host `hostname`
TB003.mydomain.local has address 192.168.100.241
However, the install script still fails at the same point. I've set up the named.conf file and the zone file as follows:
Code:
// Default named.conf generated by install of bind-9.2.4-27.0.1.el4
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 68.13.16.30 ; };
};
include "/etc/rndc.key";
zone "TB003.mydomain.local" {
type master;
file "/var/named/data/db.TB003.mydomain.local";
}; Code:
;
;
;
@ IN SOA TB003.mydomain.local. hostmaster.TB003.mydomain.local. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define Nameservers and Mail servers
IN NS 192.168.100.241
IN A 192.168.100.241
IN MX 10 TB003.mydomain.local. The named daemon is running. Any other suggestions?
BTW - Here's the contents of my hosts file:
Code:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
192.168.100.241 TB003.mydomain.local TB003