安裝組件
客戶端安裝
sudo apt-get install postgresql-client
服務(wù)器安裝
sudo apt-get install postgresql postgresql-contrib
獲取Installing PostGIS, procedural languages, client interfaces等插件列表
apt-cache search postgres
Ruby PG gem安裝,需要生成Native Extension
首先安裝相應(yīng)package
sudo apt-get install libpq-dev
找到pg_config所在位置
sudo find / -name pg_config
安裝pg gem
gem install pg -- --with-pg-config=/usr/bin/pg_config
服務(wù)器配置
設(shè)置postgres用戶,用postgres用戶登錄并修改密碼
sudo -u postgres psql postgres
為postgres用戶設(shè)置密碼
\password postgres
創(chuàng)建新數(shù)據(jù)庫
sudo -u postgres createdb mydb
服務(wù)器高級(jí)設(shè)置
創(chuàng)建用戶
sudo -u postgres createuser --superuser $USER
sudo -u postgres psql
postgres=# \password $USER
管理用戶及權(quán)限
編輯/etc/postgresql/current/main/postgresql.conf文件用以監(jiān)聽其它網(wǎng)絡(luò)
listen_addresses = '*'
創(chuàng)建新用戶tesdb及該用戶所擁有的數(shù)據(jù)庫testdb
sudo -u postgres createuser -D -A -P testdb
sudo -u postgres createdb -O testdb testdb
編輯/etc/postgresql/current/main/pg_hba.conf文件,允許testdb用戶遠(yuǎn)程連接testdb數(shù)據(jù)庫
host testdb testdb 0.0.0.0/0 md5
重新加載配置
sudo /etc/init.d/postgresql reload
重啟數(shù)據(jù)庫
sudo /etc/init.d/postgresql restart