Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
09-24-2002, 05:23 PM
|
#1
|
Member
Registered: Dec 2001
Posts: 53
Rep:
|
Named can't create .pid?!?!?
Ok, Im trying to get BIND 9.2 to run on my Redhat 7.1 box, and all is working possibly ok except for 1 thing.....
Named starts up just fine from xinetd, no problems at all. however if I kill it and do:
/usr/sbin/named
My /var/log/messages reads:
Sep 24 16:23:49 ns3 named[1123]: starting BIND 9.2.1
Sep 24 16:23:49 ns3 named[1123]: using 1 CPU
Sep 24 16:23:49 ns3 named[1125]: loading configuration from '/etc/named.conf'
Sep 24 16:23:49 ns3 named[1125]: no IPv6 interfaces found
Sep 24 16:23:49 ns3 named[1125]: listening on IPv4 interface lo, 127.0.0.1#53
Sep 24 16:23:49 ns3 named[1125]: listening on IPv4 interface eth0, 204.57.74.90#53
Sep 24 16:23:49 ns3 named[1125]: command channel listening on 127.0.0.1#953
Sep 24 16:23:49 ns3 named[1125]: couldn't open pid file '/var/run/named/named.pid': Permission denied
Sep 24 16:23:49 ns3 named[1125]: exiting (due to early fatal error)
So, I have no idea what to do, I have several other pids in there (ssh, and a few others) but I can't get named to start from the command line-but if i reboot the server it starts up fine. Anyone have any ideas? Im stumped!
|
|
|
09-24-2002, 05:27 PM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
well does the file not exist already? there might be a stale one without permissions to it. who are you running the server as? do they have rights? how are you running it from the command line?
|
|
|
09-24-2002, 05:42 PM
|
#3
|
Member
Registered: Dec 2001
Posts: 53
Original Poster
Rep:
|
Running as root and i did a 'find / -name named.pid'
and found nothing.....
Im using the command:
/usr/sbin/named
Last edited by morbo; 09-24-2002 at 05:43 PM.
|
|
|
09-24-2002, 11:44 PM
|
#4
|
Member
Registered: Sep 2002
Location: somewhere
Distribution: gentoo
Posts: 123
Rep:
|
as any user, do:
ls -l /var/run/named/named.pid
check the user/group on that file, if it is something other than root run named like
/usr/sbin/named -gu <username>
now, try to understand what user named is running as, you might want to read the DNS howto located at tldp.org
if that file doesn't exist for whatever reason, despite your error message claiming otherwise, do:
touch /var/run/named/named.pid
be warned! running named as root is a Bad Idea
|
|
|
09-25-2002, 12:43 AM
|
#5
|
Member
Registered: Dec 2001
Posts: 53
Original Poster
Rep:
|
What do you mean understand what username? The username is 'named', apparently he doesn't have permission to the named.pid, what should the file permissions be for the named.pid ?
|
|
|
09-25-2002, 12:58 AM
|
#6
|
Member
Registered: Sep 2002
Location: somewhere
Distribution: gentoo
Posts: 123
Rep:
|
Quote:
Originally posted by morbo
What do you mean understand what username? The username is 'named', apparently he doesn't have permission to the named.pid, what should the file permissions be for the named.pid ?
|
understand why named is running as such, figure out if said usename is in the passwd file, and such
named is probably changing to the user nobody at started. add the -u named to the command will fix that.
I was trying to show him the answer, not tell him.
named.pid should be 600, owned by whatever user you want named to run as (typically named).
|
|
|
09-25-2002, 01:17 AM
|
#7
|
Member
Registered: Dec 2001
Posts: 53
Original Poster
Rep:
|
Oh I thought that went without saying =)
I understand the basics of file perms, users, and groups
named starts up as named, and runs as named not 'nobody' (like say apache or my bnc or eggdrop bot). The file named.pid was set to 544, chaning it to 600 didnt work.....
like i said it runs FINE at startup, but if i kill it and try to run it/usr/sbin named i get that in my /var/msg/log it doesnt say ANYTHING at the prompt.....
|
|
|
09-25-2002, 01:33 AM
|
#8
|
Member
Registered: Sep 2002
Location: somewhere
Distribution: gentoo
Posts: 123
Rep:
|
Quote:
Originally posted by morbo
like i said it runs FINE at startup, but if i kill it and try to run it/usr/sbin named i get that in my /var/msg/log it doesnt say ANYTHING at the prompt.....
|
named won't say anything at the prompt
to get error messages display and not logged, and run named in the forground, run
named -g
try running
named -gu named
|
|
|
09-25-2002, 01:46 AM
|
#9
|
Member
Registered: Dec 2001
Posts: 53
Original Poster
Rep:
|
\that worked! running it as named -gu named worked, so i took the g off (named -u named) and tada, thanks Im not sure why I didnt think of that one myself =)
|
|
|
09-25-2002, 03:08 AM
|
#10
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
you should run it as a proper service anyway
service start named
or
/etc/init.d/named start
|
|
|
09-25-2002, 03:21 AM
|
#11
|
Member
Registered: Mar 2002
Location: Elyria, Ohio
Distribution: Debian, Nothing else required
Posts: 141
Rep:
|
If you're kill named because you made changes in named's database, instead of killing it, do:
kill -1 <named-pid>
This will force named to re-read all it's configuration files. -mk
|
|
|
09-11-2006, 02:53 AM
|
#12
|
LQ Newbie
Registered: Aug 2006
Distribution: fedora core 6
Posts: 7
Rep:
|
yes!!
Quote:
Originally Posted by RijilV
named won't say anything at the prompt
to get error messages display and not logged, and run named in the forground, run
named -g
try running
named -gu named
|
thanks dude! i was about to post on a new thread but your guide helped me out! greatly appreciated!! 
|
|
|
All times are GMT -5. The time now is 04:47 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|