반응형 NFS2 CentOS NFS Server 설치 및 설정 Kubernetes PV로 사용하기 위해서 , NFS구성을 합니다!! NFS 서버 패키지 설치 # yum install nfs-utils rpc-bind (nfs-utils 만 설치하려고 해도, rpc-bind가 종속성이 있어서 같이 설치됩니다.) [NFS 서버 실행] # systemctl start nfs-server [NFS 설정] 공유할 디렉토리 생성 # mkdir /shared 공유 디렉토리 권한 설정 # chmod 756 /shared NFS Server exports 옵션 설정 #vi /etc/exports 모두에게 읽기쓰기 권한 부여 /shared *(rw, no_root_squash) 특정 IP대역 읽기쓰기 권한 부여 /shared 10.1.1.* (rw, no_root_squash) NF.. 2022. 5. 17. NFS wrong fs type 오류(CentOS) [오류] Mount: wrong fs type, bad option, bad superblock on :, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program) In some cases useful info is found in syslog - try dmesg | tail or so. 원인 : NFS디렉토리를 마운트 하려면, 아래의 NFS 패키지가 필요합니다. CentOS : nfs-utils Ubuntu : nfs-common 조치방안 CentOS # yum install nfs-utils Ubuntu # a.. 2022. 5. 3. 이전 1 다음 반응형