본문 바로가기
Development Solutions/Linux

[Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법)

by studio ODOC 2022. 8. 30.
반응형

[Linux]

How to fix NFS mount Permission denied

(NFS mount Permission denied 해결 방법)

 

 

 

1. vi /etc/exports

마운트할 디렉토리 경로, 설정이 올바르게 되어있는지 확인

ex) /home/nfs *(rw, root_squash)

(root_squash: 클라이언트도 서버의 마운트 디렉토리 내에서 root 권한 가짐)

 

(Check if the directory path to mount and settings are correct

ex) /home/nfs *(rw, root_squash)

(root_squash: the client also has root privileges within the server's mount directory))

 

 

2. /etc/hosts.allow, /etc/hosts.deny

네트워크 접근 퍼미션 확인

ex) ALL:ALL

 

(Check network access permission

ex) ALL:ALL)

 

 

3. iptables -F

방화벽 끄기

(turn off firewall)

반응형