NFS共享设置
Posted zcq123456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NFS共享设置相关的知识,希望对你有一定的参考价值。
一、安装所需要的软件环境
[root@fengling ~]# yum -y install rpcbind nfs-utils
二、创建共享目录
mkdir /web
三、启动服务
[root@fengling ~]# systemctl start rpcbind
[root@fengling ~]# systemctl start nfs
[root@fengling ~]# yum -y install rpcbind nfs-utils
二、创建共享目录
mkdir /web
三、启动服务
[root@fengling ~]# systemctl start rpcbind
[root@fengling ~]# systemctl start nfs
四、将目录共享信息加入到配置文件
[root@fengling ~]# cat /etc/exports
/web 49.232.149.234(rw) #共享目录位置 哪个ip可以使用共享 拥有读写的权限
[root@fengling ~]# cat /etc/exports
/web 49.232.149.234(rw) #共享目录位置 哪个ip可以使用共享 拥有读写的权限
五、确保生效,重启服务
[root@fengling ~]# systemctl start rpcbind
[root@fengling ~]# systemctl start nfs
注:要先启动rpcbind服务 然后启动nfs
[root@fengling ~]# systemctl start rpcbind
[root@fengling ~]# systemctl start nfs
注:要先启动rpcbind服务 然后启动nfs
以上是关于NFS共享设置的主要内容,如果未能解决你的问题,请参考以下文章