Eu tenho o mesmo problema no Debian 8, também conhecido como Jessie, e, embora os sistemas sejam diferentes, essa solução pode ajudar, caso você não se importe em alterar os arquivos de configuração.
Criar arquivo /etc/tmpfiles.d/rpcbind.conf
:
#Type Path Mode UID GID Age Argument
d /run/rpcbind 0755 root root - -
f /run/rpcbind/rpcbind.xdr 0600 root root - -
f /run/rpcbind/portmap.xdr 0600 root root - -
Crie /etc/systemd/system/rpcbind.service
:
[Unit]
Description=RPC bind portmap service
After=systemd-tmpfiles-setup.service
Wants=remote-fs-pre.target
Before=remote-fs-pre.target
DefaultDependencies=no
[Service]
ExecStart=/sbin/rpcbind -f -w
KillMode=process
Restart=on-failure
[Install]
WantedBy=sysinit.target
Alias=portmap
e habilitado acima da unidade:
# systemctl enable rpcbind.service
Crie /etc/systemd/system/nfs-common.service
:
[Unit]
Description=NFS Common daemons
Wants=remote-fs-pre.target
DefaultDependencies=no
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/etc/init.d/nfs-common start
ExecStop=/etc/init.d/nfs-common stop
[Install]
WantedBy=sysinit.target
Ativar com:
# systemctl enable nfs-common
Presumivelmente, isso também deve servir para o CentOS.
Parece também que existe uma versão mais recente do rpcbind-0.2.3, que tem nativa suporte ao systemd , mas não tentei ...