Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
great, concise tutorial. However, CentOS’s IP tables can be, in my experience, very picky about NFS & need tuning (& that’s beyond the scope of this comment ;-).
Also, CentOS assigns a uid & guid of 500 whereas Ubuntu (& others) assigns it as 1000 so you have to make sure that the uid & guid is set to nobody as in anonuid=65534,anongid=65534 for nfs shares between different distros.
These are very basic pointers & should be treated as such but they may help if anybody encounters any problems, I hope…
Thanks for the comment! I really could not have said it better myself :)
One of my favorite article in here. Nfs working perfectly on the digitalocean, Thanks.
Great article… But what’s with the IP’s way out of the range? .789 & .555? Made me take a second look at it when I was looking at your /etc/exports. I hadn’t read what you assigned to the client server so I had to go back up & figure out what those numbers were referring too because it looked like an IP but .555 isn’t a real IP address.
@keithtshannon: These are not real IP addresses, they’re there just for the sake of making the article easier to follow :]
Hi Sir, I have one external HDD, i format it with ntfs filesystem by installing fuse-ntfs-3g*.rpm package and fuse module. I have mount it in Cento OS 5.5 by #mount -t ntfs-3g /mnt -o force. But the when i want to configure nfs for this mount_point say /mnt in Cento OS 5.5 like #vim /etc/exports /mnt *(rw,sync,no_root_squash) :wq But when I am trying to mount from remote machine. [in remote machine] #mount -t nfs :/mnt Then one error message has come like this…
#mount :/mnt failed reason given by server:permission denied.
Please give me one solutions… Faruk Assam, India
i have a question… i am working with 3 virtual servers, mi first question is: i can use NFS between virtual hard disks ? i am using CentOS 6.5 and i install NFS with the command : #yum install nfs-utils nfs-utils-lib but when i starting the service chkconfig nfs on (it is ok ). service rpcbind start (here gives me an error, “rpcbind: unrecognized service”). service nfs start ([root@server1 ~]# service nfs start Starting NFS services: [ OK ] Starting NFS quotas: Cannot register service: RPC: Unable to receive; errno = Connection refused rpc.rquotad: unable to register (RQUOTAPROG, RQUOTAVERS, udp). [FAILED] Starting NFS mountd: [FAILED] Starting NFS daemon: rpc.nfsd: writing fd to kernel failed: errno 111 (Connection refused) rpc.nfsd: unable to set any sockets for nfsd [FAILED] ).
i still can’t success run the service, someone could help me or guide mi with my problem ? escuse me for my english, i am still learning. thank you for take the time to read my question .
@jc.gonzalez.r92: Do you have rpcbind installed?
<pre> yum install rpcbind </pre>
@Andrew SB hi thanks for your answer, that’s what I’m trying but does not work with that command. I’ll be down the code to compile and install.