일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Network
- AIR
- fstab
- MOUNT
- php5
- Fedora
- JavaScript
- Subversion
- exception
- Linux
- GlusterFS
- Laravel
- VMware
- tw_cli
- Trac
- ubuntu
- httpd.conf
- CentOS
- 라라벨
- APM
- ftp
- 명령어
- xampp
- BIND
- MySQL
- VirtualBox
- nateon
- vsftpd
- php
- redmine
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
[CentOS7] NFS-SERVER 본문
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
'IT관심분야 > Linux' 카테고리의 다른 글
[CentOS7] LSI MegaRaid MegaCli 설치 및 스토리지 디스크 상태 확인 (0) | 2018.03.02 |
---|---|
[CentOS7] 시스템 시간 타임존 변경(timedatectl) (0) | 2018.02.28 |
[CentOS7] MariaDB 설치 10.2.x (0) | 2018.02.14 |
[CentOS7] rc.local 부팅 시 실행 (0) | 2018.02.14 |
[CentOS] yum repo 활성/비활성 (yum-config-manager) (0) | 2018.02.02 |