- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Not able to halt Oracle pkg occasionally
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
03-22-2001 07:55 PM
03-22-2001 07:55 PM
Not able to halt Oracle pkg occasionally
In MC/SG environment, we used to halt Oracle pkg; mount back the oracle file system to stand alone and use fbackup to perform file system to backup using cron.
Occasionally, the halting is not successful due to some processes still attaching to the file system.
I believed that cmhaltpkg uses fuser to remove processes that attached to the file system as indicated in the log file below but it failed to do so:
Mar 22 21:05:34 - Node "tphost2": Unmounting filesystem on /dev/vg04/lvol3
WARNING: Running fuser to remove anyone using the file system directly.
/dev/vg04/lvol3: 8902mto(ora8p) 8952mto(ora8p) 9004o(ora8p)
umount: cannot unmount /ora_prod_11i : Device busy
ERROR: Function umount_fs
ERROR: Failed to unmount /dev/vg04/lvol3
How can this be avoided ?
Thanks in advance,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2001 08:16 PM
03-22-2001 08:16 PM
Re: Not able to halt Oracle pkg occasionally
I had a similar problem with my MC/ServiceGuard. Installing the latest fuser patches fixed it. The patch I installed might have already been superceded, but it solved the problem:
# PHCO_21901 1.0 fuser(1M) cumulative patch
Search for the latest fuser patch in the ITRC, install it and see if it works.
Hope this Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2001 08:47 PM
03-22-2001 08:47 PM
Re: Not able to halt Oracle pkg occasionally
I agree with the suggestion to install the latest fuser patch.
One other thing you can try is to also change the FS_UMOUNT_COUNT parameter in
package control script from 1 to 2
Steffi Jones
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2001 11:06 AM
03-26-2001 11:06 AM
Re: Not able to halt Oracle pkg occasionally
I don't think any processes will be left after this.
Good luck.
Jeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2001 10:19 PM
03-28-2001 10:19 PM
Re: Not able to halt Oracle pkg occasionally
Due a limitation of the fuser command sometimes fuser in not able to kill all process attached to a mount point, especially when the process are enough, try this :
1) modify the fs_umount procedure adding a loop that try for a series of fuser -cku
2) sometimes umount complain about a device busy, but with fuser no process seems to using the FS, so use the free command lsof (list open files), is more powerful than fuser, pass the result of lsof to a kill command, it will kill everything attached to the FS mount point