- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Getting rid off an DNS
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
09-12-2002 08:22 AM
09-12-2002 08:22 AM
I have an old production server running HP-UX 10.20. In the last weeks I have been trying to tide it up, finding day by day nasty surprises...
The latest one: I found out it is a DNS, and it keeps filling the syslog file with messages like:
Sep 12 07:06:07 myserver-A named-xfer[4148]: [XXX.XXX.XXX.X] not authoritative for myserver.mydomain.co.uk, SOA query got rcode 0, aa 0, ancount 1, aucount 0
I know that there are many things wrong with the DNS configuration files, and they are quite out of date, but I'm not interested to used it as DNS (We have never intended to!).
Is there any way to switch off named forever and ever? I have read a lot about configuring but not disabling it... and in sam the only available thing is to stopped it, but at boot time I imagine it will come back...
Thanks in Advance
BIND version named 4.9.7
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:25 AM
09-12-2002 08:25 AM
Re: Getting rid off an DNS
If named process is running
try killing it by
sig_named kill
You can also disable it by while booting..
in file /etc/rc.config.d/namesvrs
put 0 infront of NAMED
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:26 AM
09-12-2002 08:26 AM
Re: Getting rid off an DNS
The config file you are after is /etc/rc.config.d/namesvrs
/sbin/init.d/named stop
set
NAMED=0
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:30 AM
09-12-2002 08:30 AM
Re: Getting rid off an DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:30 AM
09-12-2002 08:30 AM
Re: Getting rid off an DNS
ps -ef | grep named
kill -9 pid-of-named
To remove it from startup edit /etc/rc.config.d/namesvrs and change NAMED=1 to NAMED=0.
HTH,
Sean
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:32 AM
09-12-2002 08:32 AM
SolutionThe default startup parameter is in /etc/rc.config.d/namesvrs
You must edit the file and make the parameter "named"=0
I believe it would be currently "1" as it starts up after a reboot.
Also, the system startup files are placed in /sbin/init.d/ and you may remove links from /sbin/rc2.d & rc3.d like /sbin/rc2.d/S370named & /sbin/rc1.d/K630named
This will resolve your issue. Don't forget to assign points to answers which are valuable to you.