⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ping.pm

📁 mysql+ha. 实现高可用性 http://code.google.com/p/mysql-master-master/
💻 PM
字号:
sub PerformCheck($$) {    my ($timeout, $host) = @_;    my $ip = $config->{host}->{$host}->{ip};    return "ERROR: Invalid host" unless ($ip);    # Find appropriate fping version    my $fping_path = "$SELF_DIR/bin/sys/fping";    chomp($fping_path = `which fping`) unless  (-f $fping_path && -x $fping_path && $^O eq 'linux');    unless (-f $fping_path && -x $fping_path) {        return "ERROR: fping is not functional - please, install your own version of fping on this server!";    }        my $res = `$fping_path -q -u -t 500 -C 1 $ip 2>&1`;    return "ERROR" if ($res =~ /$ip.*\-$/);    return "OK";}1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -