Centos 7 NFS 配置、挂载、取消挂载实验

1、网络结构:
Centos 7 NFS 配置、挂载、取消挂载实验_第1张图片
2、配置
(1)在服务器和客户机同时安装nfs-utils

yum install nfs-utils -y

(2)启动nfs服务、设置为开机自启动、查看服务状态

systemctl start nfs; 
systemctl enable nfs;
 systemctl status nfs

(3)在/root/T1 建NFS目录

[root@nfs-server T1]# mkdir nfs

//目录位置可以根据自己需要设置的
我们pwd看nfs的绝对路径:

/root/T1/nfs

(4)修改nfs配置文件

vim /etc/exports

在配置文件按以下格式填写
格式:绝对路径 客户端网段(权限参数)

/root/T1/nfs 1.1.1.0/24(rw,root_squash) *(ro)

(此处我还是没太弄懂权限参数,不过现在应该是)所有人都有只读权限、root有读写权限

保存退出

查看权限设置结果:

exportfs

(5)重启服务

systemctl restart rpcbind;
systemctl restart nfs

(6)防火墙允许
firewall-cmd --add-service=nfs --permanent
firewall-cmd --reload

(7)在客户端:
启动服务,查看能否连上

systemctl start nfs
showmount -e 1.1.1.2

(8)挂载
挂载命令 -t 文件类型(nfs)(IP:/NFS路径)(本机挂载点)

mount -t nfs 1.1.1.2:/root/T1/nfs /mnt

查看是否成功:

df

(9)取消挂载

umount /mnt
df

取消了

结束

你可能感兴趣的:(Linux基本操作,linux,centos)