nixCraft Poll

Topics

Why my Linux seems to hang at Sendmail or Httpd service screen while booting server?

Posted by Vivek Gite [Last updated: April 7, 2006]

It is very common that Linux server seems to hang when starting services such as Sendmail/Postfix or httpd.

The main cause for this is failure to resolve hostname i.e. Linux cannot look up the name of the machine/server via DNS lookup. Your server will boot but it will take some time and service may not work perfectly.

First, make sure the file /etc/resolv.conf has the correct values for your machine's DNS (NS1 and NS2) server ip address:

$ cat /etc/resolv.conf

Output:

nameserver 202.54.1.20
nameserver 202.54.1.22

If you are not sure about correct nameserver IP then ask your network/sys administrator for correct IPs.

Another solution is to add your hostname to /etc/hosts file, which is the static table lookup for host names.

$ cat /etc/hosts

Output:

127.0.0.1          localhost.localdomain localhost
192.168.1.21       www.cyberciti.biz portal
192.168.1.254      router.cyberciti.biz router
192.168.1.25       laptop.cyberciti.biz lappy

Above method is quite useful if you are using Linux on a network without a DNS server. If you are going to configure 192.168.1.21 as the DNS server then you need to add your hostname to /etc/hosts file.

Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

You may also be interested in other helpful articles:

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Copyright © 2004-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.