- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Determining NFS client mounts from the VMS Server
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
07-17-2006 07:36 PM
07-17-2006 07:36 PM
From OpenVMS (NFS Server) is there a way of determining which clients have NFS mounts active? I could in principal skim through the operator.log file and pick up the mount/dismount requests, just wondering if there is another way.
We're using TCPIP 5.4 ECO 5
Regards, and thanks for your help.
Brian
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 08:27 PM
07-17-2006 08:27 PM
Re: Determining NFS client mounts from the VMS Server
-> protocol used is UDP per default.
UDP is stateless. There is no connection active for mounted shares.
Never tried NFS in TCP mode yet.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 09:19 PM
07-17-2006 09:19 PM
Re: Determining NFS client mounts from the VMS Server
In my log file of NFS mountd I found messages "cannot dump mountlist to tcpip$etc:mountdtab.dat". May be that's the undocumented alternative of rmtab ?
Is "ucx show mount/all" showing anything ?
I created it as a flat file : no improvements. Boot server. Idem. Google didn't find any doc.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 10:05 PM
07-17-2006 10:05 PM
Re: Determining NFS client mounts from the VMS Server
TCPIP SHO NFS gives come clues as to what's going on but doesn't show the current mounts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 10:06 PM
07-17-2006 10:06 PM
SolutionI'm running TCPIP V5.5:
SYS$SPECIFIC:[TCPIP$ETC]MOUNTDTAB.DAT
seems to contain the desired data, but it's accessed by TCPIP$MOUNTD_1 exclusively, so it's quite hard to get to it's contents. I found the file header in INDEXF.SYS, obtained the LBN and used the DISKBLOCK (OpenVMS Freeware) utility to read and dump the contents of the file.
It seems to contain information like this:
remote_node:/local_file_system
If the local file system has been dismounted by the remote NFS client, the first character of the remote_node name seems to be replaced by '#'.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 10:26 PM
07-17-2006 10:26 PM
Re: Determining NFS client mounts from the VMS Server
Many thanks
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 10:57 PM
07-17-2006 10:57 PM
Re: Determining NFS client mounts from the VMS Server
Volker : what is the char of the file ? I created it empty but still get invalid device in the log file (or is there a logical ? The error message gives the full name.)
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 10:58 PM
07-17-2006 10:58 PM
Re: Determining NFS client mounts from the VMS Server
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 11:03 PM
07-17-2006 11:03 PM
Re: Determining NFS client mounts from the VMS Server
Still better than nothing though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 11:14 PM
07-17-2006 11:14 PM
Re: Determining NFS client mounts from the VMS Server
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2006 11:16 PM
07-17-2006 11:16 PM
Re: Determining NFS client mounts from the VMS Server
explains some things.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 05:35 PM
07-18-2006 05:35 PM
Re: Determining NFS client mounts from the VMS Server
in TCPIP V5.5, this file is accessed via TCPIP$ETC:MOUNTDTAB.DAT - a sequential STREAM_LF file.
In this version of TCPIP a TCPIP DISM from a client seems to be reflected in that file by replacing the first character of the remote:/local_file_system entry with a '#' character. Certainly only an explicit TCPIP DISM will cause the entry to be 'invalidated'. The mountdtab man page link provided above explains this as well.
As this file does not seem to be mentioned in the TCPIP documentation, usage of this file is probably considered unsupported.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2006 09:03 PM
07-19-2006 09:03 PM
Re: Determining NFS client mounts from the VMS Server
Many thanks
Brian