Erro de NFS do Kubernetes / PhotonOS: o rpc.statd não está em execução

1

No photonOS com o Kubernetes, recebo o seguinte erro:

MountVolume.SetUp failed for volume "" : mount failed: exit status 32 Mounting command: mount Mounting arguments: -t nfs HOSTNAME:/data/SHARE Output: /bin/bash: 0: Illegal option -p mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use '-o nolock' to keep locks local, or start statd. mount.nfs: an incorrect mount option was specified

    
por FrankerZ 08.12.2017 / 15:08

1 resposta

3

Verifique se o rpc.statd está sendo executado, executando os seguintes comandos em cada um dos seus nós :

tdnf -y install nfs-utils
systemctl enable rpcbind && systemctl start rpcbind
systemctl enable rpc-statd && systemctl start rpc-statd

Depois disso, o NFS deve estar habilitado em cada um dos seus nós.

    
por 08.12.2017 / 15:08

Tags