Postgres(4)
-
AWS EC2 ubuntu postgreSQL 연결
EC2 인스턴스를 ubuntu 로 생성한다. https://muyeon95.tistory.com/187 AWS EC2 배포하기 선행작업 https://muyeon95.tistory.com/186 github SSH Repository [ git ] - 우선 repository 를 생성한다. - SSH 키를 발급받는다. 생성한 repository 를 사용하기 위해서 로컬환경에서 깃허브를 사용하기 위해 인증을 muyeon95.tistory.com 인바운드 규칙을 추가한다. 5432, 443, 80, 443, 그리고 사용하는 서비스의 포트(저는 8080으로 했습니다.) PostgreSQL 설치 sudo apt-get update sudo apt install postgresql postgresql-contri..
2023.09.09 -
11 주차 [ WIL ]
이번주에 알게된 것 1. AWS ngrinder 설치 및 사용 https://muyeon95.tistory.com/271 AWS EC2 Docker & nGrinder 설치 사전준비 EC2 인스턴스를 2개 만든다. (controller, agent) 두개의 인스턴스에 docker 를 설치한다. https://muyeon95.tistory.com/258 ubuntu Docker 설치 ubuntu 시스템 패키지 업데이트 sudo apt-get update 필요한 패키지 muyeon95.tistory.com 2. AWS EC2 ubuntu postgres replication 실습 https://muyeon95.tistory.com/272 AWS EC2 ubuntu postgresql replication (..
2023.08.31 -
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 -
테이블명, 컬럼명 대소문자 구분 [ PostgreSQL ]
postgreSQL 은 테이블명, 컬럼명의 대소문자를 구분한다. 큰 따옴표로 묶이지 않은 모든 식별자(테이블명, 컬럼명)는 PostgreSQL 에서 소문자로 변환된다. 대소문자를 구별해서 사용하려면 큰 따옴표를 묶어주면 된다. (기본값은 문자) ex) SELECT * FROM "Person" WHERE "Name" = 'mike' https://ehdtnn.tistory.com/728 [postgreSql] 테이블명, 컬럼명 대소문자 구분 postgreSql은 테이블명, 컬럼명의 대소문자를 구분한다. 큰 따옴표로 묶이지 않은 모든 식별자(테이블명, 컬럼명)는 PostgreSQL에서 소문자로 변환된다. 대소문자를 구별해서 사용하려면 큰 따옴표로 ehdtnn.tistory.com
2023.08.14