CentOS 6.3 Minimal yum 安裝 PostgreSQL 9.2.3

來源:互聯網
上載者:User

環境:CentOS 6.3 最小化預設安裝,配置好網卡。

安裝PostgreSQL前,確認Internet串連正常,以便下載安裝檔案。

先使用 yum -y update 指令升級系統到最新版本。

# 修改防火牆設定,開啟5432連接埠

vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT

# 重啟防火牆使新設定生效
service iptables restart

#訪問 http://yum.pgrpms.org/repopackages.php 頁面,尋找最新的postgresql的yum配置的url。

#根據版本選擇需要的rpm後執行下列命令:
rpm -Uvh http://yum.pgrpms.org/9.2/redhat/rhel-6-x86_64/pgdg-centos92-9.2-6.noarch.rpm

#修改原始的yum倉庫配置
vi /etc/yum.repos.d/CentOS-Base.repo
在[base]和[updates]部分的尾部追加 exclude=postgresql* 用以取消從預設倉庫安裝和更新PostgreSQL。

#安裝postgresql
yum -y install postgresql-server

#執行資料庫初始化指令碼
service postgresql-9.2 initdb

#啟動服務
service postgresql-9.2 start

# 變更登入使用者
su - postgres

# 登入資料庫,修改postgres使用者的資料庫密碼
psql
postgres=# ALTER USER postgres PASSWORD '123456';
postgres=# \q

# 退出變更登入
exit

# 編輯設定檔,配置可訪問資料庫的網路地址
(注意別忘了去掉#listen_addresses=前面的#)
vi /var/lib/pgsql/9.2/data/postgresql.conf
listen_addresses = '*'

# 編輯設定檔,設定密碼md5驗證
vi /var/lib/pgsql/9.2/data/pg_hba.conf
# "local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
#host all all 127.0.0.1/32 ident
host all all 0.0.0.0/0 md5

# 重啟資料庫服務
service postgresql-9.2 restart

# 設定開機自動啟動服務
chkconfig postgresql-9.2 on

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.