NFS서버에 마운트한 NFS클라이언트 호스트정보 확인하는 showmount 실무다루기
작성자 정보
- 관리자 작성
- 작성일
컨텐츠 정보
- 6,113 조회
- 0 추천
- 목록
본문
NFS서버에 마운트한 NFS클라이언트 호스트정보 확인하는 showmount 실무다루기
NFS서버에서 사용하는 명령어로서 NFS서버에서의 마운트 정보를 확인하는 명령어입니다.
즉, NFS서버로 사용되고 있는 서버에서 NFS(Network File System)로 현재 마운트되어 있는 정보를 확인하는 명령어입니다.
이 명령어에 아무런 옵션없이 그냥 showmount라고 하시면 NFS서버로 마운트한 NFS클라이언트 호스트들의 리스트를 출력합니다.
명령어위치 : /usr/sbin/showmount
사용형식
showmount [-adehv][--all][--directories ][--exports] [호스트명]
다음 예는 NFS서버에서 showmount명령어를 사용하여 NFS서버로 마운트한 NFS클라이언트 호스트들을 확인한 예입니다.
[root@file init.d]# showmount Hosts on file.superuser.co.kr: bible.superuser.co.kr command.superuser.co.kr [root@file init.d]# |
아래의 결과에서 알 수 있는 것은 현재 NFS서버로 마운트한 NFS클라이언트는 bible.superuser.co.kr과 command.superuser.co.kr호스트임을 알 수 있습니다.
NFS서버에서 현재 마운트된 정보 확인하기
NFS서버에서 마운트 정보를 확인하기 위하여 showmount명령어를 사용한다고 말씀드렸습니다.
만약 NFS서버에서 NFS마운트의 상세한 정보를 확인하고자 하신다면 showmount명령어에 -a옵션을 사용하시기 바랍니다.
showmount명령어에 -a옵션을 사용하시면 NFS서버로 마운트한 NFS클라이언트들의 호스트명과 마운트 포인트(디렉토리)를 확인할 수 있습니다.
아래의
예는
현재 NFS서버에서 showmount명령어를 이용하여 마운트한 NFS마운트의 상세정보를 확인한
것입니다.
[root@file init.d]# showmount -a All mount points on file.superuser.co.kr: bible.superuser.co.kr:/home/bible bible.superuser.co.kr:/home/sspark command.superuser.co.kr:/home/bible command.superuser.co.kr:/home/jinious command.superuser.co.kr:/home/sspark [root@file init.d]# |
위의 결과를 보면 NFS서버에 마운트된 하나하나의 모든 마운트에 대한 NFS클라이언트들의 호스트명과 마운트포인트(디렉토리)들을 보여주고 있습니다.
NFS서버에서 특정 호스트에서 마운트한 마운트포인트 확인하기
NFS서버에서 showmount명령어에 -d옵션을 사용하여 특정 호스트를 지정하시면 지정한 호스트에서 NFS서버로 마운트한 마운트포인트(디렉토리)를 확인할 수 있습니다.
아래의 예는 file.superuser.co.kr이라는 NFS클라이언트에서 NFS서버로 마운트한 마운트포인트(디렉토리)를 확인한 것입니다.
[root@file root]# showmount -d file.superuser.co.kr Directories on file.superuser.co.kr: /home/bible /home/jinious /home/sspark [root@file root]# |
위의 결과로 file.superuser.co.kr호스트에서 NFS서버로 마운트하여 사용하고 있는 마운트포인트는 “/home/bible”, “/home/jinious”, “/home/sspark”이 있음을 알 수 있습니다.
NFS서버의 마운트포인트에 마운트할 수 있는 NFS클라이언트들 확인하기
showmount명령어에 -e옵션을 사용하시면 NFS서버의 /etc/exports파일에 설정되어 있는 마운트허용 호스트명과 마운트포인트를 확인할 수 있습니다.
즉, “showmount -e”는 NFS서버의 마운트포인트에 마운트 할 수 있는 NFS클라이언트들을 확인하기 위하여 사용하는 명령어입니다.
아래는 그 예입니다.
[root@file init.d]# showmount -e Export list for file.superuser.co.kr: /home/bible bible.superuser.co.kr,command.superuser.co.kr /home/sspark bible.superuser.co.kr,command.superuser.co.kr /home/jinious bible.superuser.co.kr,command.superuser.co.kr [root@file init.d]# |
관련자료
-
이전
-
다음