溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ubuntu安裝postgresql和用法介紹

發(fā)布時間:2021-07-26 23:21:31 來源:億速云 閱讀:158 作者:chen 欄目:系統(tǒng)運維

這篇文章主要介紹“ubuntu安裝postgresql和用法介紹”,在日常操作中,相信很多人在ubuntu安裝postgresql和用法介紹問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ubuntu安裝postgresql和用法介紹”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

安裝組件

客戶端安裝
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ù)器高級設(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用戶遠程連接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

到此,關(guān)于“ubuntu安裝postgresql和用法介紹”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI