redhat 4

Ansible Controller 설치 (bundle) - Trial License

- Ansible의 Web GUI 컨트롤로인 AAP(Ansible Automation Platform) 설치 0. 사전 작업 - Redhat OS repository 구성 - 테스트 목적일 경우 selinux, firewalld 종료 - 일반 사용자 등록 (예: ansible) - 일반 사용자의 su 또는 sudo 등록 - 설치 > controller로의 ssh key 접속 # ssk-keygen # ssh-copy-id OR # ssh 후 sshkey 저장 (known_hosts) 1. RHAPP bundle 다운로드 및 설치 (1) Redhat에서 설치 프로그램/이미지 다운로드 및 설치 # ls bundle collections group_vars images inventory licenses REA..

IT/linux 2023.06.20

Kubernetes 설치 (Redhat8, Single Master)

1. Unique MAC 및 Product UUID 확인 - 각 서버들의 MAC과 UUID가 Unique해야 함 # ip link or # ifconfig -a # sudo cat /sys/class/dmi/id/product_uuid 2. Swap 해제 # sudo swapoff -a # vi /etc/fstab // swap 부분을 삭제하거나 swap > none으로 변경 #UUID=a43e5836-d773-4ce9-81b7-c20003b6f506 swap swap defaults 0 0 UUID=a43e5836-d773-4ce9-81b7-c20003b6f506 none swap defaults 0 0 - none으로 변경 시 아래 같은 경고 발생 [WARNING Swap]: swap is enabl..

RedHat에서 CentOS로 yum repository 변경하기

출처 : http://yoga82.tistory.com/90 레드햇 Enterprise 6 의 yum repository를 셋팅한다 /etc/yum.conf 에 추가한다 [base] name=CentOS-$releasever - Base baseurl=http://ftp.daum.net/centos/6/os/$basearch/ gpgcheck=1 gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-6 [updates] name=CentOS-$releasever - Updates baseurl=http://ftp.daum.net/centos/6/updates/$basearch gpgcheck=1 gpgkey=http://ftp.daum.net/centos/RPM-..

IT/linux 2015.08.20