- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: rpcbind: cannot accept connection
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-01-2005 06:06 AM
08-01-2005 06:06 AM
rpcbind: cannot accept connection
rpcbind: cannot accept connection: bad call sequence number (current state 4)
I cannot figure out why. We used to have an nfsmount to a remote server, but, it is no longer mounted. It's not exported from the remote server any longer, either.
Is there any way to figure out what is making the rpc call so I can remove the errors from the syslog? Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 06:22 AM
08-01-2005 06:22 AM
Re: rpcbind: cannot accept connection
Does any of the progrma look suspicious??
. Also once you get port number, you can run lsof/netstat to know what program is listening on that port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 06:58 AM
08-01-2005 06:58 AM
Re: rpcbind: cannot accept connection
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
100024 1 tcp 49152 status
100024 1 udp 49154 status
100021 1 tcp 49153 nlockmgr
100021 1 udp 49155 nlockmgr
100021 3 tcp 49154 nlockmgr
100021 3 udp 49156 nlockmgr
100021 4 tcp 49155 nlockmgr
100021 4 udp 49157 nlockmgr
100020 1 udp 4045 llockmgr
100020 1 tcp 4045 llockmgr
100021 2 tcp 49156 nlockmgr
100068 2 udp 49160 cmsd
100068 3 udp 49160 cmsd
100068 4 udp 49160 cmsd
100068 5 udp 49160 cmsd
100083 1 tcp 49157 ttdbserver
805306352 1 tcp 822
100005 1 udp 49174 mountd
100005 3 udp 49174 mountd
100005 1 tcp 49195 mountd
100005 3 tcp 49195 mountd
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100003 2 tcp 2049 nfs
100003 3 tcp 2049 nfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 07:21 AM
08-01-2005 07:21 AM
Re: rpcbind: cannot accept connection
nestat -an | grep 822
with lsof
lsof -i tcp:822
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 07:57 AM
08-01-2005 07:57 AM
Re: rpcbind: cannot accept connection
tcp 0 0 172.x.x.x.822 172.x.x.x.49175 ESTABLISHED
tcp 0 0 172.27.16.135.49175 172.x.x.x.822 ESTABLISHED
tcp 0 0 *.822 *.* LISTEN
I'm still not sure what's happening here. It looks like the server is listening on that port and connecting to itself? I am not able to determine whan program is associated with this port (assuming this is the port causing the trouble).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 08:05 AM
08-01-2005 08:05 AM
Re: rpcbind: cannot accept connection
should give you more information about this process as anil suggested.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 08:45 AM
08-01-2005 08:45 AM
Re: rpcbind: cannot accept connection
sh: lsof: not found.
Looks like I do not have this utility. Is it something I can install without interuppting the server (it's production)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 10:59 AM
08-01-2005 10:59 AM
Re: rpcbind: cannot accept connection
You can download download the binary depot or source code of lsof from http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.74/
Well, it shouldn't interrupt anything (atleast it didn't when I installed lsof-4.64 some time back!!)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 11:12 AM
08-01-2005 11:12 AM
Re: rpcbind: cannot accept connection
to determine which kernel width your OS is, run command
getconf KERNEL_BITS
if it is 32, look for 32 bit version of lsof. It is not available from porting archive anymore but you still can find it via some googling.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 03:02 AM
08-02-2005 03:02 AM
Re: rpcbind: cannot accept connection
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 03:09 AM
08-02-2005 03:09 AM
Re: rpcbind: cannot accept connection
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 03:47 AM
08-02-2005 03:47 AM
Re: rpcbind: cannot accept connection
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2005 05:25 AM
08-02-2005 05:25 AM
Re: rpcbind: cannot accept connection
http://www.colasoft.com/resources/ports_list.php
If it does not get listed in /etc/services, it does not mean that it doesn't exist in your system. It is just another ill-coded program listening on this port, rogue application for the lack of a better term.
Good behaving apps, list themselves in /etc/services and inetd.conf and get launched by inetd to minimize the load they put on the processor. But it looks like you application is in a daemon mode and continuously litening to port 822. Hope that it is not something malicious, planted by a disgruntled ex-employee or something. This kind of stuff always make me feel uneasy
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2005 03:54 AM
08-04-2005 03:54 AM
Re: rpcbind: cannot accept connection
lsof: WARNING: no block devices found
lsof: WARNING: /home/root/.lsof was updated.
It looks like I may have to open a sw case w/ HP.