- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: 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
07-11-2005 10:05 PM
07-11-2005 10:05 PM
RPC: Program not registered
/oppmsprog -ro -root=linux
*line in tru64 5.1A /etc/hosts is -
10.10.10.1 linux
*line in Linux /etc/hosts is -
10.10.10.2 es40
When I am trying to mount Tr464 exported directory /oppmsprog on linux system, getting following error.
[root@BACKUPS etc]# mount -t nfs
es40:/oppmsprog /mnt/cdrom/
mount: RPC: Program not registered
* nfs and portmap is running on tru64 unix.
root@es40> ps -e|grep -E "nfs|portmap"
440 ?? I 0:00.01 /usr/sbin/portmap
176269 ?? I 0:00.00 /usr/sbin/nfsiod 7
Any help is appreciated.
TIA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 10:40 PM
07-11-2005 10:40 PM
Re: RPC: Program not registered
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:06 PM
07-11-2005 11:06 PM
Re: RPC: Program not registered
Run:
# rpcinfo -p
To check the programs registered with portmap. You should see nfsd and mound. If you don't you need to restart the nfs services to get registered with pormap (assuming that you ran sysman nfs).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 05:19 PM
07-12-2005 05:19 PM
Re: RPC: Program not registered
I think I had the same problem and the solution is:
in /sbin/init.d/nfs check the NFSSERVING variable. Set it to 1 (NFSSERVING=1).
Then I think you should do
/sbin/init.d/nfs stop
/sbin/init.d/nfs start.
After this you shoould have:
root# ps -Af | grep nfs
root 524895 524289 0.0 Apr 07 ?? 0:00.01 /usr/sbin/nfsd -t8 -u8
root 524913 524289 0.0 Apr 07 ?? 0:00.01 /usr/sbin/nfsiod 7
root 986745 986030 0.0 09:18:22 pts/2 0:00.00 grep nfs
root# ps -Af | grep portmap
root 524855 524289 0.0 Apr 07 ?? 0:00.04 /usr/sbin/portmap
root 986534 986030 0.0 09:18:57 pts/2 0:00.00 grep portmap
Currently I think you don't have nfsd running
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2005 12:47 PM
07-14-2005 12:47 PM
Re: RPC: Program not registered
startup mountd and the problem will go away
thanks
DP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 04:19 PM
07-21-2005 04:19 PM
Re: RPC: Program not registered
#rcmgr set NFSSERVING 1
#/sbin/init.d/nfs stop
#/sbin/init.d/nfs start
Thank all the members helped me.