標籤:
1. 安裝環境
linux版本: CentOS release 6.2 (Final) pg版本 : postgresql-9.5.0
2. pg資料庫
--http://www.postgresql.org/ftp/source/
3. 安裝依賴包
>yum install gcc*>yum install readline-devel*
4. 安裝postgres
1). 解壓壓縮包[[email protected] software]# tar jxvf postgresql-9.5.0.tar.bz2 2). 進入postgresql-9.5.0檔案夾 [[email protected] software]# cd postgresql-9.5.0[[email protected] postgresql-9.5.0]# lsaclocal.m4 configure contrib doc HISTORY Makefile srcconfig configure.in COPYRIGHT GNUmakefile.in INSTALL README 3). 編譯postgresql源碼[[email protected] postgresql-9.5.0]# ./configure --prefix=/opt/pgsql --安裝路徑
表3-3 PostgreSQL配置指令碼選項
選項 |
描述 |
–prefix=prefix |
安裝到prefix指向的目錄;預設為/usr/local/pgsql |
–bindir=dir |
安裝應用程式到dir;預設為prefix/bin |
–with-docdir=dir |
安裝文檔到dir;預設為prefix/doc |
–with-pgport=port |
設定預設的伺服器端網路連接服務TCP連接埠號碼 |
–with-tcl |
為服務端提供Tcl預存程序支援 |
–with-perl |
為服務端提供Perl預存程序支援 |
–with-python |
為服務端提供Python預存程序支援 |
[[email protected] postgresql-9.5.0]# make [[email protected] postgresql-9.5.0]# make install 到達這步;會提示你“PostgreSQL installation complete.” OK
5. 建立使用者postgres
groupadd -g 701 postgres
useradd -m -g postgres -u 701 postgres
6. 建postgresql資料庫的資料主目錄
這個資料庫主目錄是隨實際情況而不同,這裡我們的主目錄是在/home/postgres/data目錄下:mkdir data
chown postgres:postgres data
7. 配置環境變數
vi .bash_profile 裡面添加如下內容:export PGHOME=/opt/pgsqlexport PGDATA=/home/postgres/data export PATH=$PATH:$HOME/bin:$PGHOME/binalias pg_start="pg_ctl start -l /home/postgres/log/pg_server.log"alias pg_stop="pg_ctl stop -l /home/postgres/log/pg_server.log"
8. 使用initdb初使用化資料庫
initdb
9. 佈建服務
$ vi postgresql.conf修改內容
listen_addresses = ‘localhost,127.0.0.1,192.168.8.21‘
port = 5432
password_encryption = on
#listen_addresses = ‘localhost,127.0.0.1,168.8.21‘‘可以寫成 listen_addresses = ‘*‘ 監聽所有的網路
$ vi pg_hba.conf
找到最下面這一行 ,這樣區域網路的人才能訪問
# IPv4 local connections:
host all all 127.0.0.1/32 trusthost all all 192.168.1.0/16 trust
10. 設定PostgreSQL開機自啟動
PostgreSQL的開機自啟動指令碼位於PostgreSQL源碼目錄的contrib/start-scripts路徑下linux檔案即為linux系統上的啟動指令碼1)修改linux檔案屬性,添加X屬性#chmod a+x linux2) 複製linux檔案到/etc/init.d目錄下,更名為postgresql#cp linux /etc/init.d/postgresql3)修改/etc/init.d/postgresql檔案的兩個變數prefix設定為postgresql的安裝路徑:/opt/pgsql-9.1.2PGDATA設定為postgresql的資料目錄路徑:4)設定postgresql服務開機自啟動#chkconfig --add postgresql
11. 查看資料
--http://www.cnblogs.com/marsprj/archive/2013/02/08/2893519.html --http://postgres.cn/index.php/home
作者 : li0924
時間 : 2016-01-04
本文著作權歸作者所有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文串連.
Linux下的PostgreSQL簡單安裝手冊