You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Nautilus production support team was trying to fix issues with their storage server. The storage server has a shared directory /webdata, which is mounted on all app servers at location /var/www/html so that whatever data they store on storage server under /webdata can be shared among all app servers. Somehow NFS server is broken and having some issues. Identify the root cause of the issue and fix it to make sure sharing works fine among all app servers and storage server.
sudo systemctl enable nfs-server
sudo chkconfig nfs-server on && sudo systemctl start nfs-server
sudo systemctl status nfs-server && sudo systemctl enable rpcbind
sudo chkconfig rpcbind on && sudo systemctl start rpcbind
sudo systemctl status rpcbind
On storage server
sudo vi /etc/exports
Delete the line by press dd and then press i and add below line
Change /web according to Task
/web 172.16.238.10(rw,sync,no_root_squash) #change webapp according to task
/web 172.16.238.11(rw,sync,no_root_squash) #change webapp according to task
/web 172.16.238.12(rw,sync,no_root_squash) #change webapp according to task
thanks