본문 바로가기

인프라172

2022년 우분투 쿠버네티스(ubuntu Kubernetes) 설치 📗 설치 우분투 버전 $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.04 Codename: focal 📗 설치 명령어 순서(마스터/노드) sudo apt-get update 📗 필요한 패키지 설치(마스터/노드) sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release 📗 도커 GPG key 추가(마스터/노드) curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/.. 2022. 4. 6.
mysql ERROR 1418 (HY000) at line 12460 에러 처리방법 📗 발생증상 Mysql DB복원 후 아래와 같은 에러가 출력 됨 ERROR 1418 (HY000) at line 12460: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) 📗 처리방법 mysql 접속 후 아래명령어 수행 SET GLOBAL log_bin_trust_function_creators = 1; 2022. 3. 23.
[LINUX] 시간 동기화 명령어에 따른 port 통신 📗 명령어에 따라 클라이언트가 붙는 시간동기화 port가 다르다 클라이언트가 타임서버를 통해 시간동기화를 하려면 123과 37번 포트를 사용한다. 시간동기화 하고자 하는 포트를 선택하려면 보통 옵션을 통해서 포트를 정하는데 시간동기화 명령어는 명령어에 따라 사용하는 포트가 달랐다. 명령어 수행 후 tcpdump를 수행해보면 알수 있다.(ntp 123 / time 37) ntpdate : TCP 123번 포트 사용 rdate : TCP 37번 포트 사용 rdate -u time.bora.net 옵션 u는 udp 37로 시간동기화 2022. 3. 22.
teleport /lib64/libc.so.6: version `GLIBC_2.18' not found teleport 구축 후 노드를 추가시켜주려는데 라이브러리에 막혔다.. [root@localhost teleport]# teleport restart teleport: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by teleport) teleport: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by teleport) 아래 사이트에서 glibc-2.18.tar.gz 을 받아서 업로드했고 다음과 같이 수행하였다. https://ftp.gnu.org/gnu/glibc/ tar -zxvf glibc-2.17.tar.gz cd glibc-2.17 mkdir build cd build ../.. 2022. 3. 6.
Centos7 도커(docker) 설치, 컨테이너 이미지 다운 📗 구버전 삭제 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine 📗 설치 레파지토리 업데이트 후 도커를 받아야 최신버전으로 받을 수 있다. yum install -y yum-utils yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce docker-ce-cli containerd.io 📗 도커 버전 확인 docker version 📗 도커 .. 2022. 3. 6.
반응형