blob: d6c2ac7b268dc7f71552687c889c31f5a2d53298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
cd /bottlenecks/rubbos/rubbos_scripts/1-1-1
source set_bottlenecks_rubbos_env.sh
echo "STOPPING TOMCAT on $HOSTNAME"
cd $CATALINA_HOME/bin
./shutdown.sh
echo "TOMCAT IS STOPPED on $HOSTNAME"
|