blob: 6b2511da2771d8a47e2a31098ceb64b34416ea01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
cd /bottlenecks/rubbos/rubbos_scripts/1-1-1
source set_bottlenecks_rubbos_env.sh
echo "STARTING APACHE on $HOSTNAME"
$HTTPD_HOME/bin/apachectl -f $HTTPD_HOME/conf/httpd.conf -k start
echo "APACHE IS RUNNING on $HOSTNAME"
|