Add license headers
[bottlenecks.git] / rubbos / rubbos_scripts / 1-1-1 / scripts / run.sh
index fd0915d..47cec3a 100755 (executable)
@@ -1,3 +1,15 @@
+#!/bin/bash
+##############################################################################
+# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+set -x
+
 cd /bottlenecks/rubbos/rubbos_scripts/1-1-1
 source set_bottlenecks_rubbos_env.sh
 cd /bottlenecks/rubbos/rubbos_scripts/1-1-1/scripts
@@ -6,6 +18,8 @@ echo "*** scp scripts *************************************************"
 
 scp_options="-o StrictHostKeyChecking=no -o BatchMode=yes"
 
+scp $scp_options CONTROL_rubbos_exec.sh  $CONTROL_HOST:/tmp
+
 if true; then
 for script in BENCHMARK_rubbos_install.sh BENCHMARK_install.sh \
               BENCHMARK_configure.sh BENCHMARK_uninstall.sh \
@@ -15,6 +29,19 @@ do
 done
 fi
 
+if true; then
+for i in {1..4}
+do
+    for script in CLIENT${i}_rubbos_install.sh CLIENT${i}_install.sh \
+                  CLIENT${i}_configure.sh CLIENT${i}_uninstall.sh \
+                  CLIENT${i}_rubbos_uninstall.sh
+    do
+        CLIENT_HOST=`printenv CLIENT${i}_HOST`
+        scp $scp_options $script $CLIENT_HOST:/tmp
+    done
+done
+fi
+
 if true; then
 for script in HTTPD_install.sh HTTPD_rubbos_install.sh \
               HTTPD_configure.sh HTTPD_ignition.sh \
@@ -52,6 +79,10 @@ echo "*** prepare software packages ***"
 ./TOMCAT1_pkg_prepare.sh
 ./HTTPD_pkg_prepare.sh
 ./BENCHMARK_pkg_prepare.sh
+for i in {1..4}
+do
+    ./CLIENT${i}_pkg_prepare.sh
+done
 
 # Install and Configure and run Apache, Tomcat, CJDBC, and MySQL
 echo "*** install scripts & configure & execute ***********************"
@@ -77,11 +108,26 @@ ssh $HTTPD_HOST /tmp/HTTPD_rubbos_install.sh
 ssh root@$BENCHMARK_HOST chmod 770 /tmp/BENCHMARK_rubbos_install.sh
 ssh $BENCHMARK_HOST /tmp/BENCHMARK_rubbos_install.sh
 
+for i in {1..4}
+do
+    CLIENT_HOST=`printenv CLIENT${i}_HOST`
+    ssh root@$CLIENT_HOST chmod 770 /tmp/CLIENT${i}_rubbos_install.sh
+    ssh $CLIENT_HOST /tmp/CLIENT${i}_rubbos_install.sh
+done
+
 ssh root@$BENCHMARK_HOST chmod 770 /tmp/BENCHMARK_install.sh
 ssh $BENCHMARK_HOST /tmp/BENCHMARK_install.sh
 
+for i in {1..4}
+do
+    CLIENT_HOST=`printenv CLIENT${i}_HOST`
+    ssh root@$CLIENT_HOST chmod 770 /tmp/CLIENT${i}_install.sh
+    ssh $CLIENT_HOST /tmp/CLIENT${i}_install.sh
+done
+
 ssh root@$MYSQL1_HOST chmod 770 /tmp/MYSQL1_configure.sh
-ssh $MYSQL1_HOST /tmp/MYSQL1_configure.sh
+ssh $MYSQL1_HOST /tmp/MYSQL1_configure.sh &
+sleep 60
 
 ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_configure.sh
 ssh $TOMCAT1_HOST /tmp/TOMCAT1_configure.sh
@@ -92,6 +138,16 @@ ssh $HTTPD_HOST /tmp/HTTPD_configure.sh
 ssh root@$BENCHMARK_HOST chmod 770 /tmp/BENCHMARK_configure.sh
 ssh $BENCHMARK_HOST /tmp/BENCHMARK_configure.sh
 
+for i in {1..4}
+do
+    CLIENT_HOST=`printenv CLIENT${i}_HOST`
+    ssh root@$CLIENT_HOST chmod 770 /tmp/CLIENT${i}_configure.sh
+    ssh $CLIENT_HOST /tmp/CLIENT${i}_configure.sh
+done
+
 ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_rubbosSL_configure.sh
 ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbosSL_configure.sh
 
+ssh $CONTROL_HOST /tmp/CONTROL_rubbos_exec.sh
+
+set +x