NFS是一种基于TCP/IP 传输的网络文件系统协议。通过使用NFS协议,客户机可以像访问本地目录一样访问远程服务器中的共享资源
搭建nfs需要安装两个包 nfs-utils rpcbind
需要开放两个端口 2049 111
适合局域网环境
实验教程
系统:centos7.6两台
服务端
安装软件包yum install -y nfs-utils rpccbind
配置文件 vim /etc/exports
打开文件写入内容
/opt 客户端服务器ip(rw,sync,no_root_squash)
opt是服务端共享的目录 ip是允许ip的连接 括号里面是。允许读写 同步写入 客户端以root登录时赋予其他本地root权限
启动 systemctl start rpcbind nfs-tils
设置开机自启 systemctl enable rpcbind nfs-tils
客户端:
安装软件包yum install -y nfs-utils rpccbind
启动 systemctl start rpcbind nfs-tils
设置开机自启 systemctl enable rpcbind nfs-tils
将目录挂载到本地 mount -t nfs 服务端ip:/opt /mnt
评论