데이터베이스

PostgreSQL 설치

열공하는 엔지니어 2024. 10. 10. 15:02

<테스트 환경>
1. CentOS7.7.1908
2. PostgreSQL 14

<설치>
yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
yum install -y postgresql14-server

systemctl status postgresql-14.service
● postgresql-14.service - PostgreSQL 14 database server
   Loaded: loaded (/usr/lib/systemd/system/postgresql-14.service; enabled; vendor preset: disabled)
   Active: active (running) since Thu 2024-10-10 05:14:58 UTC; 12min ago
     Docs: https://www.postgresql.org/docs/14/static/
  Process: 16346 ExecStartPre=/usr/pgsql-14/bin/postgresql-14-check-db-dir ${PGDATA} (code=exited, status=0/SUCCESS)
 Main PID: 16352 (postmaster)
   CGroup: /system.slice/postgresql-14.service
           ├─16352 /usr/pgsql-14/bin/postmaster -D /var/lib/pgsql/14/data/
           ├─16354 postgres: logger
           ├─16356 postgres: checkpointer
           ├─16357 postgres: background writer
           ├─16358 postgres: walwriter
           ├─16359 postgres: autovacuum launcher
           ├─16360 postgres: stats collector
           ├─16361 postgres: logical replication launcher
           ├─16364 postgres: postgres mydb 192.168.0.5(57296) idle
           └─16365 postgres: postgres mydb 192.168.0.5(57297) idle

링크참조 사이트 : https://download.postgresql.org


<데이터베이스 초기화>
/usr/pgsql-14/bin/postgresql-14-setup initdb

<서비스 시작 및 자동 시작 설정>
systemclt start postgresql-14
systemctl enable postgresql-14

<PostgreSQL 기본 파일 설정>
vi /var/lib/pgsql/14/data/postgresql.conf

     60 listen_addresses = '*'                  # what IP address(es) to listen on;
     61                                                     # comma-separated list of addresses;
     62                                                     # defaults to 'localhost'; use '*' for all
     63                                                     # (change requires restart)
     64 port = 5432                                  # (change requires restart)
     65 max_connections = 100              # (change requires restart)

vi /var/lib/pgsql/14/data/pg_hba.conf

     82 # TYPE  DATABASE        USER            ADDRESS                 METHOD
     83
     84 # "local" is for Unix domain socket connections only
     85 local   all             all                                     md5
     86 # IPv4 local connections:
     87 host    all             all             192.168.0/24            md5
     88 # IPv6 local connections:
     89 host    all             all             ::1/128                 scram-sha-256

*해당 부분은 테스트 환경으로 보안을 많이 푼 상태이므로, 접속관련한 부분은 스스로 설정.

<데이터베이스 관리자 패스워드 설정 및 초기접속>
sudo -i -u postgres
psql
\password postgres

<새 데이터베이스 및 사용자 생성>
CREATE DATABASE mydb;
CREATE USER kilee WITH ENCRYPTED PASSWORD 'mypassword';
GRANT ALL PRIVILEGES ON DATABASE mydb TO kilee;

<서비스 재시작>
systemctl restart postgresql-14

<PostgreSQL 접속 테스트>
psql mydb -U postgres

[root@centos1 data]# psql mydb -U postgres
Password for user postgres:
psql (14.13)
Type "help" for help.

mydb=#

psql mydb -U kilee

[root@centos1 data]# psql mydb -U kilee
Password for user kilee:
psql (14.13)
Type "help" for help.

mydb=>

 

'데이터베이스' 카테고리의 다른 글

PostgreSQL 외장스토리지 연결  (0) 2024.10.10
PostgreSQL 사용을 위한 DBeaver 설치 및 설정  (6) 2024.10.10
데이터베이스 용어  (0) 2024.02.27