- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- RPC program not registered
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
08-10-2006 04:46 AM
08-10-2006 04:46 AM
I have done:
on the server side:
edit nfsconf.
nfs.server start
/etc/exports
exportfs -a
on the client side:
nfsconf
nfs.client start
mount server:/mount /mount
showmount -a gives me RPC program not registered.
if i try to mount it again it will tell me already mounted.
what have i done wrong ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 04:58 AM
08-10-2006 04:58 AM
SolutionFrom the client, give the command
showmount -e
to make sure that the share is visible !!
IF there are errors, check for the nfs process running, both on server and client.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 05:00 AM
08-10-2006 05:00 AM
Re: RPC program not registered
If it is '0' then you need to make it '1'.
START_MOUNTD=1
Then umount your NFS mountpoint, stop and restart the nfs.client and then try mounting the NFS share again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 05:04 AM
08-10-2006 05:04 AM
Re: RPC program not registered
check for nfs processes running on the client.
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.client start
showmount -e
mount
use bdf to check that the nfs mount is available !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 05:14 AM
08-10-2006 05:14 AM
Re: RPC program not registered
START_MOUNTD=1
showmount -e server : works fine
exportfs: works fine
the mount is shown in bdf.
but still the showmount command does not work. the problem is resolved when i start the nfs server.
if i start the nfs client alone there is no nfs running " ps -ef " how can i run them?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 05:25 AM
08-10-2006 05:25 AM
Re: RPC program not registered
Only the server that is giving the data needs to run the nfsd (nfs.server deamon). This should be running when you share the data.
On the client side, only the nfs.client needs to be running. This will handle the mount requests !!
unmount /
ensure that the
(should see the shared directory !!)
On the client, mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2006 05:35 AM
08-10-2006 05:35 AM
Re: RPC program not registered
The share is shared -- exportfs shows the files shared.
When i mount the share on the client, I have no errors everything works fine, I can even see the files and change them " the files that are shared" . However when i try to make from the client side:
showmount : i get the error RPC...
showmount -a: same error
showmount -e: same error
showmount -e server: no error
from the server side no errors at all.