How to Manually Create an Nfsshare On a Volume After Cluster Start #505
XaverStiensmeier
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
/dev/vdc
.sudo lshw -class disk -short
. The mounted disk should now appear there.mkfs.ext4 /dev/vdc
./vol/spool2
. For this, I first create the directorysudo mkdir -p /vol/spool2
and then mount itsudo mount /dev/vdc /vol/spool2
. Since my volume uses ext4, I will find a lost+found directory at/vol/spool2
showing me that mounting has been successful.playbook/vars/common_configuration.yml
.becomes
By executing
bibiplay -l master -t nfs
, Ansible will re-setup nfs on the master. The new nfsshare is now setup.showmount -e localhost
confirms that both nfsshares - the old and the new - are now available:We are done. Workers that power up now, also have the second nfsshare.
Beta Was this translation helpful? Give feedback.
All reactions