PostgreSQL on Linux 安裝和第一次連線

尛樣兒發表於2010-03-18

[root@blliu ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.4 (Tikanga)
Kernel \r on an \m

[root@blliu ~]# uname -a
Linux blliu 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
[root@blliu ~]# cd /postgresql
[root@blliu postgresql]# ll
total 35612
-rw-r--r-- 1 root root 36424347 03-18 00:05 postgresql-8.4.2-1-linux-x64.bin

啟動VNC

[root@blliu ~]# cd /postgresql
[root@blliu postgresql]# ls
postgresql-8.4.2-1-linux-x64.bin
[root@blliu postgresql]# ll
\u603b\u8ba1 35612
-rw-r--r-- 1 root root 36424347 03-18 00:05 postgresql-8.4.2-1-linux-x64.bin
[root@blliu postgresql]# chmod 775 *

[root@blliu postgresql]# ./*.bin           
//必須以root使用者執行,出現圖形化介面

//根據嚮導完成安裝。


[root@blliu postgresql]# chkconfig --list | grep postgresql
postgresql-8.4  0:關閉 1:關閉  2:關閉  3:啟用  4:啟用  5:啟用  6:關閉

[root@blliu postgresql]# service postgresql-8.4 status
pg_ctl: server is running (PID: 18070)
/postgresql/PostgreSQL/8.4/bin/postgres "-D" "/postgresql/PostgreSQL/8.4/data"


編輯/postgresql/PostgreSQL/8.4/data/pg_hba.conf檔案 
//設定連線客戶端的IP0/24表示172.168.6.x這個網段都可以連線。
加入
host    all         all         172.168.6.0/24        md5
儲存退出。

[root@blliu data]# service postgresql-8.4 restart
Stopping PostgreSQL 8.4:
waiting for server to shut down.... done
server stopped
Starting PostgreSQL 8.4:
waiting for server to start.... done
server started
PostgreSQL 8.4 started successfully


使用Windows安裝的pgAdmin III連線postgres資料庫,埠5432,使用者名稱postgres正常。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23135684/viewspace-629764/,如需轉載,請註明出處,否則將追究法律責任。

相關文章