Linux安裝PostgreSQL 9.4
Linux安裝PostgreSQL 9.4過程筆記,希望對大家有用。
一、前言
PostgreSQL通常也簡稱Postgres,是一個關係型資料庫管理系統,適用於各種Linux作業系統、Windows、Solaris、BSD和Mac OS X。PostgreSQL遵循PostgreSQL許可,是一個開源軟體。PostgreSQL由PostgreSQL全球開發組開發,由極少數的公司志願組成並進行監督管理,這些公司有紅帽、EnterpriseDB等。
PostgreSQL的知名度越來越大,這是理所當然的:它是如此可靠、高效。與傳統企業級關係型資料庫相比,PostgreSQL完全基於社區驅動,有著豐富的工具和文檔,形成了一個完善的生態系統。
目前搜尋的大部分CentOS下安裝均是用於Centos6.X的部分命令已經有很大變化,本文主要記錄在Linux Centos 7.1下安裝PostgreSQL的過程。
二、安裝PostgreSQL源
CentOS 6.x 32bit
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-i386/pgdg-centos94-9.4-1.noarch.rpm
CentOS 6.x 64bit
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-1.noarch.rpm
CentOS 7 64bit
rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-1.noarch.rpm
在添加源的步驟中並沒有太多的區別,主要是源的地址有一定的變化。
三、執行安裝命令
yum update
yum install postgresql94-server postgresql94-contrib
四、驗證是否安裝成功
rpm -aq| grep postgres
執行結果如下:
postgresql94-libs-9.4.1-1PGDG.rhel7.x86_64
postgresql94-server-9.4.1-1PGDG.rhel7.x86_64
postgresql94-9.4.1-1PGDG.rhel7.x86_64
postgresql94-contrib-9.4.1-1PGDG.rhel7.x86_64
五、初始化資料庫
CentOS 6.x 系統
service postgresql-9.4 initdb
CentOS 7 系統
/usr/pgsql-9.4/bin/postgresql94-setup initdb
如果我在CentOS 7下執行 service postgresql-9.4 initdb 將會報如下問題
The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl.
六、啟動服務並設定為開機啟動
CentOS 6.x 系統
service postgresql-9.4 start
chkconfig postgresql-9.4 on
CentOS 7 系統
systemctl enable postgresql-9.4
systemctl start postgresql-9.4
七、開放防火牆連接埠
CentOS 6.x 系統
vi /etc/sysconfig/iptables
按下I進入輸入模式,在檔案中加入一下語句
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
輸入完成後按ESC退出編輯模式,輸入:wq退出VI編輯介面。
重啟防火牆服務
service iptables restart
CentOS 7 系統
firewall-cmd --permanent --add-port=5432/tcp
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
八、訪問PostgreSQL
su - postgres
輸出結果如下:
上一次登入:一 5月 18 15:17:29 CST 2015pts/0 上
-bash-4.2$
輸入命令psql將看到PostgrSQL的版本資訊。
psql (9.4.1)
輸入 "help" 來擷取協助資訊.
九、設定postgres使用者密碼
postgres=# \password postgres
以上操作基本完成整個PostgreSQL的安裝。
------------------------------------華麗麗的分割線------------------------------------
CentOS 6.3環境下yum安裝PostgreSQL 9.3
PostgreSQL緩衝詳述
Windows平台編譯 PostgreSQL
Ubuntu下LAPP(Linux+Apache+PostgreSQL+PHP)環境的配置與安裝
Ubuntu上的phppgAdmin安裝及配置
CentOS平台下安裝PostgreSQL9.3
PostgreSQL配置Streaming Replication叢集
如何在CentOS 7/6.5/6.4 下安裝PostgreSQL 9.3 與 phpPgAdmin
------------------------------------華麗麗的分割線------------------------------------
PostgreSQL 的詳細介紹:請點這裡
PostgreSQL 的:請點這裡
本文永久更新連結地址: