Service Named 9.2.4 *** Stopped ***

xuanhau

New member
Joined
Nov 18, 2008
Messages
4
just installed DA on my vps box and I noticed that named is down in the service status...

tryed to start it but all im getting is

Code:
An error has occurred

Details

/sbin/service named restart 2>&1

trying a /sbin/service named start in ssh this gives me the output:
Code:
Starting named:                                            [FAILED]

View tail -10 /var/log/messages

Code:
Nov 25 22:26:01 beophi named[7783]: starting BIND 9.2.4 -u named
Nov 25 22:26:01 beophi named[7783]: using 1 CPU
Nov 25 22:26:01 beophi named[7783]: loading configuration from '/etc/named.conf'
Nov 25 22:26:01 beophi named[7783]: listening on IPv4 interface lo, 127.0.0.1#53
Nov 25 22:26:01 beophi named[7783]: listening on IPv4 interface eth0, 210.245.120.104#53
Nov 25 22:26:01 beophi named[7783]: acl.c:284: REQUIRE((((acl) != ((void *)0)) && (((const isc__magic_t *)(acl))->magic == ((('D') << 24 | ('a') << 16 | ('c') << 8 | ('l')))))) failed
Nov 25 22:26:01 beophi named[7783]: exiting (due to assertion failure)
Nov 25 22:26:02 beophi named: named startup failed

Please help me.
Thanks,
Xuan Hau
 
This is named.conf:

zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};

zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.ip6.local";
allow-update { none; };
};

zone "255.in-addr.arpa" IN {
type master;
file "named.broadcast";
allow-update { none; };
};

zone "0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};

include "/etc/rndc.key";
zone "beo.net" { type master; file "/var/named/beo.net.db"; };

please help me.
Thanks
 
[SOLVED] Service Named 9.2.4 *** Stopped ***

I've just solved this issue:

# rpm -e bind bind-chroot
# yum update bind\*
 
Back
Top