- 论坛徽章:
- 0
|
回复 #1 PinkOrient 的帖子
补充1:
/etc/cluster/cluster.conf
<?xml version="1.0"?>
<cluster config_version="32" name="eadb_cluster">
<quorumd interval="2" label="quodisk" min_score="1" tko="10" votes="3">
<heuristic interval="2" program="ping 10.82.114.1 -c1 -t1" score="1"/>
</quorumd>
<fence_daemon post_fail_delay="0" post_join_delay="3"/>
<clusternodes>
<clusternode name="eadb01.smartone.com" nodeid="1" votes="1">
<fence>
<method name="1">
<device name="eadb01_ilo"/>
</method>
</fence>
</clusternode>
<clusternode name="eadb02.smartone.com" nodeid="2" votes="1">
<fence>
<method name="1">
<device name="eadb02_ilo"/>
</method>
</fence>
</clusternode>
</clusternodes>
<cman/>
<fencedevices>
<fencedevice agent="fence_ilo" hostname="192.168.0.10" login="Administrator" name="eadb01_ilo" passwd="password"/>
<fencedevice agent="fence_ilo" hostname="192.168.0.11" login="Administrator" name="eadb02_ilo" passwd="password"/>
</fencedevices>
<rm>
<failoverdomains>
<failoverdomain name="eadb_fd" ordered="0" restricted="0">
<failoverdomainnode name="eadb01.smartone.com" priority="1"/>
<failoverdomainnode name="eadb02.smartone.com" priority="1"/>
</failoverdomain>
<failoverdomain name="eadb_service" ordered="0" restricted="0">
<failoverdomainnode name="eadb01.smartone.com" priority="1"/>
<failoverdomainnode name="eadb02.smartone.com" priority="1"/>
</failoverdomain>
</failoverdomains>
<resources>
<ip address="10.82.114.4" monitor_link="1"/>
<script file="/etc/rc.d/init.d/vsftpd" name="vsftpd"/>
<clusterfs device="/dev/VolGroup00/LogVol00" force_unmount="1" fsid="53287" fstype="gfs" mountpoint="/gfs1" name="gfs_db_space" options=""/>
<clusterfs device="/dev/VolGroup01/LogVol01" force_unmount="1" fsid="1552" fstype="gfs" mountpoint="/gfs2" name="gfs_eadb_space" options=""/>
<mysql config_file="/etc/my.cnf" listen_address="0.0.0.0" mysql_options="" name="mysql_eadb" shutdown_wait="0"/>
<script file="/etc/init.d/tomcat_eadb" name="tomcat_eadb"/>
<tomcat-5 catalina_base="eadbmgr" catalina_options="/gfs2/eadb/jakarta-tomcat-5.0.30/conf" config_file="eadb_tomcat" name="/gfs2/eadb/jakarta-tomcat-5.0.30/conf/Catalina" shutdown_wait="" tomcat_user=""/>
<script file="/etc/init.d/tomcat5" name="tomcat"/>
<ip address="10.30.7.185" monitor_link="1"/>
<script file="/etc/init.d/my_sample" name="my_sample"/>
</resources>
<service autostart="1" domain="eadb_fd" name="vsftpd">
<script ref="vsftpd"/>
<ip ref="10.82.114.4"/>
<ip ref="10.30.7.185"/>
</service>
<service autostart="1" domain="eadb_service" exclusive="1" name="eadb">
<ip ref="10.82.114.4"/>
<clusterfs ref="gfs_db_space"/>
<clusterfs ref="gfs_eadb_space"/>
<mysql ref="mysql_eadb"/>
<script ref="tomcat_eadb"/>
<ip ref="10.30.7.185"/>
</service>
<service autostart="1" domain="eadb_service" name="tc">
<ip ref="10.82.114.4"/>
<script ref="tomcat"/>
</service>
<service autostart="1" exclusive="1" name="mysql">
<ip ref="10.82.114.4"/>
<ip ref="10.30.7.185"/>
<clusterfs ref="gfs_db_space"/>
<mysql ref="mysql_eadb"/>
</service>
<service autostart="1" domain="eadb_fd" name="sample" recovery="restart">
<ip ref="10.82.114.4"/>
<script ref="my_sample"/>
</service>
</rm>
</cluster>
==================
补充2:
my_sample service脚本调用的 perl script, eadb_sm.pl
#!/usr/bin/perl
use Socket;
# make the socket
socket(SERVER, PF_INET, SOCK_STREAM, getprotobyname('tcp'));
# so we can restart our server quickly
setsockopt(SERVER, SOL_SOCKET, SO_REUSEADDR, 1);
# build up my socket address
$ip="10.82.114.4";
$port=9999;
#$my_addr = sockaddr_in($port, INADDR_ANY);
$my_addr = sockaddr_in($port, inet_aton($ip));
bind(SERVER, $my_addr)
or die "Couldn't bind to port $server_port : $!\n";
# establish a queue for incoming connections
listen(SERVER, SOMAXCONN)
or die "Couldn't listen on port $server_port : $!\n";
# accept and process connections
while (accept(CLIENT, SERVER)) {
# do something with CLIENT
while(1) {
print stderr "Someone connected\n";
$bs = sysread(CLIENT, $buff, 204 ;
if ($bs) {
($l, $s) = unpack("na*", $buff);
print stderr "Received: $l bytes, content:\n $s\n";
$tmp = "Received!!!";
$tosend = pack("na*", length($tmp), $tmp);
$bs = syswrite(CLIENT, $tosend);
if ($bs) {
print stderr "Sent: $tmp\n";
print stderr "=======================================\n";
} else {
print stderr "failed to send, exit";
}
last;
} else {
#print stderr "Nothing comes sleep for a while\n";
#sleep(1);
next;
}
}
close(CLIENT);
print stderr "Disconnected\n";
}
close(SERVER);
==================
补充3:
/var/log/messages信息
起vsftpd之前有注册floating ip,起另外一个没有
=====================
Nov 20 17:26:52 eadb01 clurgmgrd[1577]: <notice> Starting disabled service service:vsftpd
Nov 20 17:26:52 eadb01 avahi-daemon[7970]: Registering new address record for 10.82.114.4 on bond0.
Nov 20 17:26:53 eadb01 avahi-daemon[7970]: Registering new address record for 10.30.7.185 on bond1.
Nov 20 17:26:55 eadb01 clurgmgrd[1577]: <notice> Service service:vsftpd started
Nov 20 17:26:57 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33631
Nov 20 17:27:28 eadb01 last message repeated 3 times
Nov 20 17:27:45 eadb01 last message repeated 2 times
Nov 20 17:28:00 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:28:00 eadb01 snmpd[5659]: Received SNMP packet(s) from UDP: [127.0.0.1]:33632
Nov 20 17:28:10 eadb01 clurgmgrd[1577]: <notice> Stopping service service:vsftpd
Nov 20 17:28:11 eadb01 avahi-daemon[7970]: Withdrawing address record for 10.30.7.185 on bond1.
Nov 20 17:28:15 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:28:16 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:28:21 eadb01 avahi-daemon[7970]: Withdrawing address record for 10.82.114.4 on bond0.
Nov 20 17:28:31 eadb01 clurgmgrd[1577]: <notice> Service service:vsftpd is disabled
Nov 20 17:28:31 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:28:35 eadb01 clurgmgrd[1577]: <notice> Starting disabled service service:sample
Nov 20 17:28:35 eadb01 clurgmgrd[1577]: <notice> Service service:sample started
Nov 20 17:28:43 eadb01 clurgmgrd: [1577]: <err> script:my_sample: status of /etc/init.d/my_sample failed (returned 2)
Nov 20 17:28:43 eadb01 clurgmgrd[1577]: <notice> status on script "my_sample" returned 1 (generic error)
Nov 20 17:28:43 eadb01 clurgmgrd[1577]: <notice> Stopping service service:sample
Nov 20 17:28:43 eadb01 clurgmgrd[1577]: <notice> Service service:sample is recovering
Nov 20 17:28:44 eadb01 clurgmgrd[1577]: <notice> Service service:sample is now running on member 2
Nov 20 17:28:46 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:29:17 eadb01 last message repeated 3 times
Nov 20 17:29:33 eadb01 last message repeated 2 times
Nov 20 17:29:43 eadb01 clurgmgrd[1577]: <notice> Stopping service service:sample
Nov 20 17:29:43 eadb01 clurgmgrd[1577]: <notice> Service service:sample is disabled
Nov 20 17:29:48 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:29:49 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33632
Nov 20 17:30:04 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33634
Nov 20 17:30:04 eadb01 snmpd[5659]: Received SNMP packet(s) from UDP: [127.0.0.1]:33634
Nov 20 17:30:05 eadb01 clurgmgrd[1577]: <notice> Starting disabled service service:sample
Nov 20 17:30:05 eadb01 clurgmgrd[1577]: <notice> Service service:sample started
Nov 20 17:30:13 eadb01 clurgmgrd: [1577]: <err> script:my_sample: status of /etc/init.d/my_sample failed (returned 2)
Nov 20 17:30:13 eadb01 clurgmgrd[1577]: <notice> status on script "my_sample" returned 1 (generic error)
Nov 20 17:30:13 eadb01 clurgmgrd[1577]: <notice> Stopping service service:sample
Nov 20 17:30:13 eadb01 clurgmgrd[1577]: <notice> Service service:sample is recovering
Nov 20 17:30:14 eadb01 clurgmgrd[1577]: <notice> Service service:sample is now running on member 2
Nov 20 17:30:19 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33634
Nov 20 17:30:20 eadb01 snmpd[5659]: Connection from UDP: [127.0.0.1]:33634
Nov 20 17:30:27 eadb01 clurgmgrd[1577]: <notice> Stopping service service:sample
Nov 20 17:30:27 eadb01 clurgmgrd[1577]: <notice> Service service:sample is stopped
Nov 20 17:30:27 eadb01 clurgmgrd[1577]: <notice> Starting stopped service service:sample
Nov 20 17:30:27 eadb01 clurgmgrd[1577]: <notice> Service service:sample started
Nov 20 17:30:30 eadb01 clurgmgrd[1577]: <notice> Stopping service service:sample
Nov 20 17:30:30 eadb01 clurgmgrd[1577]: <notice> Service service:sample is disabled |
|