반응형
현재 postgresql 의 CentOS8 기본 버전은 10 입니다.
이전에 폐쇄망으로 설치하는 경우, postgresql 만 다운로드 하면 모듈만 다운로드 되니, postgresql-server 를 꼭 같이 다운받아서 설치를 하면됩니다.
dnf download postgresql --resolve
dnf download dpostgresql-server --resolve
sudo dnf install *.rpm
그리고, 셋팅...
sudo postgresql-setup initdb
sudo systemctl enable --now postgresql
sudo -u postgres psql -c "SELECT version();"
참고사이트!!
https://jjeongil.tistory.com/1818
Linux : CentOS 8 : PostgreSQL 설치 방법, 예제, 명령어
Postgre SQL 또는 Postgres는 내결함성 환경이나 복잡한 애플리케이션을 구축할 수 있는 많은 고급 기능을 갖춘 오픈 소스 범용 객체 관계형 데이터베이스 관리 시스템입니다. 이 가이드에서는 CentOS 8
jjeongil.tistory.com
반응형