39 lines
787 B
Plaintext
39 lines
787 B
Plaintext
system sh/stop_dnodes.sh
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
system sh/deploy.sh -n dnode2 -i 2
|
|
|
|
print ========== step1 dnode2 start
|
|
system sh/exec_up.sh -n dnode2 -s start
|
|
sql connect
|
|
|
|
print ========== step2 connect to dnode2
|
|
sql create dnode $hostname1
|
|
system sh/exec_up.sh -n dnode1 -s start
|
|
sleep 3000
|
|
|
|
print ========== step3
|
|
sql show dnodes
|
|
print dnode1 openvnodes $data3_1
|
|
print dnode2 openvnodes $data3_2
|
|
print dnode1 totalvnodes $data4_1
|
|
print dnode2 totalvnodes $data4_2
|
|
|
|
if $rows != 2 then
|
|
return -1
|
|
endi
|
|
if $data3_1 != 0 then
|
|
return -1
|
|
endi
|
|
if $data3_2 != 0 then
|
|
return -1
|
|
endi
|
|
if $data4_1 != 4 then
|
|
return -1
|
|
endi
|
|
if $data4_2 != 4 then
|
|
return -1
|
|
endi
|
|
|
|
system sh/exec_up.sh -n dnode1 -s stop
|
|
system sh/exec_up.sh -n dnode2 -s stop
|
|
system sh/exec_up.sh -n dnode3 -s stop |