当前位置: 首页 > news >正文

专业零基础网站建设教学服务中国最好网站建设公司排名

专业零基础网站建设教学服务,中国最好网站建设公司排名,绿茶直播,好看的友情链接代码​ 案例说明#xff1a; KingbaseES V8R3集群默认在触发failover切换后#xff0c;为保证数据安全#xff0c;原主库需要通过人工介入后#xff0c;恢复为新的备库加入到集群。在无人值守的现场环境#xff0c;需要在触发failover切换后#xff0c;主库可以自动恢复为新备… ​ 案例说明 KingbaseES V8R3集群默认在触发failover切换后为保证数据安全原主库需要通过人工介入后恢复为新的备库加入到集群。在无人值守的现场环境需要在触发failover切换后主库可以自动恢复为新备考加入集群提升架构的高可用性。 适用版本 KingbaseES V8R3 集群架构 node_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replicatio n_delay ----------------------------------------------------------------------------------------------------- --------0 | 192.168.1.101 | 54321 | up | 0.500000 | standby | 0 | true | 01 | 192.168.1.102 | 54321 | up | 0.500000 | primary | 0 | false | 0 (2 rows) 一、配置AUTO_PRIMARY_RECOVERY参数 Tips AUTO_PRIMARY_RECOVERY参数配置在HAmodule.conf文件中需要修改db和kingbasecluster目录下相关配置文件。 [kingbasenode102 bin]$ cat ../etc/HAmodule.conf |grep -i auto #automatic recovery log path.example:RECOVERY_LOG_DIR./log/recovery.log #whether to turn on automatic recovery,0-off,1-on.example:AUTO_PRIMARY_RECOVERY1 AUTO_PRIMARY_RECOVERY0---如上所示默认AUTO_PRIMARY_RECOVERY0不支持主库在failover切换后自动降为备库加入到集群。 如下图所示配置主库自动恢复 二、failover切换测试 1、模拟主库数据库服务down [kingbasenode102 bin]$ ./sys_ctl stop -D ../data waiting for server to shut down.... done server stopped 2、切换后集群节点状态 TEST# show pool_nodes;node_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replicatio n_delay ----------------------------------------------------------------------------------------------------- --------0 | 192.168.1.101 | 54321 | up | 0.500000 | primary | 0 | true | 01 | 192.168.1.102 | 54321 | up | 0.500000 | standby | 0 | false | 0 (2 rows)---如上所示failover切换后集群恢复正常原主库(102)作为备库加入到集群。 3、主备流复制状态 TEST# select * from sys_stat_replication;PID | USESYSID | USENAME | APPLICATION_NAME | CLIENT_ADDR | CLIENT_HOSTNAME | CLIENT_PORT | BACK END_START | BACKEND_XMIN | STATE | SENT_LOCATION | WRITE_LOCATION | FLUSH_LOCATION | REPLAY_LOCAT ION | SYNC_PRIORITY | SYNC_STATE ------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- -------------------------------16942 | 10 | SYSTEM | node2 | 192.168.1.102 | | 16773 | 2023-02-22 1 4:29:08.87099808 | | streaming | 0/D001FDF0 | 0/D001FDF0 | 0/D001FDF0 | 0/D001FDF0| 2 | sync (1 row) 三、查看failover切换日志 如下所示执行failover_stream.sh触发failover切换。 1、新主库failover.log -----------------2023-02-22 14:28:13 failover beging--------------------------------------- ----failover-stats is %H hostname of the new master node [192.168.1.101], %P old primary node id [1], %d node id[1], %h host name [192.168.1.102], %O old primary host[192.168.1.102] %m new master node id [0], %M old master node id [0], %D database cluster path [/home/kingbase/cluster/HAR3/db/data]. ----ping trust ip ping trust ip 192.168.1.1 success ping times :[3], success times:[2] ----determine whether the faulty db is master or standby master down, let 192.168.1.101 become new primary.....2023-02-22 14:28:15 del old primary VIP on 192.168.1.102 es_client connect host:192.168.1.102 success, will stop old primary db and del the vip stop the old primary db DEL VIP NOW AT 2023-02-22 14:28:15 ON enp0s3 sys_ctl: PID file /home/kingbase/cluster/HAR3/db/data/kingbase.pid does not exist Is server running? execute: [/sbin/ip addr del 192.168.1.204/24 dev enp0s3] Oprate del ip cmd end. 2023-02-22 14:28:15 add VIP on 192.168.1.101 ADD VIP NOW AT 2023-02-22 14:28:15 ON enp0s3 execute: [/sbin/ip addr add 192.168.1.204/24 dev enp0s3 label enp0s3:2] execute: /home/kingbase/cluster/HAR3/db/bin//arping -U 192.168.1.204 -I enp0s3 -w 1 Success to send 1 packets 2023-02-22 14:28:15 promote begin...let 192.168.1.101 become master check db if is alive ksql port54321 userSUPERMANAGER_V8ADMIN dbnameTEST connect_timeout10 -c select 33333; 2023-02-22 14:28:16 kingbase is ok , to prepare execute promote execute promote server promoting check db if is alive after promote ksql port54321 userSUPERMANAGER_V8ADMIN dbnameTEST connect_timeout10 -c select 33333; 2023-02-22 14:28:16 after execute promote , kingbase status is ok. after execute promote, kingbase is ok. 2023-02-22 14:28:16 sync to async ALTER SYSTEMSYS_RELOAD_CONF -----------------t (1 row)2023-02-22 14:28:16 make checkpoint check the db to see if it is alive ksql port54321 userSUPERMANAGER_V8ADMIN dbnameTEST connect_timeout10 -c select 33333; 2023-02-22 14:28:16 kingbase is ok , to prepare execute checkpoint execute checkpoint CHECKPOINT check the db to see if it is alive after execute checkpoint ksql port54321 userSUPERMANAGER_V8ADMIN dbnameTEST connect_timeout10 -c select 33333; 2023-02-22 14:28:16 after execute checkpoint, kingbase is ok. after execute checkpoint, kingbase is ok. -----------------2023-02-22 14:28:16 failover end--------------------------------------- 2、原主库recovery.log 如下所示在failover切换后通过sys_rewind将原主库恢复为备库并加入到集群。 --------------------------------------------------------------------- 2023-02-22 14:29:01 recover beging... my pid is 21729,officially began to perform recovery 2023-02-22 14:29:01 check read/write on mount point 2023-02-22 14:29:01 check read/write on mount point (1 / 6). 2023-02-22 14:29:01 stat the directory of the mount point /home/kingbase/cluster/HAR3/db/data ... 2023-02-22 14:29:01 stat the directory of the mount point /home/kingbase/cluster/HAR3/db/data ... OK 2023-02-22 14:29:01 create/write the file /home/kingbase/cluster/HAR3/db/data/rw_status_file_625758242 ... ........ 2023-02-22 14:29:01 success to check read/write on mount point (1 / 6). 2023-02-22 14:29:01 check read/write on mount point ... ok 2023-02-22 14:29:01 check if the network is ok ping trust ip 192.168.1.1 success ping times :[3], success times:[2] determine if i am master or standbynode_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replication_delay -------------------------------------------------------------------------------------------------------------0 | 192.168.1.101 | 54321 | up | 0.500000 | primary | 0 | true | 01 | 192.168.1.102 | 54321 | down | 0.500000 | standby | 0 | false | 0 (2 rows)i am standby in cluster,determine if recovery is needed 2023-02-22 14:29:03 now will del vip [192.168.1.204/24] now, there is no 192.168.1.204/24 on my DEV sys_ctl: PID file /home/kingbase/cluster/HAR3/db/data/kingbase.pid does not exist Is server running? primary node/Im node status is changed, primary ip[192.168.1.101], recovery.conf NEED_CHANGE [1] (0 is need ), I,m status is [2] (1 is down), I will be in recovery.node_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replication_delay -------------------------------------------------------------------------------------------------------------0 | 192.168.1.101 | 54321 | up | 0.500000 | primary | 0 | true | 01 | 192.168.1.102 | 54321 | down | 0.500000 | standby | 0 | false | 0 (2 rows)if recover node up, let it down , for rewind 2023-02-22 14:29:03 sys_rewind... sys_rewind --target-data/home/kingbase/cluster/HAR3/db/data --source-serverhost192.168.1.101 port54321 userSUPERMANAGER_V8ADMIN dbnameTEST datadir_source /home/kingbase/cluster/HAR3/db/data rewinding from last common checkpoint at 0/CF000028 on timeline 4 find last common checkpoint start time from 2023-02-22 14:29:03.926782 CST to 2023-02-22 14:29:03.985859 CST, in 0.059077 seconds. reading source file list reading target file list reading WAL in target Rewind datadir file from source Get archive xlog list from source Rewind archive log from source update the control file: minRecoveryPoint is 0/D001F0B0, minRecoveryPointTLI is 5, and database state is in archive recovery rewind start wal location 0/CF000028 (file 0000000400000000000000CF), end wal location 0/D001F0B0 (file 0000000500000000000000D0). time from 2023-02-22 14:29:05.926782 CST to 2023-02-22 14:29:06.184927 CST, in 2.258145 seconds. Done!sed conf change #synchronous_standby_names 2023-02-22 14:29:08 file operate cp recovery.conf...change recovery.conf ip - primary.ip 2023-02-22 14:29:08 no need change recovery.conf, primary node is 192.168.1.101 delete pid file if exist del the replication_slots if exist drop the slot [slot_node1]. drop the slot [slot_node2]. 2023-02-22 14:29:08 start up the kingbase... waiting for server to start....LOG: redirecting log output to logging collector process HINT: Future log output will appear in directory /home/kingbase/cluster/HAR3/db/data/sys_log.done server started ksql port54321 userSUPERMANAGER_V8ADMIN dbnameTEST connect_timeout10 -c select 33333;SYS_CREATE_PHYSICAL_REPLICATION_SLOT --------------------------------------(slot_node1,) (1 row)2023-02-22 14:29:10 create the slot [slot_node1] success.SYS_CREATE_PHYSICAL_REPLICATION_SLOT --------------------------------------(slot_node2,) (1 row)2023-02-22 14:29:10 create the slot [slot_node2] success. 2023-02-22 14:29:10 start up standby successful! cluster is sync cluster. SYNC RECOVER MODE ... 2023-02-22 14:29:10 remote primary node change sync ALTER SYSTEMSYS_RELOAD_CONF -----------------t (1 row)SYNC RECOVER MODE DONE 2023-02-22 14:29:13 attach pool... IM Node is 1, will try [pcp_attach_node -U kingbase -W MTIzNDU2 -h 192.168.1.205 -n 1] pcp_attach_node -- Command Successfulnode_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replication_delay -------------------------------------------------------------------------------------------------------------0 | 192.168.1.101 | 54321 | up | 0.500000 | primary | 0 | true | 01 | 192.168.1.102 | 54321 | up | 0.500000 | standby | 0 | false | 0 (2 rows)2023-02-22 14:29:14 attach end.. recovery success,exit script with success --------------------------------------------------------------------- ---如上所示原主库在failover切换后触发auto-recovery被恢复为新的备库加入到集群。
http://www.dnsts.com.cn/news/94923.html

相关文章:

  • 淘宝客网站一般用什么做的网站开发流程图和
  • 重庆铜梁网站建设报价沈阳开发网站公司哪家好
  • 南宁制作企业网站vk汉化网站谁做的
  • 做网站鼎盛徐州关键词优化排名
  • 琼海做球网站wordpress yoast seo
  • 鄞州区建设网站青岛建站公司电话
  • 无锡网站排名哪家好网站开发与维护专业要学什么
  • 网站描述案例郑州it渠道网
  • 智能搭建网站wordpress购买资源插件
  • 彩票网站开发搭建网站空间有哪几种类型
  • 山东省机关建设网站库房出入库管理软件
  • 设计购物网站在谷歌上怎么做网页
  • 哈尔滨网站建设哪家好在凡科做的网站怎么推广
  • 专题网站建设培训心得体会总结简短
  • 微信小程序做直播网站网站建设案例 央视网
  • 学习网站免费品牌建设理论包括哪些内容
  • 越城区建设和交通运输局网站服装网站建设优点有哪些
  • pc和移动版网站公司网站的关键词推广怎么做
  • 单页网站如何做排名seo资料网
  • 二手书网站开发需求分析eclipse可以做网站嘛
  • 传奇背景图网站怎么做合肥工程建设信息平台
  • 天合建设集团网站安徽六安发现一例新冠阳性检测者
  • 织梦网站上传保存文档wordpress进不去后台
  • 微网站 留言板网站织梦模板
  • 网站建设下坡路牛股大转盘网站建设
  • 工程建设信息官方网站wordpress注册模板下载
  • python做视频网站视频特效制作软件
  • 建网站价格 建设网站需要多少钱2024年个体工商户年报怎么填
  • 山东网站空间网站优化的主要目的是什么
  • 影视网站搭建哪个系统好修改wordpress地址