- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NIS binding
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
08-14-2000 11:48 AM
08-14-2000 11:48 AM
NIS binding
I have a client machine that gets unbind from the NIS server. How can I set it to automatically rebind to the NIS server.
Thanks,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 12:00 PM
08-14-2000 12:00 PM
Re: NIS binding
You can edit as well /etc/rc.config.d/namesvrs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 12:02 PM
08-14-2000 12:02 PM
Re: NIS binding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 12:19 PM
08-14-2000 12:19 PM
Re: NIS binding
rpcinfo -b 100004 2
to make a RPC broadcast from your client that loses its binding to the server. (Use rpcinfo -p | grep ypserv on your NIS server to determine correct version.) You should be returned the IP and hostname of your NIS server running ypserv. If you do not, the service is unavailable. When a client binds to a server, it will use rpc calls like this to look for ANY server on your network running the ypserv daemon.
You should have a backup NIS server somewhere else on your network in the event that this service is unavailable. RPC calls will find this server if it exists.
Use ypinit -s to create the NIS slave server.
If the primary is unavailable for whatever reason, the NIS client will automatically bind to the slave NIS server.
In the event the master server comes available again, the client may bind to that server.
Setting up a backup server is fairly easy. ypinit -s will copy the databases from the master server. Your ypservers map will be updated with the new slave server.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 06:53 AM
08-15-2000 06:53 AM
Re: NIS binding
Steve