Server:
1. Install nfs-utils
# yum -y install nfs-utils
2. Setting config file
/etc/exports
[Directory] [Client_IP](rw,sync,no_root_squash,no_subtree_check)
/home 10.110.0.10(rw,sync,no_root_squash,no_subtree_check)
3. Apply the settings
# exportfs -a
Client:
1. Install nfs-utils
# yum -y install nfs-utils
2. Create a directory to mount
# mkdir -p /mnt/nfs/home
3. Mount
# mount [Server_IP]:[Server_Drectory] [Directory]
# mount 192.168.10.243:/home /mnt/nfs/home
4. Confirm
# df -h
Refer:
'IT > System' 카테고리의 다른 글
[httpd] mod_dnssd.so into server: libavahi-common.so.3 (0) | 2020.10.12 |
---|---|
[Windows] *.DLL의 .NET Framework 버전 확인 (0) | 2020.09.11 |
[AWS] CentOS root 계정 로그인 (0) | 2020.08.26 |
[MSSQL] DB 백업 및 백업본 관리 스크립트 (0) | 2020.08.21 |
[MariaDB] DB 이관하기 | mariadb 백업, 복원 (0) | 2020.08.20 |