標籤: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
[[email protected] opt]$$ cd pgsql
[[email protected] opt]$$tar -zxvf postgresql-8.4.6.tar.gz
[[email protected] opt]$ cd postgresql-8.4.6/
[[email protected] postgresql-8.4.6]$./configure --prefix=/opt/postgresql
[[email protected] postgresql-8.4.6]$make
[[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.初始化資料庫。
[[email protected] postgresql-8.4.2]$ cd /opt/postgresql/bin/
[[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. 啟動資料庫
[[email protected] bin]$./postgres -D /opt/postgresql/data
當然,可以通過日誌重寫向,將啟動資訊寫入日誌,例如:
[[email protected] bin]$ ./pg_ctl -D /opt/postgresql/data/ - /home/pgsql/log/pg_server.log start
將日誌資訊記錄在檔案/home/pgsql/log/pg_server.log中,
11.安裝完畢。
本文出自 “不一樣的地區” 部落格,謝絕轉載!
centos安裝postgresql資料庫過程