From 9ffc70b519ff244ca0501f11de00234f4d423c14 Mon Sep 17 00:00:00 2001 From: QiLiang Date: Sat, 12 Dec 2015 00:29:13 +0000 Subject: Update Tomcat configure Scripts update to support tomcat install in a clean ubuntu 14.04 OS JIRA:BOTTLENECK-24 Change-Id: Ida708ad37ba4409b15bdeed98d7f369ccdab44c5 Signed-off-by: QiLiang --- rubbos/rubbos_scripts/1-1-1/scripts/run.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'rubbos/rubbos_scripts/1-1-1/scripts/run.sh') diff --git a/rubbos/rubbos_scripts/1-1-1/scripts/run.sh b/rubbos/rubbos_scripts/1-1-1/scripts/run.sh index b30276fa..31b51b25 100755 --- a/rubbos/rubbos_scripts/1-1-1/scripts/run.sh +++ b/rubbos/rubbos_scripts/1-1-1/scripts/run.sh @@ -14,21 +14,44 @@ for script in HTTPD_install.sh HTTPD_rubbos_install.sh \ do scp $scp_options $script $HTTPD_HOST:/tmp done +fi +if true; then +for script in TOMCAT1_install.sh TOMCAT1_rubbos_install.sh \ + TOMCAT1_configure.sh TOMCAT1_rubbosSL_configure.sh \ + TOMCAT1_ignition.sh TOMCAT1_stop.sh \ + TOMCAT1_rubbos_uninstall.sh TOMCAT1_uninstall.sh +do + scp $scp_options $script $TOMCAT1_HOST:/tmp +done fi + # Prepare software packages echo "*** prepare software packages ***" ./HTTPD_pkg_prepare.sh +./TOMCAT1_pkg_prepare.sh # Install and Configure and run Apache, Tomcat, CJDBC, and MySQL echo "*** install scripts & configure & execute ***********************" +ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_install.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_install.sh + ssh root@$HTTPD_HOST chmod 770 /tmp/HTTPD_install.sh ssh $HTTPD_HOST /tmp/HTTPD_install.sh +ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_rubbos_install.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbos_install.sh + ssh root@$HTTPD_HOST chmod 770 /tmp/HTTPD_rubbos_install.sh ssh $HTTPD_HOST /tmp/HTTPD_rubbos_install.sh +ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_configure.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_configure.sh + ssh root@$HTTPD_HOST chmod 770 /tmp/HTTPD_configure.sh ssh $HTTPD_HOST /tmp/HTTPD_configure.sh +ssh root@$TOMCAT1_HOST chmod 770 /tmp/TOMCAT1_rubbosSL_configure.sh +ssh $TOMCAT1_HOST /tmp/TOMCAT1_rubbosSL_configure.sh + -- cgit 1.2.3-korg