您好,登錄后才能下訂單哦!
本篇文章為大家展示了linux安裝配置postgresql的步驟,代碼簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
通過(guò)yum 安裝postgresql 相關(guān)的包
sudo yum install -y postgresql postgresql-server postgresql96-devel postgresql-contrib postgresql-docs
初始化數(shù)據(jù)庫(kù)
sudo service postgresql initdb // 根據(jù)安裝的版本確定postgresql 的版本 eg: sudo service postgresql96 initdb
啟動(dòng)數(shù)據(jù)庫(kù)
sudo service postgresql start
創(chuàng)建用戶和數(shù)據(jù)
// 首先登陸postgres 用戶 sudo su postpres psql // 輸入上條命令之后 進(jìn)入psql ,就可以輸入sql 語(yǔ)句 create user testuser with password 'testpwd'; // 創(chuàng)建數(shù)據(jù)庫(kù) create database testdb owner testuser; // 授予用戶操作數(shù)據(jù)庫(kù)的權(quán)限 grant all privileges on database testdb to testuser; \q 退出 // 修改配置文件,設(shè)置數(shù)據(jù)可以遠(yuǎn)程訪問(wè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
測(cè)試連接
psql -h *.*.*.* -d testdb -U testuser
可能遇到的錯(cuò)誤
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é)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。