How to mount a directory on one server to another?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to mount a directory on one server to another?
# 1  
Old 05-21-2009
Question How to mount a directory on one server to another?

Question 1) I have directory /home/userme/reports on server 1 and I want to mount that directory anywhere on server 2. How do I make this happen?

Question 2) Server 2 is behind a firewall and server 1 is public...by mounting server 1 on server 2 do I compromise the security of server 2?
# 2  
Old 05-21-2009
Answer 1: Use your choice of NFS, SMB (Samba) or WebDAV
Answer 2: Yes and No. If someone breaks into your public server, he could read those files, or maybe even write it (be sure to export that path as read-only). If you're using a system user for mounting, he might get that users uid/password combination. However, if you set it up right (read-only access, unprivileged user, unprivileged information in the files, no login from outside to the inside) it should be rather safe.
# 3  
Old 05-21-2009
I was hoping for an answer for dummies Smilie What do I need to do to export the /home/userme/reports dir on server 1?

From what you said I am guessing the steps here...

1)Create a user with no privleges on server 1 (where dir will be mounted)
This will be the owner of the mounted volume

2)Export dir from server 2 via cmd >export dir

3)Mount dir via cmd >mount -t nfs ipaddress.server2:dir

4)Change owner of mounted volume to newly created user from step 1

Is this right?
# 4  
Old 05-22-2009
If you're going with NFS you'll have to do
  1. Install an NFS server for your OS
  2. Tell the NFS server which directories to export by entering them into /etc/exports. Example:
    Code:
    /home/userme/reports 10.0.0.2(ro,all_squash,anonuid=<uid>,anongid=<gid>)

    This tells NFS to export /home/userme/reports to the server with the IP 10.0.0.2 as read-only, and all users are mapped to the anonymous user, using a certain UID and GID.
  3. Open/redirect the port 2049 (and maybe 111 if you're using portmap) on the firewall for the internal server for the public ONLY
  4. On the public server run mount -t nfs internal_server:/home/userme/reports /mnt/reports
This should get you set up.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Can we have 2 mount point under the same name but at different directory?

guys i would like to know can we have 2 mount point which is same name but on different directory? (3 Replies)
Discussion started by: leecopper
3 Replies

2. Linux

Make directory used as mount point read-only

For my backup , I mount and external hard disk to /mnt/mybackup and then I do an rsync to /mnt/mybackup If for some reason the rsync fails, I want to prevent it from writing data on the server hard disk itself since the external hard disk will no longer be mounted on it. I want /mnt/mybackup... (8 Replies)
Discussion started by: coolatt
8 Replies

3. UNIX for Advanced & Expert Users

Find Mount Directory

HI , I am trying to find directories/folder for the mount path . Ex mount path : /real/path/oracle/ora/ output is drwxr-xr-x 2 oracle dba 37888 Feb 10 08:36 realdum drwxr-xr-x 2 oracle dba 16384 Feb 10 09:08 delete Is there any unix command to get... (3 Replies)
Discussion started by: Perlbaby
3 Replies

4. Red Hat

Can not change timestamp on directory inside cifs mount

Greetings, I have an rsync server that is unable to change the timestamp on any directories inside of cifs mounts. The same thing happens on all of my red hat machines. These machines are all patched, touch -t works on directories inside any other filesystem including NFS mounts. This is... (0 Replies)
Discussion started by: Create
0 Replies

5. UNIX for Dummies Questions & Answers

Mount a file or directory

Hi All, I am very new to Linux. I have just started preparation for RHCE. Can anybody pls tell me the meaning of mount a file or directory. When we mount particular file at that time what exactly we do with the file. (2 Replies)
Discussion started by: kunalpatil09
2 Replies

6. UNIX for Dummies Questions & Answers

mount directory on Linux problem

folks; I have 3 similar Linux SUSE 10 servers A, B & C I log as root and when i'm on B server & try to mount a directory on A server it works fine, but when i try to mount the same directory when i'm on C it doesn't and i get this error: Server C# mount 172.32.5.2:/var/local/export/... (4 Replies)
Discussion started by: Katkota
4 Replies

7. AIX

mount directory as cdrom

Hi guy's, my first post here on the forum :p I did a quick search here, but did not find a direct hit, so decided to post my question. I'm taking my first steps into AIX, and right now I'm trying to install some software that I've downloaded as a zip file, and have this extracted into a mounted... (1 Reply)
Discussion started by: psyduck
1 Replies

8. Solaris

How to mount a directory on another server?

Hi, I have two solaris 10 servers, and I want a directory (test) in server A be accessible in server B. I searched the web and the concept should be as follows: Server A: # share -F nfs /home/nms/test Server B: # mount -F nfs serverA:/home/nms/test /home/nms/test But when I... (1 Reply)
Discussion started by: racbern
1 Replies

9. UNIX for Dummies Questions & Answers

NFS mount home directory

Hello All, I have a question that I think I have the answer to but I'm not sure. All the information I get kind of dance around it. Well, my question is if you have NFS running, automount running, with auto_master and auto_home on a server. If a user logs in form cleint machine that has... (3 Replies)
Discussion started by: larry
3 Replies
Login or Register to Ask a Question