建立服务挂载(NFS)
服务器端配置
- 查看是否安装nfs
[root@bogon ~]# rpm -qa | grep nfs [root@bogon ~]# rpm -qa | grep rpcbind
- 安装nfs
[root@bogon ~]# yum -y install nfs-utils rpcbind
- 创建需要共享的目录
[root@bogon test]# /data/test
- 编辑nfs配置
vi /etc/exports
- 配置生效
exportfs -r
- 在exports添加:
/data/test *(insecure,rw)
- 查看nfs共享的目录
exportfs -av
- 启动rpcbind、nfs服务
[root@bogon lys]# service rpcbind start [root@bogon lys]# service nfs start
客户端配置
- 配置host文件
192.168.2.10 maple
vi /etc/host
- 挂载2.10服务器的目录
mount -t nfs maple:/data/test /net/maple
- 创建
/data/test
目录 - 建立目录的软链接
ln -s /net/maple/ /data/test/
- 卸载已挂在的NFS
umount /net/maple/
- 正确的删除方式(删除软链接,但不删除实际数据)
rm -rf ./test_chk_ln
- 错误的删除方式
rm -rf ./test_chk_ln/ (这样就会把原来test_chk下的内容删除)