- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: Remove a file domain after a domain panic with...
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
12-01-2005 01:17 AM
12-01-2005 01:17 AM
Remove a file domain after a domain panic without reboot?
I've tried:
prompt> fuser -ck /bad/filesystem
prompt> umount /bad/filesystem
/bad/filesystem: "Device busy"
prompt> rmfdmn bad_domain
rmfdmn: Fileset bad_domain mounted on /bad/filesystem in domain bad_domain.
All bitfile sets must be dismounted prior to removal.
rmfdmn: can't remove domain 'bad_domain'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 02:01 AM
12-01-2005 02:01 AM
Re: Remove a file domain after a domain panic without reboot?
Vic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 01:21 PM
12-01-2005 01:21 PM
Re: Remove a file domain after a domain panic without reboot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 03:43 PM
12-01-2005 03:43 PM
Re: Remove a file domain after a domain panic without reboot?
Also, voledit is an LSM command. I don't think its related to AdvFS domain.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 11:12 PM
12-01-2005 11:12 PM
Re: Remove a file domain after a domain panic without reboot?
-f Performs a fake mount and actually does not mount the file system. This option is used to verify the arguments you plan to use with the mount command.
I think that this wont force the umount, but you can try. If this is a cluster file system, you can try using:
cfsmgr -u
And ensure that no other members are using the file system.
Your last option is to reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2005 12:04 AM
12-02-2005 12:04 AM
Re: Remove a file domain after a domain panic without reboot?
You're looking at the -f option for mount. Further down in the manpage it says for umount:
-f Performs a fast unmount operation that causes remote file systems to be unmounted without notifying the server.
I've used it for such problems and usually works.
Vic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2005 01:27 AM
12-02-2005 01:27 AM
Re: Remove a file domain after a domain panic without reboot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2005 09:50 AM
12-02-2005 09:50 AM
Re: Remove a file domain after a domain panic without reboot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2005 03:55 PM
12-02-2005 03:55 PM
Re: Remove a file domain after a domain panic without reboot?
2) If you have the 'dbx' tool, you could do "dbx -k /vmunix" and check out what the AdvFS commands are waiting on.
3) If you have 'truss' tool, you could initiate the AdvFS command with truss ("truss
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2005 12:37 AM
12-03-2005 12:37 AM
Re: Remove a file domain after a domain panic without reboot?
after fuser -ck /bad/filesystem there shouldn't be anyone.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 07:57 PM
12-06-2005 07:57 PM
Re: Remove a file domain after a domain panic without reboot?
I had such experience also, where "fuser -ck" and "umount -f" don't do the job.
This usually was the case when there are open inodes on some file, but file is deleted.
The solution would be to identify those PIDs which have open inodes and kill them.
On Solaris OS there are some quite usefull tools/commands, but can't find for Tru64 (maybe lsof could do, but never tried).
So on Tru64 this kind of problem I usually solve with reboot :-|.