離線安裝PostgreSQL

來源:互聯網
上載者:User

標籤:postgresql   離線   

postgresql線上安裝很簡單,但是很多情況,伺服器不能連網,需要離線安裝。下面是離線安裝的步驟:


1. 首先進入官網:

https://www.postgresql.org/


2. 點擊Download

3. 選擇需要的作業系統版本

4. 選擇需要的版本

5. 在能連網的機器上下載yum源

yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-3.noarch.rpm


6. 下載postgres軟體

yum search postgres

mkdir psql95

yum install --downloadonly --downloaddir=psql95 postgresql95 postgresql95-server


7. 查看下載的軟體包

# ls

postgresql95-9.5.13-1PGDG.rhel6.x86_64.rpm

postgresql95-libs-9.5.13-1PGDG.rhel6.x86_64.rpm

postgresql95-server-9.5.13-1PGDG.rhel6.x86_64.rpm


8. 打包並傳送到需要安裝的離線伺服器上

# tar -zcvf pg.tar.gz *

postgresql95-9.5.13-1PGDG.rhel6.x86_64.rpm

postgresql95-libs-9.5.13-1PGDG.rhel6.x86_64.rpm

postgresql95-server-9.5.13-1PGDG.rhel6.x86_64.rpm


9. 在需要安裝端解壓,安裝

rpm -ivh postgresql95-*


10. 啟動

# service postgresql-9.5 initdb

# service postgresql-9.5 start

# chkconfig postgresql-9.5 on


11. 串連postgres

su - postgres

psql

postgres=# \l                                  List of databases   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   -----------+----------+----------+-------------+-------------+----------------------- postgres  | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |  template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +           |       |         |           |             | postgres=CTc/postgres template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +         |         |           |            |            | postgres=CTc/postgres(3 rows)


至此,離線安裝完成。


離線安裝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.