버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
themeEmacs
USER@NFS_클라이언트:~$ rpcinfo -p <NFS_서버_IP>


# 정상인 경우
program vers proto   port  service
 100000    4   tcp    111  portmapper
 100003    4   tcp   2049  nfs
...


# 비정상인 경우
<NFS_서버_IP>: RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)

...

코드 블럭
themeEmacs
USER@NFS_클라이언트:~$ showmount -e <NFS_서버_IP>


# 정상인 경우
Export list for 210.xxx.243.yyy:
/nfs_dir localhost.localdomain,210.xxx.243.yyy


# 비정상인 경우
154 clnt_create: RPC: Port mapper failure - Unable to receive: errno 0 (Success)

...

코드 블럭
themeEmacs
root@NFS_클라이언트:~# mount -t nfs <NFS_서버_IP>:<서버_DIR_경로> <로컬_DIR_마운트_경로> -v


# 비정상인 경우
mount.nfs: timeout set for Thu Mar 21 18:24:09 2019
mount.nfs: trying text-based options 'nolock,vers=4,addr=210.xxx.243.yyy,clientaddr=210.xxx.243.yyy'
mount.nfs: mount(2): Stale file handle
...

...