NFS 共享存储服务
Posted 123456likun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NFS 共享存储服务相关的知识,希望对你有一定的参考价值。
一,安装nfs-utils rpcbind 软件包 后启动
[root@localhost ~]# yum -y install nfs-utils rpcbind
[root@localhost ~]# systemctl enable rpcbind
[root@localhost ~]# systemctl enable nfs
二,设置共享目录
[root@localhost ~]# mkdir -p /opt/wwwroot
[root@localhost ~]# vim /etc/exports
/opt/wwwroot 192.168.200.0/24(rw,sync,no_root_squash)
三,启动NFS 服务程序
[root@localhost ~]# systemctl start rpcbind
[root@localhost ~]# systemctl start nfs
四,查看本机NFS 共享目录
showmount -e
以上是关于NFS 共享存储服务的主要内容,如果未能解决你的问题,请参考以下文章