centos8配置nfs教程本机系统mac

Posted guokefa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos8配置nfs教程本机系统mac相关的知识,希望对你有一定的参考价值。

1 在服务器端 安装nfs 以及 rpcbind

yum install -y nfs-utils  rpcbind

mkdir  -p /data/nfs

chown -R nfsnobody:nfsnobody /data/nfs 

2 配置权限

 vim /etc/exports

文件写入

#nfs dir /data/nfs

/data/nfs  192.168.1.0/24(rw) #客户端ip(rw,sync,insecure) #不加insecure会connect refuse

 

 
 
 
nfs 服务命令配置参数

ro 只读
rw 读写
root_squash 当NFS客户端以root管理员访问时,映射为NFS服务器的匿名用户
no_root_squash 当NFS客户端以root管理员访问时,映射为NFS服务器的root管理员
all_squash 无论NFS客户端使用什么账户访问,均映射为NFS服务器的匿名用户
sync 同时将数据写入到内存与硬盘中,保证不丢失数据
async 优先将数据保存到内存,然后再写入硬盘;这样效率更高,但可能会丢失数据

 

 

 

 

 

 

 

 

 

 

 

 

 

 

启动配置

service rpcbind start #启动服务
systemctl enable rpcbind #设置开机启动

  查询nfs挂载,showmount  -e  192.168.1.24 后面可以接ip来查看

 3 客户端连接

mount -t nfs 192.168.1.24:/data/nfs  /nfs    #挂载nfs server的/data/nfs 到/nfs

以上是关于centos8配置nfs教程本机系统mac的主要内容,如果未能解决你的问题,请参考以下文章

mac M1pro芯片安装vmware虚拟机及centos8(界面化+黑窗口)详细教程

mac系统Docker安装Redis教程

中科方德系统(NFS)适配产品(容器类)感触以及遇到的问题

Centos8.1系统安装教程

CentOS 8.x系统安装配置图解教程

RHEL5.8配置NFS服务