測試postgresql叢集

來源:互聯網
上載者:User

標籤:.post   一個   start   oss   tab   alter   code   連接埠   arc   

一、yum安裝pgsql10
二、

一、yum安裝pgsql10

  1. 先安裝pgsql
    環境centos 7 64位
    資料庫:pg10dev
    參考網址:
    http://blog.csdn.net/silenceray/article/details/70577610

建立使用者

[[email protected] ~]#useradd postgres

配置你的yum存放庫

[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base] 和[updates] 區段之間添加:
exclude=postgresql*

安裝pg的rpm檔案

[[email protected] ~]# yum localinstall https://download.postgresql.org/pub/repos/yum/testing/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm

安裝pg資料庫
[[email protected] ~]# yum list postgresql*

[[email protected] ~]# yum install postgresql10-server.x86_64
[[email protected] ~]# mkdir postgres /var/lib/pgsql/10/data
初始化資料庫
[[email protected] ~]# /usr/pgsql-10/bin/postgresql10-setup initdb
Initializing database ... OK

[[email protected] ~]# su - postgres

[[email protected] ~]$ /usr/pgsql-10/bin/pg_ctl -D /var/lib/pgsql/10/data start

[[email protected] ~]$ /usr/pgsql-10/bin/psql -p 5432
psql (10devel)
輸入 "help" 來擷取協助資訊.

postgres=#

安裝完成!

  1. 配置pgsql,使用戶端能訪問
    2.1 改密碼
    (1)su postgres
    (2) psql -U postgres -p5433
    (3)alter user postgres with password ‘postgres‘ ;

2.2 修改設定檔,允許遠程登陸。
和pg_hba.conf一個目錄下的,postgresql.conf,

    listen_addresses = ‘localhost‘ ,改成listen_addresses = ‘*‘

2.3 修改連接埠

測試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.