一台Linux服务器上挂载另一台Linux服务器文件系统的方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
以下俩篇文章都讲了一台linux服务器挂载另外一台linux服务器文件系统的方法。
第一种:
目标:在服务器B上访问服务器A上指定的文件系统
编辑/etc/exports,加入:
/home 192.168.1.1(rw) #IP是服务器B的地址, 目录是要共享出的目录
然后启动nfs服务:
/etc/init.d/nfs start
到服务器B上就可以挂载了
mount 192.168.1.1:/hoome /mnt
进入服务器B的/mnt目录就可以看到服务器A上的/home目录的内容了
第二种:
被挂载机(文件服务器):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
转载的链接如下:
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)