postgresql基本使用(一)

來源:互聯網
上載者:User

標籤:$path   res   postgre   post   pos   local   x86_64   查看   儲存檔案   

官網找到適合自己的版本並下載postgresql https://www.postgresql.org/download/

版本號碼:postgresql-9.5.10.tar.bz2
系統:CentOS7 x86_64

解壓:tar -jxvf postgresql-9.5.10.tar.bz2
cd postgresql-9.5.10
./configure --prefix=/usr/local/postgres 這個時候可能有各種報錯,應該都是你缺少包(那就yum安裝包)或者少參數(--without-參數)解決
make install 安裝
make clean 釋放檔案空間
useradd -G postgres postgres 建立這個組與使用者
mkdir /opt/postgres
chown postgres:postgres /opt/postgres
vi /etc/profile添加下邊的東西
PATH=/usr/local/postgres/bin:$PATH
MANPATH=/usr/local/postgres/share/man:$MANPATH
source /etc/profile 儲存檔案
su - postgres
initdb -D /opt/postgres/ 初始化
或者初始化並啟動 pg_ctl -D /opt/postgres/ initdb
psql 進到命令視窗開始幹活兒 一切ok

                另外可以安裝man 跟doc 好像是  make install-man ;make install-doc;安裝完成以後就可以 man psql查看協助。

postgresql基本使用(一)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.