Linux挂载另一台机器的目录,利用mount命令将另外一个linux服务器上的目录挂在到本机...



被挂载机(文件服务器):192.168.1.100

挂载到机(实际上传文件机):192.168.1.200

主要是利用NFS服务来完成:

你先要在192.168.1.100上开启NFS服务并编辑/etc/exports文件:

chkconfig --level 35 nfs on ;开启NFS启机运行

service nfs start ;手动启动服务

vi /etc/exports,

加入:

/fileserver 192.168.1.200     (rw,sync,no_root_squash)  ;编辑需要共享的目录和允许访问的服务器及权限。

还如:

/opt/apache-tomcat-6.0.37/webapps/fileShare/file        *                  (rw,sync,no_root_squash)

/mnt                                                                               *                  (ro,sync)

然后到192.168.1.200

mkdir /fileserver

chmod 777 -R /fileserver

mount 192.168.1.100: /fileserver  /fileserver

你可能感兴趣的:(Linux挂载另一台机器的目录)