configure problem about failsafe

"Jason.Xue" <[email protected]> Thu, 11 Jul 2002 21:12:57 +0800
Newsgroups gmane.linux.failsafe
Message-ID <[email protected]>
Hi, all

I have writen all the node define and cluster define in one of the two host in the cluster,( as following  xfs1), it return that my define is successful.

then, I start the cluster,check the node info and cluster info from the other host (xfs3), I can see the node xfs1's info,but can't see the xfs3's info, and also can't see the cluster info on host xfs3 ,it always show me that:

cmgr> show cluster myxfs
Could not obtain information for cluster myxfs
Reason: Cluster Admin info not found for cluster (myxfs).Cluster Admin info not found for cluster (myxfs).

Failed to show:
        cluster

show command failed


And also, I can't define cluster from host xfs3,even when I stop the cluster on all the two hosts. I don't know what's the reson,and how can I continue?Must I define the node and cluster fromm all the two node? How can I do it?

======================

my define is as following:
======================


define node xfs1
set hostname to xfs1.fs
set nodeid to 1
set is_failsafe to true
set sysctrl_type to null
set sysctrl_status to enabled
set sysctrl_password to none
set sysctrl_owner to xfs3
set sysctrl_device to /dev/ttyS0
set sysctrl_owner_type to tty
add nic 192.168.9.141

set heartbeat to true
set ctrl_msgs to true
set priority to 1
done

add nic 192.168.3.1
set heartbeat to true
set ctrl_msgs to true
set priority to 2
done
done


define node xfs3
set hostname to xfs3.fs
set nodeid to 3
set is_failsafe to true
set sysctrl_type to null
set sysctrl_status to enabled
set sysctrl_password to none
set sysctrl_owner to xfs1
set sysctrl_device to /dev/ttyS0
set sysctrl_owner_type to tty
add nic 192.168.9.145

set heartbeat to true
set ctrl_msgs to true
set priority to 1
done

add nic 192.168.3.3
set heartbeat to true
set ctrl_msgs to true
set priority to 2
done
done

define cluster myxfs
set is_failsafe to true
add node xfs1
add node xfs3
done



==============================
my system is as following
==========================

     ================================Public Network========================================           
              	|                                             			|
		| 192.168.9.141							| 192.168.9.143
	+-------eth0-----+ 						+-------eth0-----+
	|             eth1[192.168.3.1]---------------------[192.168.3.3]eth1            | 
	|    Host A      |						|      Host B    |
	|               COM0-------------------------------------------COM0              |
	+-------+--------+						+-------+--------+
		|								|
		|								|
		|			+---------------+			|		
		+----------------------	|   Shared SCSI	|-----------------------+
					|   Disk Array	|
					+---------------+

 My cluster include two host, they are connect by two ethernet  line ( one to public network and one to private network) and a serial line, they are all connect to a shared SCSI disk array. I want to make it a HA NFS server, while a host is working,another standby.

Regards!

Jason.Xue