CentOS安裝postgresql 9.4

來源:互聯網
上載者:User

標籤:

1. 安裝PostgreSQL源

# yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm

在添加源的步驟中並沒有太多的區別,主要是源的地址有一定的變化

執行安裝命令

# yum 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

2. 初始化資料庫

# service postgresql-9.4 initdb

3. 啟動服務並設定為開機啟動

# service postgresql-9.4 start
# chkconfig postgresql-9.4 --level 35  on

4. 開放防火牆連接埠

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

5. 訪問PostgreSQL

# su - postgres

-bash-4.2$

-bash-4.2$ psql

postgres=#

設定postgres使用者密碼

postgres=# \password postgres

 密碼採用預設 postgres

CentOS安裝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.