本篇文章為大家展示了linux安裝配置postgresql的步驟,代碼簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
10年積累的做網(wǎng)站、成都網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有滁州免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
通過yum 安裝postgresql 相關(guān)的包
sudo yum install -y postgresql postgresql-server postgresql96-devel postgresql-contrib postgresql-docs
初始化數(shù)據(jù)庫
sudo service postgresql initdb // 根據(jù)安裝的版本確定postgresql 的版本 eg: sudo service postgresql96 initdb
啟動數(shù)據(jù)庫
sudo service postgresql start
創(chuàng)建用戶和數(shù)據(jù)
// 首先登陸postgres 用戶 sudo su postpres psql // 輸入上條命令之后 進(jìn)入psql ,就可以輸入sql 語句 create user testuser with password 'testpwd'; // 創(chuàng)建數(shù)據(jù)庫 create database testdb owner testuser; // 授予用戶操作數(shù)據(jù)庫的權(quán)限 grant all privileges on database testdb to testuser; \q 退出 // 修改配置文件,設(shè)置數(shù)據(jù)可以遠(yuǎn)程訪問 sudo cd /var/lib/pgsql/data // 編輯文件 sudo vim postgresql.conf
修改文件
listen_addresses = 'localhost' 改為 listen_addresses = '*'
修改文件pg_hba.conf
在文件底部添加一行
host all all 0.0.0.0/0 md5
// 重啟服務(wù)
注意: 查看一下data文件的權(quán)限是否是 700 ,如果不是修改為700 sudo chmod 700 /var/bin/data/
sudo service restart postgresql
測試連接
psql -h *.*.*.* -d testdb -U testuser
可能遇到的錯誤
Peer authentication failed for user "postgres"
解決方法
sudo vim /var/lib/pgsql/data/pg_hba.conf
host all all peer 改為
host all all trust
上述內(nèi)容就是linux安裝配置postgresql的步驟,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。