CentOS 7 安裝 PostgreSQL

來源:互聯網
上載者:User

標籤:http   bsp   start   x86   line   ase   targe   get   centos 7   

參考:http://blog.csdn.net/lk10207160511/article/details/50359549##1

 

1、檢查本機是否安裝 PostgreSQL

$ sudo rpm -aq | grep postgresql

 

2、從倉庫中安裝 PostgresSQL

搜尋包名:

yum search postgresql

列出包名,例如可能有:

postgresql.i686 : PostgreSQL client programs
postgresql.x86_64 : PostgreSQL client programs
postgresql-server.x86_64 : The programs needed to create and run a PostgreSQL server

安裝:

$ sudo yum install postgresql postgresql-server

 

驗證:

$ rpm -qa | grep postgresql

 

3、初始化資料庫

尋找命令:

rpm -ql postgresql-server | grep setup

/usr/bin/postgresql-setup
/usr/share/man/man1/postgresql-setup.1.gz

$ sudo postgresql-setup initdb

Initializing database ... OK

 

4、啟動服務並設定為開機啟動

sudo systemctl enable postgresql

sudo systemctl start postgresql

 

5、開放防火牆連接埠

$ sudo firewall-cmd --permanent --add-port=5432/tcp

$ sudo firewall-cmd --permanent --add-port=80/tcp

$ sudo firewall-cmd --reload

 

6、為使用者postgres修改密碼

$ sudo passwd postgres

 

7、以使用者postgres登入並訪問資料庫

$ su - postgres

Last login: Wed Mar  1 09:59:22 CST 2017 on pts/1

-bash-4.2$ psql
psql (9.2.18)
Type "help" for help.

postgres=#

 

至此,PostgreSQL安裝成功。

 

CentOS 7 安裝 PostgreSQL

相關文章

聯繫我們

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