- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cant unmount filesystem
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
01-24-2004 10:49 AM
01-24-2004 10:49 AM
cant unmount filesystem
and I keep getting a message that /app is mounted. I kiled all user processes from 'fuser -cu /app'. I also ran fuser -ku /app. it still wont unmount. I am in the middle of this and I need to get it unmounted for production. I really need some help here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 10:55 AM
01-24-2004 10:55 AM
Re: cant unmount filesystem
I assume, fuser yields no result. Look for user with home directories in /app or processes running there. Reboot the machine if necessary. Have you exported /app in some way?
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 10:58 AM
01-24-2004 10:58 AM
Re: cant unmount filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 11:10 AM
01-24-2004 11:10 AM
Re: cant unmount filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 11:42 AM
01-24-2004 11:42 AM
Re: cant unmount filesystem
If 'fuser /dev/vg05/lvvol1' does not give any pids, then you try 'lsof'. 'lsof' is much superior than fuser.
Do 'lsof /app' and see what are the processes that have open files on it.
There have been many posts here that can lead you to where you can download it.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 09:15 PM
01-24-2004 09:15 PM
Re: cant unmount filesystem
you may not want to reduce run level, as you said, but ir should be possible to reboot the machine, if in the past it had no problems coming up again.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 11:26 PM
01-25-2004 11:26 PM
Re: cant unmount filesystem
1) a process has a (possibly deleted) file in /app open
2) a process has a current working dir in /app
and (perhaps most likely)
3) you have a file system mounted under /app. (/app/app2 is a file system)
in which case you need to unmount /app/app2 before you can unmount /app.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 01:45 AM
01-26-2004 01:45 AM
Re: cant unmount filesystem
After using lvextend for increaing the fs size, use the command
#fsadm -F VXFS -b size-in-MB /mount-point-
name
Ex: fsadm -F VXFS -b 1000MB /oracle
to increase /oracle to 1000MB size.
You no need to unmount the fs here.
Srini
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 04:14 AM
01-26-2004 04:14 AM
Re: cant unmount filesystem
You have to use /dev/vg05/lvol1
Rory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 04:57 AM
01-26-2004 04:57 AM
Re: cant unmount filesystem
You can downloadit from the porting site http://eigen.ee.ualberta.ca/hppd/hpux/Sysadmin/lsof-4.70/
You can use it like
lsof /app
it will show all processes using the volume
my best regards
J. A. Orozco
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 05:31 AM
01-26-2004 05:31 AM
Re: cant unmount filesystem
Have you got a filesystem mounted on top of /app, something like /app/oracle. If so unmount that filesystem before you unmount /app.
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 05:35 AM
01-26-2004 05:35 AM
Re: cant unmount filesystem
fuser -ck /dev/vgxx/lvolyy ; umount /dev/vgxx/lvolyy
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2004 09:54 AM
01-26-2004 09:54 AM
Re: cant unmount filesystem
Run fuser -kc /app
Sometimes child processes keep spawning, so you will need to execute this command 3-4 times more till you see no process id in the result of this command.
When you see no process id, run the umount command and then run your extendfs command.
Let us know if this helps.
Anil