nfs搭建
Less than 1 minute
nfs搭建
nfs环境搭建
安装nfs
#服务器节点和客户端
sudo apt install nfs-kernel-server nfs-common
#客户端
sudo apt install nfs-common
创建共享目录
sudo mkdir -p /nfs
sudo chmod 777 /nfs
修改配置文件
sudo vim /etc/exports
#加入下面内容(*表示允许所有网段访问)
/nfs *(rw,sync,no_root_squash)
重启 NFS 服务并检查
sudo systemctl restart nfs-kernel-server
sudo systemctl enable nfs-kernel-server
sudo showmount -e localhost
客户端挂载
sudo mount 192.168.64.13:/nfs /nfs
卸载
umount /nfs
k8s使用nfs