- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Servicguard/NIS/Autofs
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
04-26-2006 01:57 AM
04-26-2006 01:57 AM
Servicguard/NIS/Autofs
# cat auto_home
sterlecl nestle:/home/& -nosuid
# cat auto_master
/net -hosts -nosuid,soft,nobrowse
/home /etc/auto_home
I can see the map files on my client and they are pointing at the master NIS. All my user directories are exported off the Master NIS box. Not sure what i am missing.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2006 02:33 AM
04-26-2006 02:33 AM
Re: Servicguard/NIS/Autofs
Are you trying to have NFS as a package thats always on the active node?
Are you using the ServiceGuard NFS kit? Why re-invent the wheel?
Any errors in /var/adm/syslog/syslog.log ?
OS and version of SG would also be nice to know.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2006 04:20 AM
04-26-2006 04:20 AM
Re: Servicguard/NIS/Autofs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2006 04:22 AM
04-26-2006 04:22 AM
Re: Servicguard/NIS/Autofs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2006 07:33 PM
04-26-2006 07:33 PM
Re: Servicguard/NIS/Autofs
I am not sure if I got this thing.
Usually there is no need for a normal user to connect directly to a node, instead they all should connect to the Package-IP.
The home dir of my users is somwewhere in the shared-VG (eg. /db/home/oracle)
to make sure that a user will not log in to a node where the package is not active (this will happen !), you have to modify the users .profile.
in /etc/passwd you keep the entry for every user (like oracle... /home/oracle ...)
in the .profile in /home/oracle you do some scripts like this:
if [ ! -d /db/home/oracle ]
then
echo "Wrong Node, or System not available"
exit
fi
# now export a new HOME-dir
export HOME=/db/home/oracle
cd $HOME
# and now run the real profile ...
. /db/home/oracle/.profile
this way all your User-Settings are movinge with the sharedVG.
The only thing to keep in mind is, to keep password the same on al nodes.
Hope this helps
Christian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 01:39 AM
04-27-2006 01:39 AM
Re: Servicguard/NIS/Autofs
thanks for the help