Centos7-部署NFS共享存储

安装NFS包

$ yum install nfs-utils

启动nfs

$ systemctl start nfs
$ systemctl enable nfs

准备共享目录

$ mkdir /data/nfs-1

把目录添加到共享中

# cat /etc/exports
/data/nfs-1 *(rw,sync,insecure,no_subtree_check,no_root_squash)

生效配置:

$ exportfs -r

检查已有的共享目录:

$ showmount -e localhost
Export list for localhost:
/data/nfs-1 *

现在你可以使用nfs共享目录 /data/nfs-1了。

 

你可能感兴趣的:(运维)