기억의 습작

postgres install in Ubuntu 본문

DB/postgres

postgres install in Ubuntu

뿌사리다 2021. 8. 29. 01:34

Postgres DB를 우분투에 설치 및 기본적인 사용방법을 기술한다.

postgres 실행화면

 

우분투에서 postgres를 실행한 화면 (pgAdmin 4)

설치

 # apt-get install postgresql postgresql-contrib -y

 

접속방법

 # su - postgres
 postgres@4f744418d327:~$ psql
 psql (9.3.20)
 Type "help" for help.

 

계정 생성

 $ create user {your-account};

 

패스워드 변경

 postgres=# alter user postgres with password '{your-password}';

 

나머지 설정 참고는 centos 설치를 참조 

 

 

728x90
반응형
LIST

'DB > postgres' 카테고리의 다른 글

Postgresql 쿼리 예제  (0) 2021.08.29
Postgres install in centOs  (0) 2021.08.29
Postgres DB Eclipse에 연결  (0) 2021.08.29