安裝和配置NFS(Network File System)的步驟如下:
sudo yum install nfs-utils
/etc/exports
,添加需要共享的目錄。sudo vi /etc/exports
在文件中添加類似下面的條目:
/path/to/share <IP1>(rw,sync,no_root_squash) <IP2>(rw,sync,no_root_squash)
其中/path/to/share
是需要共享的目錄路徑,<IP1>
和<IP2>
是允許訪問該共享目錄的客戶端IP地址。rw
表示可讀寫訪問權限,sync
表示同步寫入,no_root_squash
表示允許以root用戶權限訪問。
sudo systemctl start nfs-server
sudo systemctl enable nfs-server
/etc/fstab
。sudo yum install nfs-utils
sudo vi /etc/fstab
在文件中添加類似下面的條目:
<IP_of_NFS_server>:/path/to/share /path/to/mountpoint nfs defaults 0 0
其中<IP_of_NFS_server>
是NFS服務器的IP地址,/path/to/share
是共享目錄路徑,/path/to/mountpoint
是本地掛載點路徑。
sudo mount -a
以上就是在CentOS 7上安裝和配置NFS的步驟。