Cloud-뜬구름잡기 5

Vagrant VM 이미지 백업 및 복원 방법

■ 복원 환경Ubuntu 20.04 LTS■ 백업 방법 정리You can package your working VM into a new vagrant box$ vagrant package --output ./new-box-name.boxand then backup this boxAfter you reinstall your Mackbook, you can then add this box to your local vagrant directory$ vagrant box add new-box-name ./new-box-name.boxAfter that you initiate the vagrantfile through$ vagrant init mynewboxYou will get back the same VM a..

Docker 기반에서 vsftpd 사용시 Passive Mode 사용하기

Docker 기반에서 vsftpd 사용시 Passive Mode 접속시 오류가 발생하였다. ETIMEOUT, 425 failed to establish 이 때는 설정파일을 추가하여 수정해야 한다. vsftpd.conf port_promiscuous=YES #패시브모드로 연결될 ip(포트제외 서버ip만 적어주세요) pasv_address=192.168.XX.XX * 참고 소스 https://github.com/overpassion/docker/blob/main/fsftp/vsftpd.conf GitHub - overpassion/docker Contribute to overpassion/docker development by creating an account on GitHub. github.com * v..

Kubernetes(k8s)에서 kubectl 사용하여 mysql port-forward 하기

구성은 Vagrant Box 3개로 Kubernetes 3Node로 구성되어 있다. 현재 Vagrant를 사용하고 있어 다음 설정을 추가한다. VM을 사용하지 않는경우 필요하지 않을수 있다. config.vm.network "forwarded_port", guest: 3306, host: 13306, protocol: "tcp" Kubernetes 환경에서 다음 명령으로 서비스를 조회한다. kubectl get svc 이경우 mysql 서비스가 10.233.56.66:3306을 사용하는것을 알수 있다. Kubernetes Node로 접속한다. vagrant ssh control-plane1 kubectl port-forward 명령으로 포트포워딩을 실행한다. kubectl port-forward --ad..

라즈베리파이4에 Kubernetes 설치

@ 라즈베리파이 OS에 Kubernetes 설치 - 버전 - OS : Raspberry Pi OS Lite 64bit - Raspberry : Raspberry4 8G ram - Kubernetes : 1.23 , 1,22 , 1,21 3가지 버전 설치 시도 @ 라즈베리파이 OS에 Kubernetes 설치 - 결과 설치 실패 - 다음과 같은 오류가 발생한다. * 누군가 동일한 조건에서 삽질하기 않기를 바라는 마음으로 공유합니다. @ Ubuntu 20.04 LTS 라즈베리파이 버전 설치 https://ubuntu.com/download/raspberry-pi Install Ubuntu on a Raspberry Pi | Ubuntu Ubuntu is an open-source operating system..