CentOS에 PostgreSQL 14.5 설치
# 저장소 추가
sudo yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 패키지 설치
sudo yum install postgresql14-server postgresql14-contrib
# 데이터베이스 초기화
sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
# 서비스 시작 및 활성화
sudo systemctl start postgresql-14
sudo systemctl enable postgresql-14
# postgres 사용자로 전환 및 셸 접속
sudo -i -u postgres
psql
참조
https://www.postgresql.org/download/linux/redhat/
https://computingforgeeks.com/how-to-install-postgresql-14-centos-rhel-7/
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-centos-7
https://docs.3rdeyesys.com/database/ncloud-database-postgresql-install-connect-guide-centos.html
'개발 > PostgreSQL' 카테고리의 다른 글
CentOS PostgreSQL data directory 변경 (0) | 2023.07.05 |
---|---|
[PostgreSQL] 배열 FOR LOOP (0) | 2023.01.04 |
PostgreSQL increment 초기화 (0) | 2022.08.12 |