下面是步驟,在Ubuntu 14.04安裝PostgreSQL 9.4。
Reference taken from this Article:
首先,檢查的Ubuntu版本:
lsb_release -sc
您需要添加最新的PostgreSQL庫最新的版本,否則將安裝PostgreSQL 9.3。這是可靠的版本。
sudo add-apt-repository "deb https://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main"
更新和安裝PostgreSQL 9.4:
sudo apt-get update
sudo apt-get install postgresql-9.4
默認的Postgres超級用戶和Postgres數據庫中創建。您需要爲postgres超級用戶設置密碼。
[email protected]:~$ sudo passwd postgres
Enter new UNIX password:****
Retype new UNIX password:****
passwd: password updated successfully
如果服務沒有啓動,就可以啓動PostgreSQL服務。
sudo service postgresql start
連接的PostgreSQL使用服務器postgres用戶:
[email protected]:~$ su postgres
Password:****
創建一個示例數據庫:
createdb database_name
連接到該數據庫:
psql -d database_name
感謝@Schwern後返回這一點,我有錯誤的代號也是非常有用的。 – speg
請參閱http://www.unixmen.com/install-postgresql-9-4-phppgadmin-ubuntu-14-10/ – Natim
https://wiki.postgresql.org/wiki/Apt#Quickstart上的腳本用於我。 https://alioth.debian.org/scm/loggerhead/pkg-postgresql/postgresql-common/trunk/download/head:/apt.postgresql.org.s-20130224224205-px3qyst90b3xp8zj-1/apt.postgresql.org.sh – Abdo