네트워크 마운트가 안 될시
또는 아래와 같은 에러 메세지일 경우
mount: 192.168.200.150:/home/sikim failed, reason given by server: Permission denied
[sikim@console mnt]$ sudo vi /etc/exports
에 아래와 같이 mount허가를 설정해 주고
/mnt *(rw,sync)
[sikim@console mnt]$ sudo /sbin/service nfs restart
mount: RPC: Unable to receive; errno = Connection refused
마운트를 원하는 unix 컴퓨터 (아래의 경우, 192.168.117.193컴퓨터) 에서
/etc/rc.d/init.d/nfs start를 실행시킨다.
[snr ~]$ mount -t nfs 192.168.117.193:/home/sikim /mnt/nfs
mount: RPC: Unable to receive; errno = Connection refused
또는 아래와 같은 에러 메세지일 경우
mount: 192.168.200.150:/home/sikim failed, reason given by server: Permission denied
[sikim@console mnt]$ sudo vi /etc/exports
에 아래와 같이 mount허가를 설정해 주고
/home/sikim *(rw,sync)
/mnt *(rw,sync)
[sikim@console mnt]$ sudo /sbin/service nfs restart
nfs 서비스를 재시작한다.
Comments