1. 安裝環境 linux版本:CentOSrelease6.2(Final) pg版本 :postgresql-9.5.02. pg資料庫下載地址--http://www.postgresql.org/ftp/source/3. 安裝依賴包>yum installgcc*>yum insta...
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). 解壓壓縮包 [root@oracle2 software]# tar jxvf postgresql-9.5.0.tar.bz2 2). 進入postgresql-9.5.0文件夾 [root@oracle2 software]# cd postgresql-9.5.0 [root@oracle2 postgresql-9.5.0]# ls aclocal.m4 configure contrib doc HISTORY Makefile src config configure.in COPYRIGHT GNUmakefile.in INSTALL README 3). 編譯postgresql源碼 [root@oracle2 postgresql-9.5.0]# ./configure --prefix=/opt/pgsql --安裝路徑表3-3 PostgreSQL配置腳本選項
[root@oracle2 postgresql-9.5.0]# make [root@oracle2 postgresql-9.5.0]# make install 到達這步;會提示你“PostgreSQL installation complete.” OK
選項 描述 –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存儲過程支持
5. 創建用戶postgres
groupadd -g 701 postgres6. 建postgresql資料庫的數據主目錄useradd -m -g postgres -u 701 postgres
這個資料庫主目錄是隨實際情況而不同,這裡我們的主目錄是在/home/postgres/data目錄下: mkdir datachown postgres:postgres data
7. 配置環境變數
vi .bash_profile 裡面添加如下內容: export PGHOME=/opt/pgsql export PGDATA=/home/postgres/data export PATH=$PATH:$HOME/bin:$PGHOME/bin alias 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初使用化資料庫
initdb9. 配置服務
$ 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 trust host all all 192.168.1.0/16 trust
10. 設置PostgreSQL開機自啟動
PostgreSQL的開機自啟動腳本位於PostgreSQL源碼目錄的contrib/start-scripts路徑下 linux文件即為linux系統上的啟動腳本 1)修改linux文件屬性,添加X屬性 #chmod a+x linux 2) 複製linux文件到/etc/init.d目錄下,更名為postgresql #cp linux /etc/init.d/postgresql 3)修改/etc/init.d/postgresql文件的兩個變數 prefix設置為postgresql的安裝路徑:/opt/pgsql-9.1.2 PGDATA設置為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
本文版權歸作者所有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接.