어제와 똑같이 살면서 다른 미래를 기대하지 말자

[CentOS7] NFS-SERVER 본문

IT관심분야/Linux

[CentOS7] NFS-SERVER

플랜액터 2018. 2. 26. 19:04

1. SERVER 설정

1) nfs 설치

# yum install nfs-utils


2) 공유 디렉토리 설정

# mkdir /data/share

# chmod 777 /data/share

# chown nfsnobody:nfsnobody /data/share


3) 마운트 nfs 설정 (/etc/exports)

# client root -> server root, client user -> sever user로 매핑됨 (보안에 좋지 않음)

/data/share/kidscbn 192.168.10.2(rw.sync,no_root_squash,no_all_squash)

# client 계정이 어떤 것이든 apache(48)로 매핑됨

/data/share/kidscbn 192.168.10.2(rw,sync,anonuid=48,anongid=48)

※ 옵션

ro : 읽기모드

rw : 읽기,쓰기 모드

sync : 동기 (NFS 서버는 이전 요청에 의한 변경 사항이 디스크에 기록 된 후에만 ​​요청에 응답)

async : 비동기 (서버가 대기 할 필요가 없음)

no_root_squash : root_squash off

root_squash : 원격으로 연결된 root 사용자가 root 권한을 가질 수 없도록하고 nfsnobody 사용자의 사용자 ID를 할당합니다.

all_squash : 루트를 포함하여 모든 원격 사용자를 nfsnobody 사용자의 사용자 ID를 할당

no_all_squash : all_squash off

anonuid=xx, anongid=xx : 특정 호스트의 원격 사용자가 사용할 사용자 및 그룹 ID를 지정

wdelay : 다른 쓰기 요청이 임박한 것으로 의심되면 NFS 서버가 디스크에 쓰기를 지연시킵니다. 이렇게하면 별도의 쓰기 명령으로 디스크에 액세스해야하는 횟수를 줄여 쓰기 오버 헤드를 줄여 성능을 향상시킬 수 있습니다.

no_wdelay : wdelay 비활성화, no_wdelay 옵션은 기본 동기화 옵션이 sync로 활성화 된 경우만 사용가능


4) nfs-server 실행

# systemctl enable rpcbind

# systemctl enable nfs-server

# systemctl enable nfs-lock

# systemctl enable nfs-idmap

# systemctl start rpcbind

# systemctl start nfs-server

# systemctl start nfs-lock

# systemctl start nfs-idmap


2. CLIENT 설정

1) nfs 설치

# yum install nfs-utils

2) 마운트 디렉토리 설정

# mkdir -p /home/xxx/public_html/data

3) 마운트

# mount -t nfs 192.168.10.3:/data/share /home/xxx/public_html/data

4) fstab 등록

192.168.10.3:/data/share/kidscbn        /home/kidscbn/public_html/data  nfs     defaults        0 0





Comments