EC2(12)
-
EC2 ubuntu Redis 설치
아래 글을 참고해 EC2 를 생성해준다. https://muyeon95.tistory.com/187 AWS EC2 배포하기 선행작업 https://muyeon95.tistory.com/186 github SSH Repository [ git ] - 우선 repository 를 생성한다. - SSH 키를 발급받는다. 생성한 repository 를 사용하기 위해서 로컬환경에서 깃허브를 사용하기 위해 인증을 muyeon95.tistory.com 설치 sudo apt-get update sudo apt-get upgrade Redis 다운 wget https://download.redis.io/redis-stable.tar.gz 압축 해제 sudo mv redis-stable /home/redis 경로 이동 c..
2023.12.08 -
pgpool2 로드밸런서
사전 준비 Master-Slave 설정 https://muyeon95.tistory.com/272 AWS EC2 ubuntu postgresql replication (Master-Slave) 사전 과정 AWS 에서 EC2 인스턴스를 2개 만든다. (master, slave) https://muyeon95.tistory.com/187 AWS EC2 배포하기 선행작업 https://muyeon95.tistory.com/186 github SSH Repository [ git ] - 우선 repository 를 생성한다. - SSH 키 muyeon95.tistory.com 아래 포스팅을 참고해 pgpool 인스턴스를 생성 https://muyeon95.tistory.com/187 AWS EC2 배포하기 선행..
2023.08.29 -
AWS EC2 ubuntu postgresql replication (Master-Slave)
사전 과정 AWS 에서 EC2 인스턴스를 2개 만든다. (master, slave) https://muyeon95.tistory.com/187 AWS EC2 배포하기 선행작업 https://muyeon95.tistory.com/186 github SSH Repository [ git ] - 우선 repository 를 생성한다. - SSH 키를 발급받는다. 생성한 repository 를 사용하기 위해서 로컬환경에서 깃허브를 사용하기 위해 인증을 muyeon95.tistory.com 위 포스팅을 참고해 생성까지만 진행한다. master 인스턴스와 slave 인스턴스에 5432 포트를 허용한다. postgres 설치 (Master, Slave) sudo apt-get update sudo apt instal..
2023.08.29 -
AWS EC2 Docker & nGrinder 설치
사전준비 EC2 인스턴스를 2개 만든다. (controller, agent) 두개의 인스턴스에 docker 를 설치한다. https://muyeon95.tistory.com/258 ubuntu Docker 설치 ubuntu 시스템 패키지 업데이트 sudo apt-get update 필요한 패키지 설치 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Docker 공식 GPG 키를 추가 curl -fsSL https://download.docker.c muyeon95.tistory.com controller 인스턴스 설치 sudo docker pull ngrinder/contr..
2023.08.28 -
EC2 에 띄운 NestJS app & postgreSQL RDS
postgreSQL 로 RDS 를 생성해준다. https://muyeon95.tistory.com/196 RDS 사용하기 [ with mysql ] https://ap-northeast-2.console.aws.amazon.com/console/home?nc2=h_ct&src=header-signin®ion=ap-northeast-2 https://ap-northeast-2.console.aws.amazon.com/console/home?nc2=h_ct®ion=ap-northeast-2&src=header-signin ap-northeast-2.console.aws.amazon.com 위 muyeon95.tistory.com Dockerfile FROM node:18 WORKDIR /usr/src/app..
2023.08.14 -
ubuntu Docker compose 설치
사용 이유 여러 개의 도커 컨테이너를 하나의 어플리케이션을 구성하기 위해 사용 도커 컴포즈 설치 sudo curl -L "https://github.com/docker/compose/releases/download/1.28.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose 원하는 버전으로 설치할 경우 1.28.2 부분을 변경해주면 된다. 권한 부여 sudo chmod +x /usr/local/bin/docker-compose 심볼릭 링크 설정 sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose 버전 확인 docker-compose --version
2023.08.14