- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Disk hung in "mounted dismount" state OPENVMS
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-12-2006 09:11 AM
12-12-2006 09:11 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2006 09:53 AM
12-12-2006 09:53 AM
SolutionThe dismount should complete if/when you "close" the open file. What type(s) of file was open when you issued the dismount? If it was a user file, track down the "user" and have them close the file or $stop/id ;-). Page and swap files can be deinstalled. Installed images can be removed.
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2006 06:57 PM
12-12-2006 06:57 PM
Re: Disk hung in "mounted dismount" state OPENVMS
You have to do show dev/files on all nodes to find the users of the disk.
And even when there is nothing, there might be other invisible things like spool files.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2006 07:10 PM
12-12-2006 07:10 PM
Re: Disk hung in "mounted dismount" state OPENVMS
Better is stop all processes which have some open files on the disk.
Petr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2006 01:25 AM
12-13-2006 01:25 AM
Re: Disk hung in "mounted dismount" state OPENVMS
Thanks for all your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2006 01:35 AM
12-13-2006 01:35 AM
Re: Disk hung in "mounted dismount" state OPENVMS
attached is a small DCL Routine, that when called with a diskname as P1 creates 3 DCL routines in SYS$LOGIN:
- UD_node_disk.INSFILES
deinstalles all installed images
- UD_node_disk.PROCESSES
stops all processes, which have files open on disk
- UD_node_disk.USER
does a reply to all users, which have open files
(messages are in german, but easy to change)
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2007 03:45 AM
06-12-2007 03:45 AM
Re: Disk hung in "mounted dismount" state OPENVMS
$ device = f$device( "*" )
$ if device .eqs. "" then $ exit
$ spldevnam = f$getdvi( device, "spldevnam" )
$ if spldevnam .nes. "" then $ write sys$output device, " ", spldevnam
$ goto loop