Rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)


 
Thread Tools Search this Thread
Operating Systems Solaris Rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)
# 1  
Old 06-12-2013
Rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)

I have two servers with a fresh install of Solaris 11, and having problems when doing rpcinfo between them. There is no firewall involved, so everything should theoretically be getting through. Does anyone have any ideas? I did a lot of Google searches, and haven't found a working solution yet.

Code:
server1$ rpcinfo -p server2
rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error)

Code:
# svcs -a | grep rpc
disabled       May_20   svc:/network/rpc/keyserv:default
disabled       May_20   svc:/network/rpc/rstat:default
disabled       May_20   svc:/network/rpc/rex:default
disabled       May_20   svc:/network/rpc/wall:default
disabled       May_20   svc:/network/rpc/rusers:default
disabled       May_20   svc:/network/rpc/spray:default
online         May_20   svc:/network/rpc/bind:default
online         May_20   svc:/network/rpc/gss:default
online         May_20   svc:/network/rpc/smserver:default

# 2  
Old 06-13-2013
Check output on host you are trying to get RPC info from (server1) :
Code:
svcprop network/rpc/bind:default | grep -i local

If it returns config/local_only boolean true, then put it to false via svccfg.
Code:
svc:> select network/rpc/bind
svc:/network/rpc/bind> setprop config/local_only=false
svc:/network/rpc/bind> quit
root@host:~# svcadm refresh /network/rpc/bind
root@host:~# svcprop network/rpc/bind:default | grep -i local
config/local_only boolean false
root@host:~#

The rpcinfo -p command should work now.

Hope that helps
Regards
Peasant.
This User Gave Thanks to Peasant For This Post:
# 3  
Old 06-18-2013
Thank you very much! That solved the problem.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sendemail Error - Authentication... failed

SCO Unix OpenServer v6. We use the script below for sending mass emails with attachments. sendemail -f $From_user -o message-file=/u/fg4/data/EmailDefaultBody.html -u $su bj -s $MAIL_SRVR -xu $MAIL_USER -xp $MAIL_PSWD -a $emlname.pdf -t $MAILTO MAIL_SVR=SMPTOUT.SECURESERVER.NET ... (0 Replies)
Discussion started by: jet47
0 Replies

2. HP-UX

RPC Error

Hi All, I am receiving RPC-Error 5 and sometimes RPC-Error 2 in my Hp-Ux servers. I have tried to kill and restart again.. Again same errors. Sometimes RPC process going down. Due to this other applications are not working in Hp ux servers. Kindly share some ideas for root cause... Or... (2 Replies)
Discussion started by: jakmani
2 Replies

3. Cybersecurity

Fail2ban ERROR Unable to contact server. Is it running?

Hello, my fail2ban service is running (ps aux) When i do: fail2ban-client status it returns: ERROR Unable to contact server. Is it running? same message on fail2ban restart. In /etc/fail2ban/fail2ban.conf i see this line: socket = /var/run/fail2ban/fail2ban.sock but this file does... (1 Reply)
Discussion started by: postcd
1 Replies

4. Solaris

RPC: Rpcbind failure - RPC: Timed out error (solaris)

C: Rpcbind failure - RPC: Timed out error (solaris) hello an nfs server on my sun fire v440 is not responding , i get the error bellow and lots of my networking services are not reponding, please helppppp its an emergency RPC: Rpcbind failure - RPC: Timed out i also get NFS server... (2 Replies)
Discussion started by: feg
2 Replies

5. Solaris

Error : "RPC: Rpcbind failure - RPC: Timed out"

Hello I am having an issue with a server SUN FIRE T2000 (Solaris 10). First of all the server didn't boot normaly so I did a full restoration of the file systems. Now the server boot, most of the services are available (not all the services), but I keep on seeing RPC: Rpcbind failure -... (4 Replies)
Discussion started by: feg
4 Replies

6. Solaris

Cygwin X Server error: xdmcp fatal error session failed session 23 failed for display

Hi, i got the following error when i tried to access the cygwin x server from a windows XP PC. "xdmcp fatal error session failed session 23 failed for display" Alternatively, when i tried to access the same Cygwin X Server from another windows XP PC which is on a different LAN... (3 Replies)
Discussion started by: HarishKumarM
3 Replies

7. Solaris

rpcinfo error

I get following error from one of my NFS server .. the tcp wrapper is turned off .. what else could be the problem ? rpcinfo -p 10.63.25.176 rpcinfo: can't contact portmapper: RPC: Authentication error; why = Failed (unspecified error) (0 Replies)
Discussion started by: fugitive
0 Replies

8. UNIX for Advanced & Expert Users

ssh error: Error reading response length from authentication socket

Hi - I am getting the error `Error reading response length from authentication socket' when I ssh from my cluster to another cluster, and then back to my cluster. It doesn't seem to affect anything, but it's just annoying that it always pops up and tends to confuse new users of the cluster. I... (1 Reply)
Discussion started by: cpp6f
1 Replies

9. Solaris

NFS write failed for server.....error 11 (RPC: Server can't decode arguments)

Hello! I have a Linux nfs server (called server100 below) with a export nfs. My problem is that the Solaris client (called client100 below) doesn't seems to like it. In the Solaris syslog I got following messages (and after a while the solaris client behave liked its hanged/to buzy). Also see... (3 Replies)
Discussion started by: sap4ever
3 Replies
Login or Register to Ask a Question