[PostgreSQL] PostgreSQL on Ubuntu (pgAdmin 설정)

아현·2024년 5월 22일
1

Database

목록 보기
6/8
post-custom-banner

출처

출처2

1. PostgreSQL 설치 및 설정


1) 시스템 패키지 업데이트


sudo apt update



2) PostgreSQL 설치


sudo apt install postgresql -y



3) PostgreSQL 버전 확인


psql --version



2. PostgreSQL 공식 저장소를 이용한 설치


1) PostgreSQL 저장소 추가


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) PostgreSQL 저장소 Key


wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -



3) 시스템 패키지 업데이트


sudo apt update



4) PostgreSQL 버전 확인


psql --version



3. PostgreSQL 사용자 설정




4. pgAdmin 설치



1) PostgreSQL 저장소 Key 추가


  • 이미 추가되어 덮어쓰려면 y를 입력합니다.

url -fsSL https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/pgadmin.gpg



2) pgAdmin 저장소 추가



sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list'



3) 시스템 패키지 업데이트



Sudo apt update



4) pgAdmin4를 설치


sudo apt install pgadmin4



5) pgAdmin 기본 구성


sudo /usr/pgadmin4/bin/setup-web.sh



profile
For the sake of someone who studies computer science
post-custom-banner

0개의 댓글