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

おすすめ記事