PostgreSQL CLI로 설치

postgresql cli로 설치

기본 OS는 우분투

수행 CLI apt-get install postgresql postgresql-contrib

다음에 동일한 작업시 편하게 수행하기 위해 작성하였습니다.

systemctl list-units --type=service

systemctl start postgresql.service

기본디렉토리

/etc/postgresql/16/main

내용수정 postgresql.conf

listen_addresses = '*' (추가)

내용수정 pg_hba.conf

host    postgres    postgres    192.168.2.215/32    md5
sudo -u postgres psql
ALTER USER postgres PASSWORD 'tech';