91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

POSTGRESQL10.8怎么用源碼安裝主從搭建

發布時間:2021-09-03 14:47:18 來源:億速云 閱讀:146 作者:chen 欄目:關系型數據庫

本篇內容介紹了“POSTGRESQL10.8怎么用源碼安裝主從搭建”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一、下載POSTGRESQL源碼安裝包及主機配置
https://www.postgresql.org/ftp/source/v10.8/
postgresql-10.8.tar.gz

虛擬機環境
node1  192.168.159.4
node2  192.168.159.5

操作系統為redhat7.6
數據庫為postgresql10.8

兩個節點均配置/etc/hosts
vi /etc/hosts
node1  192.168.159.4
node2  192.168.159.5
二、編譯安裝
(1)創建postgres用戶
useradd -m -r -s /bin/bash -u 5432 postgres
(2)安裝相關依賴包
yum install gettext gcc make perl python perl-ExtUtils-Embed   readline-devel   zlib-devel    openssl-devel   libxml2-devel  cmake  gcc-c++ libxslt-devel  openldap-devel  pam-devel  python-devel  cyrus-sasl-devel  libgcrypt-devel  libgpg-error-devel  libstdc++-devel


(3)配置POSTGRES

上傳解壓安裝包
cd /opt/

tar -zxvf  postgresql-10.8.tar.gz

cd /opt/ postgresql-10.8

./configure --prefix=/opt/postgresql-10.8 --with-segsize=8 --with-wal-segsize=64 --with-wal-blocksize=16 --with-blocksize=16 --with-libedit-preferred --with-perl --with-python --with-openssl --with-libxml --with-libxslt --enable-thread-safety --enable-nls=zh_CN

注意編譯的時候一定不要加參數--enable-profiling  --enable-debug  這參數會導致不必要的日志產生,

而且增長極快,會導致磁盤空間迅速爆滿,手動刪除還可能有一些不好的影響,所以不要配這參數就好。

而且這參數說明也是用于測試開發用的,不適用于生產系統

configure 編譯選項:
--prefix=PREFIX 指定安裝目錄,默認為 /usr/local/pgsql
--bindir= 可執行文件目錄,默認 /PREFIX/bin
--sysconfdir= 配置文件目錄,默認 /PREFIX/etc
--libdir= 庫文件目錄,默認 /PREFIX/lib
--includedir= 頭文件目錄,默認 /PREFIX/include
--datarootdir=DATAROOTDIR 設置只讀共享文件目錄,默認為 /PREFIX/share
--mandir= man手冊目錄,默認 /DATAROOTDIR/man
--with-extra-version=STRING 在版本號后面追加 STRING 字符串,用作自定義版本標識
--with-pgport=NUMBER 指定服務器端與客戶端的默認端口號,缺省為 5432
--with-openssl 編譯 ssl 支持,需要事先安裝 OpenSSL 包
--with-pam 編譯 PAM 支持
--with-ldap 編譯 LDAP 支持,需要事先安裝 OpenLDAP 包
--with-segsize= 設定 segment size ,以 gigabytes(GB) 為單位,默認為 1GB ,大型的表會按 segsize 被分割成多個文件
--with-blocksize= 指定塊大小,是表內存儲和 I/O 的基本單位,默認 8Kbytes ,通常無需變更,取值范圍 1-32KB
--with-wal-segsize= 設置 WAL(Write-Ahead Logging) 的 segment size ,以 megabytes(MB) 為單位,默認 16MB ,取值范圍 1-64MB
--with-wal-blocksize= 指定 WAL 的塊大小,這是 WAL 預寫式日志存儲和 I/O 的基本單位,以 Kbytes 為單位,默認 8KB ,取值范圍 1-64KB
--enable-debug (Compiles all programs and libraries with debugging symbols. This means that you can run the programs in a debugger to analyze problems),使用 GCC 編譯器時可用于生產環境,其它編譯器會影響性能;多用于開發
--enable-profiling GCC編譯器下,所有程序和庫將被編譯成可進行性能分析,后端退出時生成的 gmon.out 用于性能分析;多用于開發
--enable-coverage 代碼覆蓋率測試,僅用于開發
--enable-cassert 開啟服務器的 assertion(斷言) 檢查,僅用于開發
--enable-depend (Enables automatic dependency tracking. With this option, the makefiles are set up so that all affected object files will be rebuilt when any header file is changed),僅用于開發
--enable-dtrace 編譯動態追蹤工具 Dtrace 支持,當前尚不能用于 Linux 平臺,可用于 FreeBSD、Solaris
--with-systemd 開啟 systemd 支持,需9.6及以上版本

最后幾行出現以下黃色輸出即配置正確,否則根據報錯提示繼續安裝依賴包

checking thread safety of required library functions... yes

checking whether gcc supports -Wl,--as-needed... yes

configure: using compiler=gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36)

configure: using CFLAGS=-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -pg -DLINUX_PROFILE -O2

configure: using CPPFLAGS= -D_GNU_SOURCE -I/usr/include/libxml2 

configure: using LDFLAGS=  -Wl,--as-needed

configure: creating ./config.status

config.status: creating GNUmakefile

config.status: creating src/Makefile.global

config.status: creating src/include/pg_config.h

config.status: creating src/include/pg_config_ext.h

config.status: creating src/interfaces/ecpg/include/ecpg_config.h

config.status: linking src/backend/port/tas/dummy.s to src/backend/port/tas.s

config.status: linking src/backend/port/dynloader/linux.c to src/backend/port/dynloader.c

config.status: linking src/backend/port/posix_sema.c to src/backend/port/pg_sema.c

config.status: linking src/backend/port/sysv_shmem.c to src/backend/port/pg_shmem.c

config.status: linking src/backend/port/dynloader/linux.h to src/include/dynloader.h

config.status: linking src/include/port/linux.h to src/include/pg_config_os.h

config.status: linking src/makefiles/Makefile.linux to src/Makefile.port

或者馬上輸入echo $?得到輸出是0就可以了

(4)編譯
make && make install

最后幾行出現以下黃色輸出即配置正確

make[2]: 離開目錄“/opt/postgresql-10.8/src/test/perl”

/usr/bin/mkdir -p '/opt/postgresql-10.8/lib/pgxs/src'

/usr/bin/install -c -m 644 Makefile.global '/opt/postgresql-10.8/lib/pgxs/src/Makefile.global'

/usr/bin/install -c -m 644 Makefile.port '/opt/postgresql-10.8/lib/pgxs/src/Makefile.port'

/usr/bin/install -c -m 644 ./Makefile.shlib '/opt/postgresql-10.8/lib/pgxs/src/Makefile.shlib'

/usr/bin/install -c -m 644 ./nls-global.mk '/opt/postgresql-10.8/lib/pgxs/src/nls-global.mk'

make[1]: 離開目錄“/opt/postgresql-10.8/src”

make -C config install

make[1]: 進入目錄“/opt/postgresql-10.8/config”

/usr/bin/mkdir -p '/opt/postgresql-10.8/lib/pgxs/config'

/usr/bin/install -c -m 755 ./install-sh '/opt/postgresql-10.8/lib/pgxs/config/install-sh'

/usr/bin/install -c -m 755 ./missing '/opt/postgresql-10.8/lib/pgxs/config/missing'

make[1]: 離開目錄“/opt/postgresql-10.8/config”

PostgreSQL installation complete.

或者馬上輸入echo $?得到輸出是0就可以了

(5)安裝
make world && make install -world

最后幾行出現以下黃色輸出即配置正確

/usr/bin/mkdir -p '/opt/postgresql-10.8/lib/pgxs/src'

/usr/bin/install -c -m 644 Makefile.global '/opt/postgresql-10.8/lib/pgxs/src/Makefile.global'

/usr/bin/install -c -m 644 Makefile.port '/opt/postgresql-10.8/lib/pgxs/src/Makefile.port'

/usr/bin/install -c -m 644 ./Makefile.shlib '/opt/postgresql-10.8/lib/pgxs/src/Makefile.shlib'

/usr/bin/install -c -m 644 ./nls-global.mk '/opt/postgresql-10.8/lib/pgxs/src/nls-global.mk'

make[1]: 離開目錄“/opt/postgresql-10.8/src”

make -C config install

make[1]: 進入目錄“/opt/postgresql-10.8/config”

/usr/bin/mkdir -p '/opt/postgresql-10.8/lib/pgxs/config'

/usr/bin/install -c -m 755 ./install-sh '/opt/postgresql-10.8/lib/pgxs/config/install-sh'

/usr/bin/install -c -m 755 ./missing '/opt/postgresql-10.8/lib/pgxs/config/missing'

make[1]: 離開目錄“/opt/postgresql-10.8/config”

PostgreSQL installation complete.

make: 離開目錄“/opt/postgresql-10.8”

或者馬上輸入echo $?得到輸出是0就可以了

(6)創建相關目錄及配置環境變量

mkdir -p /home/postgresql10.8/serverlog

mkdir -p /home/postgresql10.8/pg/pgdata


su - postgres
vi .bash_profile  (刪除原來的所有,以下黃色部分直接復制粘貼)
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH

# postgres
#PostgreSQL端口
PGPORT=5432

#PostgreSQL數據目錄
PGDATA=/home/postgresql10.8/pg/pgdata
export PGPORT PGDATA 

#所使用的語言
export LANG=zh_CN.utf8

#PostgreSQL 安裝目錄
export PGHOME=/home/postgresql10.8/pg/pgdata


#PostgreSQL 連接庫文件
export LD_LIBRARY_PATH=$PGHOME/lib:/lib64:/usr/lib64:/usr/local/lib64:/lib:/usr/lib:/usr/local/lib:$LD_LIBRARY_PATH
export DATE=`date +"%Y%m%d%H%M"`

#將PostgreSQL的命令行添加到 PATH 環境變量
export PATH=$PGHOME/bin:$PATH

#PostgreSQL的 man 手冊
export MANPATH=$PGHOME/share/man:$MANPATH

#PostgreSQL的默認用戶
export PGUSER=postgres

#PostgreSQL默認主機地址
export PGHOST=127.0.0.1

#默認的數據庫名
export PGDATABASE=postgres

#定義日志存放目錄
PGLOG="$PGDATA/serverlog"

source .bash_profile

(7)初始化數據庫
#執行數據庫初始化腳本
root用戶登錄

chown -R postgres.postgres /home/postgresql10.8

su - postgres

/opt/postgresql-10.8/bin/initdb --encoding=utf8 -D /home/postgresql10.8/pg/pgdata/

警告:為本地連接啟動了 "trust" 認證.
你可以通過編輯 pg_hba.conf 更改或你下次
行 initdb 時使用 -A或者--auth-local和--auth-host選項.Success. You can now start the database server using:啟動數據庫
su - postgres
/opt/postgresql-10.8/bin/pg_ctl -D '/home/postgresql10.8/pg/pgdata/' -l logfile start
(8)相關命令拷貝
root用戶

mkdir /home/postgresql10.8/pg/pgdata/bin

cp /opt/postgresql-10.8/bin/*  /home/postgresql10.8/pg/pgdata/bin

chown -R postgres.postgres /home/postgresql10.8/pg/pgdata/bin

三、postgresql主從搭建

1、主庫配置

(1)創建一個用戶復制的用戶replica
su - postgres

psql

CREATE ROLE replica login replication encrypted password 'replica';

(2)修改pg_hba.conf文件,指定replica登錄網絡(最后一行添加)

vi /home/postgresql10.8/pg/pgdata/pg_hba.conf

host    replication     replica         192.168.159.0/24        md5

host    all             replica         192.168.159.0/24        md5

host    all             all             192.168.159.0/24        md5

host    all             all             0.0.0.0/0               md5

 
(3)主庫配置文件修改以下幾項,其他不變
vi /home/postgresql10.8/pg/pgdata/postgresql.conf
listen_addresses = '*'
wal_level = hot_standby  #熱備模式
max_wal_senders= 10 #可以設置最多幾個流復制鏈接,差不多有幾個從,就設置多少
wal_keep_segments = 100  #重要配置
wal_send_timeout = 60s
max_connections = 3000 #從庫的 max_connections要大于主庫
archive_mode = on #允許歸檔
archive_command = 'cp %p /home/postgresql10.8/pg/archivedir/%f'   #根據實際情況設置

checkpoint_timeout = 30min
max_wal_size = 2GB
min_wal_size = 1GB

mkdir /home/postgresql10.8/pg/archivedir

2、從庫環境

(1)把備庫的數據文件夾目錄清空

rm -rf /home/postgresql10.8/pg/*

(2)在備庫上運行

/opt/postgresql-10.8/bin/pg_basebackup -F p --progress -D /home/postgresql10.8/pg/pgdata -h 192.168.159.4 -p 5432 -U replica --password

輸入密碼replica 

!!!注意,復制完成后,在備庫一定要將數據目錄下的所有文件重新授權

chown -R postgres.postgres /home/postgresql10.8/pg/pgdata

(3)創建recovery.conf 文件

cp  /opt/postgresql-10.8/share/recovery.conf.sample /home/postgresql10.8/pg/pgdata/recovery.conf

vi /home/postgresql10.8/pg/pgdata/recovery.conf

standby_mode = on

primary_conninfo = 'host=192.168.159.4 port=5432 user=replica password=replica'

recovery_target_timeline = 'latest'

trigger_file = '/home/postgresql10.8/pg/pgdata/trigger.kenyon'

(4)配置postgresql.conf文件
vi /home/postgresql10.8/pg/pgdata/postgresql.conf
listen_addresses ='*'

wal_level = hot_standby

max_connections =1000 #一般從的最大鏈接要大于主的

hot_standby =on  #說明這臺機器不僅僅用于數據歸檔,也用于查詢

max_standby_streaming_delay =30s

wal_receiver_status_interval = 10s  #多久向主報告一次從的狀態

hot_standby_feedback = on   #如果有錯誤的數據復制,是否向主進行范例



(5)啟動備庫

su - postgres
/opt/postgresql-10.8/bin/pg_ctl -D '/home/postgresql10.8/pg/pgdata/' -l logfile start

如果無法啟動,到主庫復制文件postmaster.opts到備庫如下操作:

scp /home/postgresql10.8/pg/pgdata/postmaster.opts 192.168.159.5:/home/postgresql10.8/pg/pgdata/

chown -R postgres.postgres /home/postgresql10.8/pg/pgdata/

cd /home/postgresql10.8/pg/

chmod 700 pgdata/

3、驗證主從功能

主庫查詢

su - postgres

psql

postgres=# select client_addr,sync_state from pg_stat_replication;

   client_addr   | sync_state

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

 192.168.159.5 | async

(1 row)

注意一個問題,生產庫要注意時區問題

找到配置文件postgresql.conf

其中參數

timezone = 'PRC'

PRC代表是上海時區

“POSTGRESQL10.8怎么用源碼安裝主從搭建”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江北区| 安阳市| 曲水县| 沽源县| 白水县| 泰安市| 望都县| 巴青县| 宜兴市| 扶风县| 通化市| 西和县| 卓资县| 驻马店市| 碌曲县| 遵化市| 蓝山县| 边坝县| 牡丹江市| 日土县| 玛沁县| 穆棱市| 万年县| 桃源县| 滁州市| 沈阳市| 平泉县| 江安县| 烟台市| 伊宁市| 揭阳市| 南汇区| 蓝田县| 塔河县| 水城县| 梅河口市| 都兰县| 南昌市| 九寨沟县| 卫辉市| 马山县|