生產環境postgresql主從環境配置

來源:互聯網
上載者:User

標籤:keep   tables   password   同步資料   orm   min   .com   安裝軟體   ipo   

主從伺服器IP:

192.168.11.131 postgreSQL master

192.168.11.132 postgreSQL slave


伺服器系統版本:

# cat /etc/redhat-release 

Red Hat Enterprise Linux Server release 7.2 (Maipo)


PG版本:

系統預設9.2 


1、安裝軟體、配置環境變數

主從伺服器:

# yum install postgresql -y

# yum install postgresql-server -y


# mkdir /data/pg_data

# chown postgres:postgres /data/pg_data


# vi /etc/profile

export PGDATA=/data/pg_data


# source /etc/profile


主伺服器:

2、初始化資料庫、啟動資料庫服務並設定為開機啟動

# initdb -D /data/pg_data


注意:

-D是指定資料存放目錄,預設情況下是存放在/var/lib/pgsql/data目錄下,但是生產環境通常有單獨的資料存放分區。


# su postgres

bash-4.2$ pg_ctl -D /data/pg_data start


bash-4.2$ exit


# vi /etc/rc.d/rc.local

/usr/bin/postgres -D /data/pg_data


3、建立同步處理的使用者

# su postgres

bash-4.2$ psql


postgres=# create role repuser login replication encrypted password 'password123';


postgres=# \q


注意:

這裡建立的使用者是repuser,密碼是password123,你可以根據需要隨意配置。


4、修改設定檔pg_hba.conf、postgresql.conf

bash-4.2$ vi /data/pg_data/pg_hba.conf

host    replication     repuser            192.168.11.0/8             md5

host    all             all             192.168.11.0/8              trust


bash-4.2$ vi /data/pg_data/postgresql.conf

添加下面配置,設定檔有下面配置的要刪除(包括前邊有警號'#'的)

listen_addresses = '192.168.11.131'

wal_level = hot_standby

max_wal_senders= 6

wal_keep_segments = 10240

max_connections = 512

archive_mode = on 

archive_command = 'cp %p /data/pg_data/pg_archive/%f'


注意:

這裡的配置archive_command需要根據實際配置做出改變。


重啟使配置生效

bash-4.2$ pg_ctl -D /data/pg_data restart


從伺服器:

5、同步資料

bash-4.2$ pg_basebackup -h 192.168.11.131 -U repuser -D /data/pg_data -X stream -P

Password: 

36413/36413 kB (100%), 1/1 tablespace


6、修改設定檔recovery.conf、postgresql.conf

bash-4.2$ cp /usr/share/pgsql/recovery.conf.sample /data/pg_data/recovery.conf


bash-4.2$ vi /data/pg_data/recovery.conf

添加下面配置,設定檔有下面配置的要刪除(包括前邊有警號'#'的)

standby_mode = on

primary_conninfo = 'host=192.168.11.131 port=5432 user=repuser password=password123 keepalives_idle=60'

recovery_target_timeline = 'latest


注意:

這裡的user就是之前建立的同步資料的使用者,密碼也是響應的密碼。


bash-4.2$ vi /data/pg_data/postgresql.conf

添加下面配置,設定檔有下面配置的要刪除(包括前邊有警號'#'的)

listen_addresses = '192.168.11.132'

wal_level = hot_standby

max_connections = 1000

hot_standby = on

max_standby_streaming_delay = 30s

wal_receiver_status_interval = 10s

hot_standby_feedback = on


bash-4.2$ exit


7、啟動服務並設定開機啟動

# chmod 700 /data/pg_data


# vi /etc/rc.d/rc.local

/usr/bin/postgres -D /data/pg_data


# su postgres


bash-4.2$ pg_ctl -D /data/pg_data start


8、驗證

主伺服器:

bash-4.2$ psql


postgres=# select client_addr,sync_state from pg_stat_replication;

 client_addr  | sync_state 

--------------+------------

 192.168.11.132 | async


 postgres=# create database test;

CREATE DATABASE


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

 test      | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 

(4 rows)


從伺服器:

# su postgres


bash-4.2$ 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

 test      | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 

(4 rows)


9、建立資料庫、訪問使用者並給資料庫賦權

主伺服器

postgres=# create user pgone with password 'password321'; 

CREATE ROLE


postgres=# create database pgdata owner pgone;

CREATE DATABASE


postgres=# grant all privileges on database pgdata to pgone;

GRANT

參考:

https://www.cnblogs.com/sunshine-long/p/9059695.html


生產環境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.