- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- suppressing bind
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
12-02-2003 02:56 AM
12-02-2003 02:56 AM
suppressing bind
thanks
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 03:02 AM
12-02-2003 03:02 AM
Re: suppressing bind
ps -ef | grep named
Second, stop it (if it is running).
Then change the namesvrs to named=0.
Or, change namesvrs and use the kill command.
THe biggest question I have is if you kill/remove named from running, then how are you going to do name resolutions? Do you plan on making changes to /etc/resolv.conf and /etc/nsswitch.conf?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 03:54 AM
12-02-2003 03:54 AM
Re: suppressing bind
ok when the named is killed and the namesvrs is changed how do you tell the system to read the nmaesvrs file. I relaise there is no need to but if i was invoking rather than stopping i would need to.
cheers
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:16 AM
12-02-2003 04:16 AM
Re: suppressing bind
/sbin/init.d/named start
or
/sbin/init.d/named stop
then the service (/sbin/init.d/named) will tell the user that it is not configured to start, thus not starting it. This will also happen (it not starting) at boot time.
Again, if you remove "named" from this server, are there any other servers pointing to this server as a DNS server? And how will this local machine resolve DNS?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2003 12:15 AM
12-03-2003 12:15 AM
Re: suppressing bind
You can figure out if your a DNS nameserver by checking for a /etc/named.boot ( 4.X version of configuration file ) or a /etc/named.conf file. These are the configuration files for DNS/BIND. You can also check your systems /etc/resolv.conf to see if you are referencing yourself as a nameserver. If you don't have any of this then its safe to simply disable DNS/BIND via the method Harry described.
If you are a nameserver and you have resolver clients pointing to your server for name resolution, once you disable DNS/BIND you will have resolver clients that will hang while they attempt to resolve names from your DNS server. In most cases the clients will be configured to use more than one nameserver so they will eventually time out and try the next nameserver listed in their configuration ( /etc/resolv.conf in HPUX ) but this would cause unwanted time delays.
For your reference here is the link to the Installing and administering Internet Services manual which contains some details on configuring BIND etc.
http://www.docs.hp.com/hpux/onlinedocs/B2355-90110/B2355-90110.html
I hope this helps some, let us know if you have more questions.
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 09:39 PM
12-22-2003 09:39 PM
Re: suppressing bind
John