I'm able to reproduce this behavior with below steps: Set up cluster with two management nodes Start both normally (without --initial or --reload) Shut down both ndb_mgmd nodes Modify configuration on node 1 Start first ndb_mgmd with --initial Start second ndb_mgmd without either --initial or --reload // Current DataDir values [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ grep -A5 "NDB_MGMD" config.ini [NDB_MGMD DEFAULT] [NDB_MGMD] NodeId=1 Hostname=localhost PortNumber=1186 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 -- [NDB_MGMD] NodeId=2 Hostname=localhost PortNumber=11866 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 // Start MGM(1,2) and Datanodes //first mgm [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 Fri Jan 25 08:43:52 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd ushastry 3989 0.4 0.0 779644 3864 ? Ssl 08:43 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 // second mgm [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 Fri Jan 25 08:44:17 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd ushastry 3989 0.4 0.0 779776 3968 ? Ssl 08:43 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 ushastry 4007 0.5 0.0 714108 3912 ? Ssl 08:44 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 //show [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ bin/ndb_mgm -- NDB Cluster -- Management Client -- ndb_mgm> show Connected to Management Server at: localhost:1186 Cluster Configuration --------------------- [ndbd(NDB)] 2 node(s) id=4 (not connected, accepting connect from localhost) id=5 (not connected, accepting connect from localhost) [ndb_mgmd(MGM)] 2 node(s) id=1 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) id=2 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) [mysqld(API)] 3 node(s) id=6 (not connected, accepting connect from any host) id=7 (not connected, accepting connect from any host) id=8 (not connected, accepting connect from any host) ndb_mgm> // stop mgm nodes [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep mgmd ushastry 3989 0.4 0.0 976780 4096 ? Ssl 08:43 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 ushastry 4007 0.4 0.0 714108 3916 ? Ssl 08:44 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 ushastry 4036 0.0 0.0 103152 824 pts/1 S+ 08:47 0:00 grep mgmd [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ kill 3989 4007 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep mgmd|grep -v grep [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ // make changes to Config [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ grep -A5 "NDB_MGMD" config.ini [NDB_MGMD DEFAULT] [NDB_MGMD] NodeId=1 Hostname=localhost PortNumber=1186 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs-new LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 -- [NDB_MGMD] NodeId=2 Hostname=localhost PortNumber=11866 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs-new LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ // bring up mgm 1, start with --initial [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ mkdir cluster-logs-new [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial Fri Jan 25 08:48:29 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep mgmd|grep -v grep ushastry 4049 0.4 0.0 779644 3864 ? Ssl 08:48 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ more cluster-logs-new/ndb_1_cluster.log 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Id: 1, Command port: *:1186 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Node 1: Node 1 Connected 2013-01-25 08:48:29 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Node 1 connected // bring up mgm 2, without --initial [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 Fri Jan 25 08:49:51 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep mgmd|grep -v grep ushastry 4070 3.2 0.0 713712 3540 ? Ssl 08:49 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 // Check cluster log to confirm mgm1 is down [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ more cluster-logs-new/ndb_1_cluster.log 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Id: 1, Command port: *:1186 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Node 1: Node 1 Connected 2013-01-25 08:48:29 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 08:48:29 [MgmtSrvr] INFO -- Node 1 connected 2013-01-25 08:49:51 [MgmtSrvr] INFO -- Node 1: Node 2 Connected 2013-01-25 08:49:51 [MgmtSrvr] WARNING -- Refusing CONGIG_CHECK_REQ from 2, it's not CS_INITIAL (I am). Waiting for my check 2013-01-25 08:49:51 [MgmtSrvr] WARNING -- Refusing CONGIG_CHECK_REQ from 2, it's not CS_INITIAL (I am). Waiting for my check - Repeated 236 times 2013-01-25 08:49:51 [MgmtSrvr] INFO -- Node 2 connected 2013-01-25 08:49:51 [MgmtSrvr] WARNING -- Refusing CONGIG_CHECK_REQ from 2, it's not CS_INITIAL (I am). Waiting for my check 2013-01-25 08:49:51 [MgmtSrvr] ERROR -- This node was started --initial with a config which is _not_ equal to the one node 2 is using. Refusing to start with different con figurations, diff: [ndb_mgmd(MGM)] NodeId=1 -DataDir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs +DataDir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs-new [ndb_mgmd(MGM)] NodeId=2 -DataDir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs +DataDir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/cluster-logs-new // Started both mgm with --initial [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial Fri Jan 25 08:55:32 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd ushastry 4121 0.4 0.0 779644 3864 ? Ssl 08:55 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial ushastry 4134 0.0 0.0 103152 824 pts/1 S+ 08:55 0:00 grep ndb_mgmd [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 --initial Fri Jan 25 08:55:57 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd ushastry 4121 0.4 0.0 779776 3972 ? Ssl 08:55 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial ushastry 4139 0.2 0.0 714108 3912 ? Ssl 08:55 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 --initial ushastry 4153 0.0 0.0 103152 820 pts/1 S+ 08:56 0:00 grep ndb_mgmd [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ //cluster logs 2013-01-25 08:55:32 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 08:55:32 [MgmtSrvr] INFO -- Id: 1, Command port: *:1186 2013-01-25 08:55:32 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 08:55:32 [MgmtSrvr] INFO -- Node 1: Node 1 Connected 2013-01-25 08:55:32 [MgmtSrvr] INFO -- Node 1 connected 2013-01-25 08:55:57 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Id: 2, Command port: *:11866 2013-01-25 08:55:58 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 2: Node 2 Connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 2: Node 1 Connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 1: Node 2 Connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 2 connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Starting initial configuration change 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 1 connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Node 2 connected 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Configuration 1 commited 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Configuration 1 commited 2013-01-25 08:55:58 [MgmtSrvr] INFO -- Config change completed! New generation: 1 // show confirms [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ bin/ndb_mgm -- NDB Cluster -- Management Client -- ndb_mgm> show Connected to Management Server at: localhost:1186 Cluster Configuration --------------------- [ndbd(NDB)] 2 node(s) id=4 (not connected, accepting connect from localhost) id=5 (not connected, accepting connect from localhost) [ndb_mgmd(MGM)] 2 node(s) id=1 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) id=2 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) [mysqld(API)] 3 node(s) id=6 (not connected, accepting connect from any host) id=7 (not connected, accepting connect from any host) id=8 (not connected, accepting connect from any host) ndb_mgm> ================================================================================================================================================ ================================================================================================================================================ ================================================================================================================================================ ================================================================================================================================================ ================================================================================================================================================ But, when I start first ndb_mgmd with --initial and --reload, in that case second ndb_mgmd comes up and also doesn't affect first ndb_mgmd.. Set up cluster with two management nodes Start both normally (without --initial or --reload) Shut down both ndb_mgmd nodes Modify configuration on node 1 Start first ndb_mgmd with --initial and --reload Start second ndb_mgmd without either --initial or --reload // Current DataDir in [ndb_mgmd] groups [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ grep -A5 "NDB_MGMD" config.ini [NDB_MGMD DEFAULT] [NDB_MGMD] NodeId=1 Hostname=localhost PortNumber=1186 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/clusterlog_mgm LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 -- [NDB_MGMD] NodeId=2 Hostname=localhost PortNumber=11866 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/clusterlog_mgm LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 // Started both mgm nodes [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 Fri Jan 25 09:25:41 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 Fri Jan 25 09:25:47 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd|grep -v grep ushastry 4297 0.4 0.0 779776 3968 ? Ssl 09:10 0:04 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial --reload ushastry 4319 0.4 0.0 714240 3940 ? Ssl 09:11 0:03 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ bin/ndb_mgm -- NDB Cluster -- Management Client -- ndb_mgm> show Connected to Management Server at: localhost:1186 Cluster Configuration --------------------- [ndbd(NDB)] 2 node(s) id=4 (not connected, accepting connect from localhost) id=5 (not connected, accepting connect from localhost) [ndb_mgmd(MGM)] 2 node(s) id=1 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) id=2 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) [mysqld(API)] 3 node(s) id=6 (not connected, accepting connect from any host) id=7 (not connected, accepting connect from any host) id=8 (not connected, accepting connect from any host) ndb_mgm> \q Invalid command: \q Type HELP for help. ndb_mgm> quit [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ kill 4297 4319 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd|grep -v grep [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ // Changes to DataDir [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ grep -A5 "NDB_MGMD" config.ini [NDB_MGMD DEFAULT] [NDB_MGMD] NodeId=1 Hostname=localhost PortNumber=1186 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/clusterlogs LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 -- [NDB_MGMD] NodeId=2 Hostname=localhost PortNumber=11866 Datadir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/clusterlogs LogDestination=FILE:filename=ndb_1_cluster.log,maxsize=10000000,maxfiles=6 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ // Starting mgm 1 with both options --initial and --reload, mgm2 without --initial or --reload [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial --reload Fri Jan 25 09:30:28 IST 2013 // confirmed mgm 1 is up [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd|grep -v grep ushastry 4473 0.4 0.0 779644 3864 ? Ssl 09:30 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial --reload [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 Fri Jan 25 09:31:31 IST 2013 // started mgm2 without any options [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ date;echo;bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 Fri Jan 25 09:31:31 IST 2013 MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ // confirmed mgm 1 and 2 are up [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ ps aux|grep ndb_mgmd|grep -v grep ushastry 4473 0.4 0.0 779776 3968 ? Ssl 09:30 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=1 --initial --reload ushastry 4497 0.3 0.0 714108 3912 ? Ssl 09:31 0:00 bin/ndb_mgmd --configdir=/data/ushastry/cluster/mysql-cluster-com-7_1_24_second/ -f config.ini --ndb-nodeid=2 [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ bin/ndb_mgm -- NDB Cluster -- Management Client -- ndb_mgm> show Connected to Management Server at: localhost:1186 Cluster Configuration --------------------- [ndbd(NDB)] 2 node(s) id=4 (not connected, accepting connect from localhost) id=5 (not connected, accepting connect from localhost) [ndb_mgmd(MGM)] 2 node(s) id=1 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) id=2 @127.0.0.1 (mysql-5.1.63 ndb-7.1.24) [mysqld(API)] 3 node(s) id=6 (not connected, accepting connect from any host) id=7 (not connected, accepting connect from any host) id=8 (not connected, accepting connect from any host) ndb_mgm> // cluster log [ushastry@cluster-repo mysql-cluster-com-7_1_24_second]$ tail -f clusterlogs/ndb_1_cluster.log 2013-01-25 09:30:28 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 09:30:29 [MgmtSrvr] INFO -- Id: 1, Command port: *:1186 2013-01-25 09:30:29 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 09:30:29 [MgmtSrvr] INFO -- Node 1: Node 1 Connected 2013-01-25 09:30:29 [MgmtSrvr] INFO -- Node 1 connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Got initial configuration from 'config.ini', will try to set it when all ndb_mgmd(s) started 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Id: 2, Command port: *:11866 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 2: Node 2 Connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- MySQL Cluster Management Server mysql-5.1.63 ndb-7.1.24 started 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 2: Node 1 Connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 2 connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 1: Node 2 Connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 1 connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Node 2 connected 2013-01-25 09:31:31 [MgmtSrvr] INFO -- Starting initial configuration change 2013-01-25 09:31:32 [MgmtSrvr] INFO -- Configuration 1 commited 2013-01-25 09:31:32 [MgmtSrvr] INFO -- Configuration 1 commited 2013-01-25 09:31:32 [MgmtSrvr] INFO -- Config change completed! New generation: 1