2
I need rpcbind service to be active after boot, so I installed it with yum, then started it by:
systemctl start rpcbind
it works. However after reboot it did not start. So I checked it with:
systemctl is-enabled rpcbind
and it showed: static which mean that some other service need it to boot, the service is rpcbind.socket, so I checked it and the rpcbind.socked showed that it is enabled (systemctl is-enabled rpcbind.socket returned enabled) but it does not work how it should
after boot when i execute:
systemctl status rpcbind
it show: failed (dead)
I have been searching for a while now this but without any luck, if anybody know a solution to this or faced this problem in the past then please help.
I'm using centos 7.1
if you need more information i can get it when i get to work tomorow
What version of
rpcbind
are you using? – nKn – 2015-09-23T21:50:59.677Does disabling selinux temporality do anything different? – Jacob Evans – 2015-09-24T00:40:57.150
You can garner some info on why it is failing by running
journalctl -xn
. If that is not enlightening (in my experience, hardly ever) you may: 1. search for error messages in /var/log:grep -nrI rpcbind
. This will produce much output, you will have to wade thru it. 2. Start rcpbind by hand,rpcbind -dw
, and study its output. – MariusMatutiae – 2015-09-24T05:49:59.363Although I had a same problem but got an another error message, I solved here; http://unix.stackexchange.com/a/256232/152138 Hope this helps you.
– kujiy – 2016-01-19T04:57:37.040