Socket Statisticsの確認
1 | [root@localhost html]# ss -ntul |
安装nfs-utils
1 | yum install nfs-utils |
设置防火墙
1 | firewall-cmd --zone=public --permanent --add-service={rpc-bind,mountd,nfs} |
设置开机自启
1 | systemctl enable rpcbind |
设置配置文件
1 | [root@localhost nfs]# vi /etc/exports |
配置文件的参数
参数 | 作用 |
---|---|
ro | 只读 |
rw | 读写 |
root_squash | 当NFS客户端以root管理员访问时,映射为NFS服务器的匿名用户 |
no_root_squash | 当NFS客户端以root管理员访问时,映射为NFS服务器的root管理员 |
all_squash | 无论NFS客户端使用什么账户访问,均映射为NFS服务器的匿名用户 |
sync | 同时将数据写入到内存与硬盘中,保证不丢失数据 |
async | 优先将数据写入到内存,然后再写入硬盘;这样效率更高,但可能会丢失数据 |
anonuid | 指定uid的值,此uid必须存在于/etc/passwd中 |
anongid | 指定gid的值 |
启动nfs服务
1 | systemctl restart rpcbind nfs-server.service |
确认
1 | [root@centos8 mnt]# ss -ntul |