- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DNS Problems
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:28 AM
10-19-2000 05:28 AM
I am having problems with two DNS Servers falling over (i.e not resolving). These are HP-UX B.10.20.U 9000/800 Servers.
The named daemon stopped running, don't know why, but restarted it on all name servers and the resolution resumed. Can anyone help with a permanent fix or suggestions for this.
Thanks
Dipo
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:31 AM
10-19-2000 05:31 AM
Re: DNS Problems
Does /var/adm/syslog/syslog.log have any messages of interest?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:31 AM
10-19-2000 05:31 AM
Re: DNS Problems
have a look at /var/adm/syslog/syslog.log or /var/tmp/named.run to see any reasons for the stopping of named (see also: man named)
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:34 AM
10-19-2000 05:34 AM
Re: DNS Problems
dmesg
or
cat /var/adm/syslog/syslog.log
to see if there are some strange messages!
Federico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 05:43 AM
10-19-2000 05:43 AM
Re: DNS Problems
Then your DNS-servers might have been target for some kind of viscious break-in attempt. Known buffer overflow issues exists in older versions of named.
You could check for 'core' files lying around. Update your named if it is to old - patches are available.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 06:06 AM
10-19-2000 06:06 AM
Re: DNS Problems
After checking the syslog.log file for any tell tell signs, also check if somebody put a line in crontab file to stop the named daemons.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 06:15 AM
10-19-2000 06:15 AM
Re: DNS Problems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 06:25 AM
10-19-2000 06:25 AM
SolutionYou might want to try the following:
1. turn debugging on and examine the debug files for strange activity. You can do this with:
kill -USR1 `cat /var/run/named.pid`
the log files: /var/tmp/named.run
/var/tmp/named.stats would be useful.
2. You can create a script to run from the cron (say every 10 minutes) to email you if named is not running something like:
if [ "ps -ef | grep -c [n]amed" ]
then
mailx -s "named not running" someonewhocares@yourcompany.com
fi
3. install the latest version.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2000 06:51 AM
10-19-2000 06:51 AM
Re: DNS Problems
level 1:
kill -USR1 `cat /var/run/named.pid`
level 2:
kill -USR1 `cat /var/run/named.pid`
level 3:
kill -USR1 `cat /var/run/named.pid`
off:
kill -USR2 `cat /var/run/named.pid`
To see the debug information for the primary make sure the resolv.conf is pointing to the primary. To see the debug information for the secondary make sure the resolv.conf is pointing to the secondary.
The debug file for named is located:
/var/tmp/named.run
Tony