2021-03-07 分类: 网站建设
干活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、客户端进如共享目录看一下
名称栏目:简单搭建一个NFS服务器
标题来源:/news45/104745.html
成都网站建设公司_创新互联,为您提供网站内链、企业网站制作、域名注册、搜索引擎优化、网站设计、做网站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联
猜你还喜欢下面的内容