Enable Network File System for file sharing between servers.
NFS (Network File System) is a distributed file system protocol that allows you to share directories and files with other systems over a network. Common uses include:
If you would like to use NFS on your OpenVZ VPS, please request that we enable it via a support ticket.
Go to the Client Area
Navigate to Support → Open New Ticket
Select "Technical Support" department
Include your VPS ID or IP address
Request NFS to be enabled
Specify if you need NFS server, client, or both
Once our support team enables NFS for your container, you may need to reboot your VPS. After the reboot, you can install and configure NFS services.
# Debian/Ubuntu - NFS Server
apt-get install nfs-kernel-server
# Debian/Ubuntu - NFS Client
apt-get install nfs-common
# CentOS/RHEL
yum install nfs-utilsAlways secure your NFS exports with proper access controls. Limit access to specific IP addresses and use firewalls to restrict NFS ports (2049, 111) to trusted networks only.