[RHEL7] RHEL7에 NFS 서버를 Repository 만들기
본문 바로가기
IT 이야기/Linux

[RHEL7] RHEL7에 NFS 서버를 Repository 만들기

by 찬찬이 아빠 2019. 11. 16.
반응형
  1. createrepo 실행

Repo 폴더 : /NFS/rhel-7-server-rpms

1
2
# cd /NFS/rhel-7-server-rpms
# createrepo .
cs

 

 

  2. local repo 파일 구성
1
2
3
4
5
6
# vim /etc/yum.repos.d/local.repo
[local]
name=local
baseurl=file:///NFS/rhel-7-server-rpms
enabled=1
gpgcheck=0
cs

 

 

  3. repo update
1
2
3
# yum clean all
# yum list
# yum update
cs

 

 

  4. 방화벽 및 selinux 해제
1
2
3
4
5
6
7
8
9
10
11
# systemctl stop firewalld
# systemctl disable firewalld
# vim /etc/sysconfig/selinux
 
# This file controls the state of SELinux on the system.
# SELINUX= can take on of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - SELinux is fully disabled.
 
SELINUX=disabled
cs

 

 

  5. NFS 설정
1
2
# vim /etc/exports
/NFS    할당서버IP(rw,sync)
cs

 

 

  6. NFS Server 시작
1
# systemctl start nfs-server
cs



  7. NFS 서버 마운트
1
2
3
4
5
<마운트 가능서버 보기>
# showmount -e NFS서버 IP주소
 
<NFS 마운트 하기
# mount -t nfs NFS서버 IP주소:/NFS /mnt
cs
반응형

댓글