- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- serviceguard and nfs toolkit
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
06-24-2002 08:11 PM
06-24-2002 08:11 PM
serviceguard and nfs toolkit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 12:46 AM
06-25-2002 12:46 AM
Re: serviceguard and nfs toolkit
The NFS Toolkit is just a bunch of scripts to save you some work in this process... If you want scripts which are 'supported' by HP then it may be worth looking at... if you are confident in supporting your own script then don't bother.
Re your problem... I think we can hazard a guess at what the issue is - you certainly shouldn't be un-mounting the file system yourself in the customer defined halt commands section (I presume this is where you meant rather than the run command section). Take a look at the package control script, you should find a FILESYSTEMS section in here where you list any filesystems that are part of the package, e.g.:
LV[0]="/dev/vgsg01/lvol1"; FS[0]="/pkg1/mnt1"; FS_MOUNT_OPT[0]="-o delaylog"
As long as a filesystem is detailed in here, ServiceGuard will take care of mounting and unmounting your filesystem as the package is started or stopped. ServiceGuard will also run an fuser -ku on the mount point to remove any processes accessing the file system whcih would prevent the umount from working.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 05:07 AM
06-25-2002 05:07 AM
Re: serviceguard and nfs toolkit
I have been running a NFS package for about two years. It was initially setup using the NFS toolkit. It was modified recently because it wasn't unmounting Filesystems that were still in use by an application.
In the unmount_fs function of the pkg.cntl script, we had to add another counter for how may attempts at unmounting we had tried. The original NFS toolkit we had (from 1999) did not use 'fuser -ku'. It does now =)
HTH, Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 05:44 AM
06-25-2002 05:44 AM
Re: serviceguard and nfs toolkit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 06:10 AM
06-25-2002 06:10 AM
Re: serviceguard and nfs toolkit
One thing I did do was write a startup script to mount the NFS filesystem if the package is available in case the clients are booted after the NFS server.
On your last point I think if the package is switched the application is stopped and started and users have to start from scratch.