一、NFS 搭建
1. 安装 nfs-server
安装 nfs 及相关依赖。
yum install -y nfs-utils
echo "/data/nfs/data/ *(insecure,rw,sync,no_root_squash)" > /etc/exports
# 创建文件存储/共享目录
mkdir -p /data/nfs/data
# 启动 nfs 服务
systemctl enable rpcbind
systemctl enable nfs-server
systemctl start rpcbind
systemctl start nfs-server
# 使配置生效
exportfs -r
#检查配置是否生效
exportfs
输出内容:
/data/nfs/data <world>
2. 配置 nfs-client(非必选)
说明:建议至少在一个从节点上配置 nfs-client。nfs-client 会自动同步 server 的内容,可用于文件数据备份,提高集群可用性。
# 挂载 nfs-server
showmount -e 192.168.80.200
mkdir -p /data/nfs/data
mount -t nfs 192.168.80.200:/data/nfs/data /data/nfs/data