I've got to deal with two servers. The staff at the business use server1 to manage the business. That is where their control software is. But some very important files get uploaded to this path on server2:
/data/ftp/
I need to mount server2 on server1 so that some of the software on server1 can reach files on server2 as if it was all one file system. Both servers are running a year old version of RedHat.
A person I know suggested I look into NFS. So I look up "NFS" on Google and it takes me here:
http://nfs.sourceforge.net/
Which says:
"Set up your /etc/exports file (man exports for details)."
I'm curious what this file looks like, so I go to server2 and look at this file. I'm surprised to see this entry:
/data/ftp server1(rw,no_root_squash,
sync)
So now I think, okay, it looks like someone on staff was already trying to do what I wanted to do. I check to see if NFS is already running:
ps aux
I don't see anything in the output that has "nfs" in it. What should I expect to see if this process is already running.
Also, how should I read this line:
/data/ftp server1(rw,no_root_squash,
sync)
Does that mean the path "/data/ftp" is allowed to be exported to server1?
http://nfs.sourceforge.net/nfs-howto/ar01s03.html
http://www.linuxforums.org/forum/redhat-fedora-linux-help/63393-how-configure-nfs.html
https://www.wideopen.com/docs/manuals/linux/RHL-8.0-Manual/custom-guide/s1-nfs-export.html