NFS安装 - Wed, Apr 24, 2019
NFS(Network File System)即网络文件系统,是FreeBSD支持的文件系统中的一种,它允许网络中的计算机之间通过TCP/IP网络共享资源。在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样。
1. 概述
NFS(Network File System)即网络文件系统,是FreeBSD支持的文件系统中的一种,它允许网络中的计算机之间通过TCP/IP网络共享资源。在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样。
k8s可以使用nfs进行持久化存储。
2. CentOS/RHEL安装NFS
- 安装NFS服务
服务器端:
yum install rpcbind nfs-utils -y
客户端:
yum install nfs-common -y
- 编辑NFS配置
vim /etc/exports
/home/storage *(rw,sync,no_root_squash,no_subtree_check)
- 启动NFS服务
systemctl start rpcbind nfs
- 确认NFS成功运行
rpcinfo -p | grep nfs
- NFS客户端查看服务
showmount -e 192.168.1.192
3. Ubuntu/Debian安装NFS
- 安装NFS服务
服务器端:
sudo apt install nfs-kernel-server rpcbind -y
客户端:
sudo apt install nfs-common
- 编辑NFS配置
vim /etc/exports
/home/storage *(rw,sync,no_root_squash,no_subtree_check)
- 重启NFS服务
systemctl restart nfs-kernel-server
- 启动NFS客户端
systemctl start rpcbind
- 确认NFS成功运行
rpcinfo -p | grep nfs
- NFS客户端查看服务
showmount -e 192.168.1.192