centOS中NFS文件挂载错误

centOS中NFS文件挂载错误

我正在尝试在 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 服务。

答案1

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

相关内容