その先にあるもの…

[SQL] PostgreSql 설치 본문

프로그래밍/SQL

[SQL] PostgreSql 설치

specialJ 2018. 2. 7. 20:33

ubuntu 14.04 LTS



Create the file /etc/apt/sources.list.d/pgdg.list, and add a line for the repository


deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main



Import the repository signing key, and update the package lists


wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | \

  sudo apt-key add -
sudo apt-get update



Ubuntu includes PostgreSQL by default. To install PostgreSQL on Ubuntu, use the apt-get (or other apt-driving) command:


apt-get install postgresql-9.6

'프로그래밍 > SQL' 카테고리의 다른 글

[SQL] postgresql union  (0) 2018.03.26
[SQL] postgresql function if  (0) 2018.03.26
[SQL] postgresql 원격 접속  (0) 2018.02.07
[SQL] sql union 기초 정리  (0) 2017.07.21
[SQL] sql 서브쿼리 기초 정리  (0) 2017.07.21
Comments