ssh-keygen -t rsa
ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.10.103
二 数据库授权
grant all privileges on *.* TO mha@'192.168.%' IDENTIFIED BY 'test';
三 配额文件
/etc/masterha_default.cnf
[server default]
user=mha
password=test
ssh_user=root
master_binlog_dir= /zx/mysql/data
remote_workdir=/var/log/mha/app1
# secondary_check_script= masterha_secondary_check -s master1 -s master2
ping_interval=3
master_ip_failover_script=/etc/mha/scripts/master_ip_failover
# shutdown_script= /etc/mha/scripts/power_manager
# report_script= /etc/mha/scripts/send_master_failover_mail
#master_ip_online_change_script=/etc/mha/scripts/master_ip_online_change
[root@manager mha]# cat /etc/mha/app1.cnf
[server default]
manager_log=/var/log/mha/app1/manager.log
manager_workdir=/var/log/mha/app1.log
master_binlog_dir=/zx/mysql/data
password=test
ping_interval=2
repl_password=zhangxu
repl_user=repl_user
ssh_user=root
user=mha
[server1]
candidate_master=1
check_repl_delay=0
hostname=master2
port=3306
[server2]
candidate_master=1
check_repl_delay=0
hostname=master1
port=3306
[root@manager mha]# cat scripts/master_ip_failover
#!/usr/bin/env perl
use strict;
use warnings FATAL => 'all';
use Getopt::Long;
my (
$command, $ssh_user, $orig_master_host, $orig_master_ip,
$orig_master_port, $new_master_host, $new_master_ip, $new_master_port
);
my $vip = '192.168.248.100'; # Virtual IP
my $gateway = '192.168.1.1';#Gateway IP
my $interface = 'eth2';
my $key = "1";
my $ssh_start_vip = "/sbin/ifconfig $interface:$key $vip;/sbin/arping -I $interface -c 3 -s $vip $gateway >/dev/null 2>&1";
my $ssh_stop_vip = "/sbin/ifconfig $interface:$key down";
GetOptions(
'command=s' => \$command,
'ssh_user=s' => \$ssh_user,
'orig_master_host=s' => \$orig_master_host,
'orig_master_ip=s' => \$orig_master_ip,
'orig_master_port=i' => \$orig_master_port,
'new_master_host=s' => \$new_master_host,
'new_master_ip=s' => \$new_master_ip,
'new_master_port=i' => \$new_master_port,
);
exit &main();
sub main {
print "\n\nIN SCRIPT TEST====$ssh_stop_vip==$ssh_start_vip===\n\n";
if ( $command eq "stop" || $command eq "stopssh" ) {
# $orig_master_host, $orig_master_ip, $orig_master_port are passed.
# If you manage master ip address at global catalog database,
# invalidate orig_master_ip here.
my $exit_code = 1;
eval {
print "Disabling the VIP on old master: $orig_master_host \n";
&stop_vip();
$exit_code = 0;
};
if ($@) {
warn "Got Error: $@\n";
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "start" ) {
# all arguments are passed.
# If you manage master ip address at global catalog database,
# activate new_master_ip here.
# You can also grant write access (create user, set read_only=0, etc) here.
my $exit_code = 10;
eval {
print "Enabling the VIP - $vip on the new master - $new_master_host \n";
&start_vip();
$exit_code = 0;
};
if ($@) {
warn $@;
exit $exit_code;
}
exit $exit_code;
}
elsif ( $command eq "status" ) {
print "Checking the Status of the script.. OK \n";
`ssh $ssh_user\@$orig_master_host \" $ssh_start_vip \"`;
exit 0;
}
else {
&usage();
exit 1;
}
}
# A simple system call that enable the VIP on the new master
sub start_vip() {
`ssh $ssh_user\@$new_master_host \" $ssh_start_vip \"`;
}
# A simple system call that disable the VIP on the old_master
sub stop_vip() {
`ssh $ssh_user\@$orig_master_host \" $ssh_stop_vip \"`;
}
sub usage {
"Usage: master_ip_failover --command=start|stop|stopssh|status --orig_master_host=host --orig_master_ip=ip --orig_master_port=port --new_master_host=host --new_master_ip=ip --new_master_port=port\n";
}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机MHA 学习(二) 配置文件
数据库2024-04-02
数据库中间件DBLE学习(二) 学习配置schema.xml
数据库2015-12-08
python学习之读取配置文件
数据库2024-04-02
ThinkPHP5文档学习——配置
数据库2023-09-02
PyCharm学习笔记(二) 调试配置
数据库2023-01-30
caffe的python接口生成配置文件学习
数据库2024-04-02
go学习笔记读取consul配置文件详解
数据库2024-04-02
scrapy 爬虫学习二[中间件的学习]
数据库2023-01-31
mongo shell启动配置文件.mongorc.js(二)
数据库2024-04-02
Android学习笔记(二)App工程文件分析
数据库2022-06-06
Django学习之配置篇
数据库2023-01-30
学习python的第十二天(文件的详细操
数据库2023-01-31
Python学习:文件(file)
数据库2023-01-31
Jspxcms二次开发的配置文件有哪些
数据库2023-06-26
最全面的SpringBoot教程(二)——SpringBoot配置文件
数据库2023-09-01
MySQL主从配置学习笔记
数据库2022-05-12
Android学习之旅--安装配置
数据库2022-06-06
Python学习 :文件操作
数据库2023-01-30
Python学习—文件操作
数据库2023-01-31
咦!没有更多了?去看看其它编程学习网 内容吧