반응형
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 |
반응형
'IT 이야기 > Linux' 카테고리의 다른 글
[RHEL 공통] 신규 계정 생성 시 사용자 홈 디렉터리를 자신이 원하는 위치에 만들기 (0) | 2019.11.18 |
---|---|
[RHEL 공통] OS 및 Web 보안 점검 중 보안 패치에서 취약으로 결과가 나왔을 때 (0) | 2019.11.18 |
[RHEL 공통] 윈도우에서 zip으로 압축한 파일을 리눅스의 unzip으로 해제하면 한글이 깨졌을 때 (0) | 2019.11.18 |
[RHEL 공통] 접속된 사용자들을 강제적으로 종료 (0) | 2019.11.18 |
[RHEL 공통] 계정 로그인 시 프로세스가 Full 이 되었을 때 (0) | 2019.11.15 |
댓글