Linux安裝postgresql 9.4

來源:互聯網
上載者:User

標籤:

一、前言

      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 updateyum install postgresql94-server postgresql94-contrib

四、驗證是否安裝成功

rpm -aq| grep postgres

執行結果如下:

postgresql94-libs-9.4.1-1PGDG.rhel7.x86_64postgresql94-server-9.4.1-1PGDG.rhel7.x86_64postgresql94-9.4.1-1PGDG.rhel7.x86_64postgresql94-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 startchkconfig postgresql-9.4 on

CentOS 7 系統

systemctl enable postgresql-9.4systemctl 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/tcpfirewall-cmd --permanent --add-port=80/tcpfirewall-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的安裝。

Linux安裝postgresql 9.4

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.