dns wont start BIND 9.2.2-P3

Stormbox

Verified User
Joined
Jul 1, 2004
Messages
26
our bind wont start causing all the domains all not to function.

any ideaS~ we tried reinstalling a new version of bind still it wont run

we killed the pid but

[root@ns1 named]# service named start
named: already running[root@ns1 named]# ls

it says its running
 
Hey,

Have you tried any of these:

killall named

or

killall -KILL named

or maybe

pkill -KILL named

Then try to start it.

David
 
Stormbox said:
it says its running
That's not a good enough indication that it's really running.

What do you get when you do:

$ ps waux | grep named

(The "$" means you don't have to be root. You do NOT type the "$".)

Jeff
 
everything works now but reverse doesnt though..
i have this as my error now

**Unmatched Entries**
succeeded: 9 Time(s)
/etc/named.conf:19: Ignoring BIND 9 inet control clause: 3 Time(s)
/etc/named.conf:19: unknown key 'rndckey': 3 Time(s)
AF_INET6: address family not supported: 2 Time(s)
check_hints: A records for B.ROOT-SERVERS.NET class 1 do not match hint records: 2 Time(s)
deleting interface [127.0.0.1].53: 1 Time(s)
deleting interface [202.172.248.46].53: 1 Time(s)
group = 25: 2 Time(s)
hint zone "" (IN) loaded (serial 0): 3 Time(s)
limit files set to fdlimit (1024): 3 Time(s)
named reload failed: 2 Time(s)
starting (/etc/named.conf). named 8.4.4 Tue Aug 3 17:43:30 SGT 2004 ^[email protected]:/home/stormbox/src/bin/named: 3 Time(s)
stopping command channel on 127.0.0.1#953: 9 Time(s)
user = named: 2 Time(s)


so what do i need to rectify this?
 
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

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; };
};
 
Back
Top