1 sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
2 wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
3 sudo apt-get update
4 sudo apt-get -y install postgresql
5 sudo apt-get install -y postgresql postgresql-contrib

 

 # 5번에서 아래 오류가 나오면 

E: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 2813 (apt-get)
N: Be aware that removing the lock file is not a solution and may break your system.
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 

1 sudo killall apt apt-get
2 sudo rm /var/lib/apt/lists/lock
3 sudo rm /var/cache/apt/archives/lock
4 sudo rm /var/lib/dpkg/lock*

실행후 다시 5번 실행 

 

설치 완료후  우부툰 files 실행  (각 버전마다 12, 13, 14 이렇게 중간 폴더 이름이 틀림)

 

경로   ->  /ect/postgresql/12/main

 

postgresql.conf 파일 오픈  (읽기 전용 및 권한 변경 ) 

https://xandroid.tistory.com/entry/File-%EA%B6%8C%ED%95%9C-%EB%B3%80%EA%B2%BD?category=1033066

 

listen_address = '0.0.0.0' 변경 

 

 

pg_hba.conf 파일 수정

host           all         alll    0.0.0./0               peer -> md5

 

 

우분투 재시작 또는  posgtresql 재시작 

> https://xandroid.tistory.com/entry/postgresql-%EC%9E%AC%EC%8B%9C%EC%9E%91?category=1033066 

 

postgresql 재시작

sudo service postgresql restart

xandroid.tistory.com

 

postgres 비번 변경 

 

1 su postgres
2 psql
3 alter user postgres with password '1234';

 

 

 

 

Pgadmin 설치후  

 

User : postgres

Matinenect database : potgres 

 

'Ubuntu' 카테고리의 다른 글

JAVA GUI PROGRAMING  (0) 2022.03.24
Ubuntu java eclips개발환경  (0) 2022.03.24
postgresql 재시작  (0) 2022.03.23
원도우-> 우분투 원격 접속  (0) 2022.03.23
File 권한 변경  (0) 2022.03.23

+ Recent posts