溫馨提示×

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

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

ubuntu-14.04編譯安裝PostgreSQL

發(fā)布時(shí)間:2020-07-02 04:54:58 來(lái)源:網(wǎng)絡(luò) 閱讀:1634 作者:ctozll 欄目:數(shù)據(jù)庫(kù)

#安裝依賴包

sudo apt-get install libreadline6-dev

sudo apt-get install zlib1g-dev

sudo apt-get install libssl-dev

 

#下載源碼,并且壓縮

sudo tar xf postgresql-9.5.2.tar.gz

cd postgresql-9.5.2

./configure --prefix=/usr/local/pgsql--with-pgport=5432 --with-openssl

運(yùn)行make提示:

ubuntu-14.04編譯安裝PostgreSQL

sudo apt-get install make   安裝make

#編譯安裝

make –j 4  &&  sudo make install

#安裝contrib

cd contrib

make

sudo make install

#添加用戶和組

sudo adduser postgres

#建立數(shù)據(jù)庫(kù)數(shù)據(jù)目錄并授權(quán)

sudo mkdir /usr/local/pgsql/data

sudo chown -R postgres:postgres/usr/local/pgsql/data

su postgres

#初始化數(shù)據(jù)庫(kù)并啟動(dòng)數(shù)據(jù)庫(kù)

/usr/local/pgsql/bin/initdb -D  /usr/local/pgsql/data/

/usr/local/pgsql/bin/postgres –D  /usr/local/pgsql/data>logfile 2>&1 &

#創(chuàng)建數(shù)據(jù)庫(kù)test

/usr/local/pgsql/bin/createdb test

#進(jìn)入test數(shù)據(jù)庫(kù)

/usr/local/pgsql/bin/psql test

#將啟動(dòng)腳本加入到系統(tǒng)服務(wù)

sudo cp /usr/local/src/postgresql-9.5.2/contrib/start-scripts/linux /etc/init.d/postgresql

sudo chmod +x /etc/init.d/postgresql

#查看postgresql服務(wù)

sudo service postgresql status

#查看數(shù)據(jù)庫(kù)進(jìn)程運(yùn)行狀態(tài)

ps aux | grep postgres

#設(shè)置為開(kāi)機(jī)啟動(dòng)

sudo update-rc.d postgresql defaults


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI