- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- REPOSTED: Cannot mount remote file systems
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
05-01-2001 10:19 PM
05-01-2001 10:19 PM
REPOSTED: Cannot mount remote file systems
Hi
I have a filesystem created on Linux RedHat 7.0 called /xpt.
I'm trying to import it into my HP D370 server. However, when I run SAM -> Networking and Communications -> Mounted Remote File Systems
and try to have the directory mounted, I get the following error:
"nfs mount: get_fh: lxmits::RPC: Program not registered."
What does this error mean and how to overcome it?
A possible solution was given as issue:
showmount -e
I can see the exported NFS but cannot see the contents of the directory. Any help?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2001 11:42 PM
05-01-2001 11:42 PM
Re: REPOSTED: Cannot mount remote file systems
rpcinfo -u
The output should be something like: "Version X ready.....". Then, try to mount the filesystem using the "vers=X" parameter, eg:
mount -F nfs -o vers=2 linuxbox:/remotefs /localmount
Hope this helps.
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 08:36 PM
08-23-2001 08:36 PM
Re: REPOSTED: Cannot mount remote file systems
works! I have been able to mount from HP-UX to linux but not vice-versa until I tried the above command. I am using Redhat 7.1 with 2.4.7 kernel. Excellent! Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 08:30 AM
08-24-2001 08:30 AM
Re: REPOSTED: Cannot mount remote file systems
You state "nfs mount: get_fh: lxmits::RPC: Program not registered."
This means that the Remote Procedure Call ( RPC ) is not registred to reply to incomming requests asking for services to be staisfied.
Check the following daemons if they are running :
1. /usr/sbin/rpcbind
2. /usr/sbin/rpc.lockd
3. /usr/sbin/rpc.statd
4. /usr/sbin/rpc.mountd
Check also the output of the command :
#rpcinfo
and fetch if there are entries for the service :
1. rpcbind
2. status
3. nlockmgr
4. mountd
5. nfs
Check lso if the patch "HP DCE/9000 1.7 runtime cumulative patch" is installed.
HTH.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 08:52 AM
08-24-2001 08:52 AM
Re: REPOSTED: Cannot mount remote file systems
On your linux machine do
chkconfig --list |egrep "nfs|portmap"
By default the init level is 3, so the above command should say on for on for nfs,nfslock and portmap(this would start daemons on reboots).
But in any case you can start them manually
/etc/rc.d/init.d/portmap start
/etc/rc.d/init.d/nfslock start
/etc/rc.d/init.d/nfs start
Also update your /etc/exports on your linux machine to
/exported/dir hphost(rw)
once you save the file, run exportfs -a
now on your hp machine
you should be able to mount the filesystem.
BTW, This is an excellent HOW-TO to set up your linux box as an NFS-Server, If it is a trusted environment, you can skipt the /etc/hosts.allow and /etc/hosts.deny section.
http://www.linuxdoc.org/HOWTO/NFS-HOWTO/server.html#SERVERINTRO
-HTH
Ramesh