[ 작업 환경 ]
Centos 6.9
[ 문제 상황 ]
nfs를 통한 mount가 아래 에러 문구를 출력하며 진행되지 않습니다.
mount: wrong fs type, bad option, bad superblock on 172.6.0.1:/,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
NFS: server address does not match proto= option
[ 문제 원인 ]
nfs mount를 위해 필요한 패키지가 설치되어있지 않기 때문입니다.
[ 해결 방법 ]
nfs-utils 설치를 진행해주고 mount 진행시 정상적으로 완료할 수 있습니다.
yum install nfs-utils -y
[ 정상 mount 확인 ]
mount -t nfs -o vers=3,proto=tcp,nolock 172.6.0.2:/ /zone1
[ 권장 추가 작업 ]
모든 경우에 해당되는 것이 아니니 아래 내용은 필요한 경우에만 진행해주면 됩니다.
서버를 재부팅한 후 물리적인 디스크는 /etc/fstab 설정을 통해 mount가 진행되지만, nfs의 경우에는 해당 부분이 힘들기때문에 아래 작업으로 대신해줄 수 있습니다.
# vim /etc/rc.local
mount -t nfs -o vers=3,proto=tcp,nolock 172.6.0.2:/ /zone1
해당 mount 커맨드를 위 파일에 추가해주면 재부팅하면서 위 커맨드를 자동으로 입력해주기 때문에 재부팅 후에도 mount가 정상적으로 잘 되어있는 것을 확인할 수 있습니다.
'Infra > Linux' 카테고리의 다른 글
[Centos][usermod] 사용자 고유 UID 변경 커맨드 예시 (0) | 2020.03.12 |
---|---|
[Centos6][igb] NIC Driver 업데이트 방법 (0) | 2020.03.12 |
[Centos6][e1000e] NIC Driver 업데이트 방법 (0) | 2020.03.09 |
[Solved][Centos6] error: ‘dev’ undeclared, Each undeclared identifier is reported only once, for each function it appears in. (0) | 2020.03.09 |
[Solved][Centos6] make[1]: gcc: 명령을 찾지 못했음, make: *** [default] 오류 2 (0) | 2020.03.09 |