干活0.0
NFS
1、服务端安装NFS
[root@localhost ~]#yum install nfs-utils -y
2、创建共享文件夹,并给文件夹最高权限简单粗暴。
[root@localhost ~]#mkdir /nfs [root@localhost ~]#chmod 777 /nfs
3、修改nfs配置文件/etc/exports
[root@localhost ~]#vi /etc/exports 添加 /nfs *(rw)
其中/nfs表示共享目录
*表示任意IP地址访问
rw只可读写
4、启动守护进程和nfs服务并开机自启动
[root@localhost ~]#systemctl restart rpcbind.service [root@localhost ~]#systemctl restart nfs.service [root@localhost ~]#chkconfig nfs on
5、检测文件输出目录
[root@localhost ~]#exportfs -v /nfs
6、部署客户端nfs服务
[root@localhost ~]# yum install nfs-utils -y
7、测试输出目录的状态
[root@localhost ~]# showmount -e "服务端IP" Export list for 192.168.X.X: /nfs *(rw)
8、创建挂载文件夹
[root@localhost ~]# mkdir /nfs
9、配置自动挂载
[root@localhost ~]# vi /etc/fstab 服务端IP:/nfs /nfs nfs defaults 0 0
10、最后用df -h 检测挂载
[root@localhost ~]# df -h
如图
11、服务端创建文件测试一下
root@localhost nfs]# echo "hello world">>123.txt
12、客户端进如共享目录看一下
已经成功了