Linux

centOS中的NFS文件掛載錯誤

  • March 16, 2015

我正在嘗試在 centos 中使用 NFS 掛載伺服器文件系統。但我收到連接超時錯誤。

以下是我遵循的步驟。

在伺服器端:

[centos@ip-172-31-46-199 landingzone]$ sudo vi /etc/exports
/home/user/landingzone 172.31.37.128(rw,sync,no_root_squash)

sudo exportfs -av <br> exporting 172.31.37.128:/home/user/landingzone

在客戶端:

sudo mkdir /mnt/NFS
[centos@ip-172-31-37-128 ~]$ cd /mnt 
[centos@ip-172-31-37-128 mnt]$ ls 
nfs  NFS  tecmint <br>[centos@ip-172-31-37-128 mnt]$ sudo mount 172.31.46.199:/home/user/landingzone /mnt/NFS
mount.nfs: Connection timed out 

僅供參考,我啟動了 NFS 服務。

yum install nfs-utils nfs-utils-lib

chkconfig nfs on 

service rpcbind start

service nfs start

客戶端:

chkconfig netfs on

sudo mount -t nfs 172.31.46.199:/home/user/landingzone /mnt/NFS

引用自:https://unix.stackexchange.com/questions/189706