Named 9.3.4: Need urgent help. Please help me

ramnathero

Verified User
Joined
May 18, 2007
Messages
6
Hello!

my server is running with DirectAdmin and for some reason the Named 9.3.4 is *** Stopped *** and i was reboot several time and check. i still facing the same problem and i cannot start the Named 9.3.4. every time i try to start i getting a error message like following.


An error has occurred

Details

/sbin/service named start 2>&1




is there is anyone tell me how to solve this problem. i need to fixed asap. so every help is thankfuls.

this is only happen after i installed ffmpeg, ffmpeg-php and all codecs, flvplayer2 also i renumber i mistaken and installed git. i think the git may cause this problem if is that the problem how can i solve it. i dont know how to uninstall git too.


when i used ssh to run the starting command i get like folloing.

[root@lsn]# service named start
Starting named:
Error in named configuration:
zone localhost/IN: loading master file localhost.zone: file not found
_default/localhost/IN: file not found
zone 0.0.127.in-addr.arpa/IN: loading master file named.local: file not found
_default/0.0.127.in-addr.arpa/IN: file not found
zone lsn-d1698.limestonenetworks.com/IN: loaded serial 2008081300
zone mydomain.com/IN: loaded serial 2008081401
zone mydomain.net/IN: loaded serial 2008082300
[FAILED]




thank you and looking forward asap.
 
Last edited:
Please PM me with your IP and root password. I'll fix that for you.
 
can you please let me know the way so i can fix it. for the security issue i am not able to share the root access. please help me. thank you.




Please PM me with your IP and root password. I'll fix that for you.
 
Try removing all parts that have "file not found" in the error from /etc/named.conf.
 
thank you smtalk,


but when i do nano /etc/named.conf


i get the file with following data in and i can't see file not found




// generated by named-bootconf.pl

options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};

//
// a caching only nameserver config
//
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; };
};

include "/etc/rndc.key";

zone "mydomain.com" { type master; file "/var/named/mydomain.com.db"; };
zone "mydomain.com" { type master; file "/var/named/mydomain.com.db"; };
zone "mydomain.net" { type master; file "/var/named/mydomain.net.db"; };



Try removing all parts that have "file not found" in the error from /etc/named.conf.
 
Last edited:
Remove:
Code:
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; };
};
 
hello smtalk,

i get you what you mean by remove those not found.

after i remove those and it is started.


i removed

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



but the question is, is this will cause any problem?


please let me know. thank you for the help.
 
No, it won't cause any problems (unless you really need them).
 
oh ic. ya it is started now.

can you tell me what those things does which are i removed?


even after this started, i cannot receiving the email which i created via DirectAdmin, do you have any clue why is that?



No, it won't cause any problems (unless you really need them).
 
Back
Top