분류 전체보기366 가상 머신을 site recovery를 사용하여 백업하기 portal의 All services 클릭 create 클릭 기존의 리소스 그룹 사용 혹은 새로 생성 Geography간의 가용성을 구현하기 위해 site recovery를 하려는 리소스와 다른 위치에 있는 region을 선택 redundancy는 Geo로 restore는 enable로 설정 생성 site recovery를 적용할 리소스 클릭 Backup + disaster recovery blade에서 Disaster recovery 클릭 가상 머신이 실행중이 아니라면 위와 같은 문구가 노출됨 가상 머신을 실행하고 정보를 입력하고 Site Recovery를 설정 했으나 위와 같이 정상적으로 복제가 되지 않음 에러가 발생한 것으로 확인 linux의 특정 커널을 지원하지 않아서 Site.. 2025. 11. 28. kind yaml 파일 예시 -예시 -> # kind-config.yaml: kind: ClusterapiVersion: kind.x-k8s.io/v1alpha4nodes: - role: control-plane - role: worker - role: worker-> 명령어 : kind create cluster --config kind-config.yaml (kind 라는 이름의 클러스터가 존재한다면 삭제하고 위의 명령어 입력) 2025. 11. 28. ubuntu에 kind를 설치하기 -설치 순서 -> 다운로드 및 설치 : curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64chmod +x ./kindsudo mv ./kind /usr/local/bin/kind-> 쿠버네티스 클러스터 생성 : kind create cluster-> 멀티 노드 클러스터 생성 (워커 노드 여러 개): # kind-config.yamlkind: ClusterapiVersion: kind.x-k8s.io/v1alpha4nodes: - role: control-plane - role: worker - role: worker-> 클러스터 생성 : kind create cluster --config kind-config.yaml-> 노드 .. 2025. 11. 28. https://forums.docker.com/t/tutorial-solve-the-error-message-is-the-docker-daemon-running/145891 docker 명령어가 실행이 되지 않는다. docker 그룹에도 속해있고 docker 그룹에 ubuntu가 속해있다. https://forums.docker.com/t/tutorial-solve-the-error-message-is-the-docker-daemon-running/145891#p-245408-running-remote-docker-daemons-7 Tutorial: Solve the error message: "Is the Docker daemon running"Originally I published this tutorial on dev.to, and I copied the whole content here so you can read it regardless of the avail.. 2025. 11. 28. kubernetes 설정 - 5 (워커노드 설정) -설정 순서 -> OS 준비 :sudo swapoff -asudo sed -i '/ swap / s/^/#/' /etc/fstab-> 방화벽 설정 (클라우드 가상머신인 경우 보안규칙 설정): 10205 TCP 3000-32767 TCP-> 도커 또는 containerd 설치 : sudo apt updatesudo apt install -y containerdsudo mkdir -p /etc/containerdsudo containerd config default | sudo tee /etc/containerd/config.tomlsudo systemctl restart containerdsudo systemctl enable containerd-> OverlayFS 설정 : sudo modprobe .. 2025. 11. 27. ansible 설치하기 -설치→ sudo apt update sudo apt install -y ansible ansible --version -ansible→ ansible 디렉터리 설정 및 shell 설정하기→ 도커 설치시 apt-get update에서 현재의 gpg키 관련 오류 수정 방식 확인 필요: 책에 작성된 방식은 현재 사용 불가: 이곳에서 도커설치방법 확인→ playbook으로 docker 이미지 빌드→ docker-registry에 대해 비보안 연결인 /etc/docker/daemon.json에 insecurity-registry 설정해주기→ 이미지 push 전에 리포지터리ip및 포트를 태그로 붙이기→ sshpass 설치필요→ hosts 파일에 입력된 각호스트에 접속할 유저의 이름을 작성해준다.(접속할 서버의 /.. 2025. 11. 27. gitea 설치하기 -설치 → sudo apt update sudo apt install -y git wgetsudo adduser \ --system \ --shell /bin/bash \ --gecos 'Git Version Control' \ --group \ --disabled-password \ --home /home/git \ gitwget -O gitea https://dl.gitea.com/gitea/1.22.1/gitea-1.22.1-linux-amd64sudo mv gitea /usr/local/bin/ sudo chmod +x /usr/local/bin/giteasudo mkdir -p /var/lib/gitea/{custom,data,log}sudo chown -R git:git /var/lib/git.. 2025. 11. 27. docker 설치 방법 -docker가 필요한 vm에 필요한 설정→ 각각 실행 혹은 실행 파일로 생성후 실행#!/bin/bash set -e1️⃣ 환경 변수DOCKER_GPG_ASC_URL="https://download.docker.com/linux/ubuntu/gpg"DOCKER_KEYRING="/usr/share/keyrings/docker-archive-keyring.gpg"DOCKER_LIST="/etc/apt/sources.list.d/docker.list"2️⃣ 필수 패키지 설치sudo apt update sudo apt install -y curl gnupg lsb-release3️⃣ GPG 키 다운로드 및 변환sudo curl -fsSL $DOCKER_GPG_ASC_URL -o docker.asc sudo gp.. 2025. 11. 27. ubuntu linux에 카카오톡 설치하기 https://velog.io/@sk1440sk/Linux-%EC%97%90%EC%84%9C-kakaotalk-%EC%84%A4%EC%B9%98%EB%B0%A9%EB%B2%95 Linux 에 kakaotalk 설치방법Debian 12 를 사용하는데 kakaotalk 설치하는 방법을 공유해볼라고합니다아래의 링크https://github.com/jeonghanlee/kakaotalk-env누군가가 만들어주심 ㄷㄷ무튼sudo 그룹에 사용자를 추가해줌sudo usermod -aGvelog.io 2025. 11. 27. 이전 1 2 3 4 ··· 41 다음