PostgreSQL 리눅스 설치
반응형
0. 환경
OS : CentOS Linux release 7.7.1908 (Core)
DB : PostgreSQL 11
1. yum을 통한 설치
# OS 버전이 [0. 환경]과 다르다면 아래 링크에서 확인해볼 것
www.postgresql.org/download/linux/redhat/
# rpm 설치
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# PostgreSQL 설치
sudo yum install -y postgresql11-server
# DB 설치 및 서비스 등록 및 실행
sudo /usr/pgsql-11/bin/postgresql-11-setup initdb
sudo systemctl enable postgresql-11
sudo systemctl start postgresql-11
# 서비스 상태 확인
systemctl status postgresql-11
# 외부 접속 허용 설정(1)
vi /var/lib/pgsql/11/data/postgresql.conf
listen_addresses = '*'
# 외부 접속 허용 설정(2)
vi /var/lib/pgsql/11/data/pg_hba.conf
host all all 0.0.0.0/0 md5
# 서비스 재시작
systemctl restart postgresql-11
# PostgreSQL 접속
su - postgres -c 'psql'
# 관리자 비밀번호 변경
ALTER USER postgres PASSWORD '{password}';
2. 접속 확인
반응형
'development' 카테고리의 다른 글
lombok annotation (0) | 2022.09.12 |
---|---|
spring boot transaction (0) | 2022.09.08 |
CentOS7 locale -a (0) | 2020.01.23 |
SQL 04 테이블/시퀀스/인덱스 (0) | 2017.12.27 |
SQL 03 그룹함수 (0) | 2017.12.27 |
댓글
이 글 공유하기
다른 글
-
lombok annotation
lombok annotation
2022.09.12 -
spring boot transaction
spring boot transaction
2022.09.08 -
CentOS7 locale -a
CentOS7 locale -a
2020.01.23 -
SQL 04 테이블/시퀀스/인덱스
SQL 04 테이블/시퀀스/인덱스
2017.12.27