Mount shared disk
note
Run the following commands as root or a user with the superadmin privileges.
To mount a shared disk, follow the steps below:
Create a mount point:
mkdir -p /opt/workfusion/sharedAdd a record to
/etc/fstabto allow the system to mount the partition automatically after the server restart:cat << EOF >> /etc/fstab
<nas_server_hostname>:/path/to/shared/folder /opt/workfusion/shared nfs rw,bg,retrans=5000,rsize=8192,vers=3,wsize=8192,timeo=14,intr 0 0
EOFRemember to specify your
<nas_server_hostname>and</path/to/shared/folder>.Mount the shared directory:
mount /opt/workfusion/shared