centos安裝postgresql資料庫過程

來源:互聯網
上載者:User

標籤:posrgresql在centos上安裝   在linux上安裝。   

1.1.1  軟體安裝

  1.設定使用者組和使用者層級

    Postgresql不能以root身份運行,要以其他的身份運行,所以必須建立對應的使用者和組。

(1)新增database使用者組:groupadd database

(2)新增pgsql使用者屬於postgresql使用者組:useradd -g database pgsql

(3)修改pgsql使用者密碼:passwd pgsql(這裡設定密碼為postgres)

2. 作業系統資訊:centos 5  x86

3.準備安裝包,下載PostgreSQL源碼:http://www.postgresql.org/ftp/source,現在已經更新到了9.1beta版本了,本次安裝使用8.4.6

4.上傳下載到的postgresql-8.4.6.tar.gz到/pgsql目錄下。

 5

  1. [[email protected] opt]$$ cd pgsql

  2. [[email protected] opt]$$tar -zxvf postgresql-8.4.6.tar.gz

  3. [[email protected] opt]$ cd postgresql-8.4.6/  

  4. [[email protected] postgresql-8.4.6]$./configure --prefix=/opt/postgresql 

  5. [[email protected] postgresql-8.4.6]$make

  6. [[email protected] postgresql-8.4.6]$make install


6.報錯  

[[email protected] postgresql-8.4.6]$ make install

make -C doc install

make[1]: Entering directory `/home/pgsql/pgsql/postgresql-8.4.6/doc‘

mkdir -p -- /opt/postgresql/share/doc//html

mkdir: cannot create directory `/opt/postgresql‘: Permission denied

make[1]: *** [installdirs] Error 1

make[1]: Leaving directory `/home/pgsql/pgsql/postgresql-8.4.6/doc‘

make: *** [install] Error 2

[[email protected] postgresql-8.4.6]$ make install

make -C doc install

make[1]: Entering directory `/home/pgsql/pgsql/postgresql-8.4.6/doc‘

mkdir -p -- /opt/postgresql/share/doc//html

mkdir: cannot create directory `/opt/postgresql‘: Permission denied

make[1]: *** [installdirs] Error 1

make[1]: Leaving directory `/home/pgsql/pgsql/postgresql-8.4.6/doc‘

make: *** [install] Error 2

  處理辦法,把opt的改為777.

8.初始化資料庫。

  1. [[email protected] postgresql-8.4.2]$ cd /opt/postgresql/bin/  

  2. [[email protected] bin]$./initdb --encoding=utf8 -D /opt/postgresql/data  

初始化完成後螢幕列印如下資訊:

Success. You can now start the database server using:


    ./postgres -D /home/pgsql/data

or

    ./pg_ctl -D /home/pgsql/data -l logfile start

10. 啟動資料庫


  1. [[email protected] bin]$./postgres -D /home/pgsql/data/  

當然,可以通過日誌重寫向,將啟動資訊寫入日誌,例如:

  1. [[email protected] bin]$ ./pg_ctl -D /home/pgsql/data/ - /home/pgsql/log/pg_server.log start  

將日誌資訊記錄在檔案/home/pgsql/log/pg_server.log中,

11.安裝完畢。


本文出自 “不一樣的地區” 部落格,謝絕轉載!

centos安裝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.