HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: rpcinfo queries
Operating System - HP-UX
1834595
Members
3787
Online
110069
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
04-22-2009 11:47 PM
04-22-2009 11:47 PM
rpcinfo queries
Hi,
Our auditor is asking what program is required under rpcinfo -p.
How to check what program is running for the output of rpcinfo -p?
# rpcinfo -p
program vers proto port service
100000 4 tcp 111 rpcbind
100000 3 tcp 111 rpcbind
100000 2 tcp 111 rpcbind
100000 4 udp 111 rpcbind
100000 3 udp 111 rpcbind
100000 2 udp 111 rpcbind
100068 2 udp 49153 cmsd
100068 3 udp 49153 cmsd
100068 4 udp 49153 cmsd
100068 5 udp 49153 cmsd
805306352 1 tcp 772
805502976 2 tcp 854
805502976 1 tcp 855
Thanks in advacne.
Our auditor is asking what program is required under rpcinfo -p.
How to check what program is running for the output of rpcinfo -p?
# rpcinfo -p
program vers proto port service
100000 4 tcp 111 rpcbind
100000 3 tcp 111 rpcbind
100000 2 tcp 111 rpcbind
100000 4 udp 111 rpcbind
100000 3 udp 111 rpcbind
100000 2 udp 111 rpcbind
100068 2 udp 49153 cmsd
100068 3 udp 49153 cmsd
100068 4 udp 49153 cmsd
100068 5 udp 49153 cmsd
805306352 1 tcp 772
805502976 2 tcp 854
805502976 1 tcp 855
Thanks in advacne.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2009 01:32 AM
04-23-2009 01:32 AM
Re: rpcinfo queries
So looking down that list, the first 6 entries are for the rpcbind process itself, and will always be there if rpcbind is running.
The entry for cmsd is I suspsect for the calendar message service daemon rpc.cmsd, which is probably started by this line in /etc/inetd.conf :
rpc dgram udp wait root /usr/dt/bin/rpc.cmsd 100068 2-5 rpc.cmsd
I very much doubt you require this service (have a read of the man page to understand what it's for), so you can probably comment it out of inetd.conf and then run "inetd -c" to re-eread the config file.
The last three entries are more of a mystery and will take some detective work on your part - I'd get a copy of lsof from here:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.82/
and then see what processes are listening on those ports using:
lsof -i :772 -i :854 -i :855
HTH
Duncan
I am an HPE Employee
The entry for cmsd is I suspsect for the calendar message service daemon rpc.cmsd, which is probably started by this line in /etc/inetd.conf :
rpc dgram udp wait root /usr/dt/bin/rpc.cmsd 100068 2-5 rpc.cmsd
I very much doubt you require this service (have a read of the man page to understand what it's for), so you can probably comment it out of inetd.conf and then run "inetd -c" to re-eread the config file.
The last three entries are more of a mystery and will take some detective work on your part - I'd get a copy of lsof from here:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.82/
and then see what processes are listening on those ports using:
lsof -i :772 -i :854 -i :855
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2009 01:55 AM
04-23-2009 01:55 AM
Re: rpcinfo queries
- Mgt to disable cmsd since it is not in use and remove the last 3 entry since no return with lsof -i :
- What is rpcbind use for? Is it OK to remove?
- I tried lsof -i :111 but there is nothing return
- What is rpcbind use for? Is it OK to remove?
- I tried lsof -i :111 but there is nothing return
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2009 02:10 AM
04-23-2009 02:10 AM
Re: rpcinfo queries
Think of rpcbind as a bit like inetd, but for remote procedure calls - certain appalications (like some of the CDE tools, and NFS) use rpcbind, so you have to be sure than no processes are using its services, before you could consider diabling it.
In your cases you have a few services which appear to be using rpcbind - you need to determine what they are first before you disable it. If you can get the system to a state where you only see the first 6 lines from "rpcinfo -p", then you can potentially disable it.
Personally I'd leaver rpcbind there though, and concentrate on those other items...
HTH
Duncan
I am an HPE Employee
In your cases you have a few services which appear to be using rpcbind - you need to determine what they are first before you disable it. If you can get the system to a state where you only see the first 6 lines from "rpcinfo -p", then you can potentially disable it.
Personally I'd leaver rpcbind there though, and concentrate on those other items...
HTH
Duncan
I am an HPE Employee

The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP