Merge "Change PTL informatin in INFO"
[bottlenecks.git] / testsuites / rubbos / rubbos_scripts / 1-1-1 / scripts / CLIENT2_rubbos_install.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 cd /bottlenecks/rubbos/rubbos_scripts/1-1-1
12 source set_bottlenecks_rubbos_env.sh
13
14 echo "INSTALLING RUBBOS/SYSSTAT on $HOSTNAME"
15
16 if [ ! -d "$RUBBOS_APP" ]; then
17 mkdir -p $RUBBOS_APP
18 chmod 755 $RUBBOS_APP
19 fi
20
21 # install RUBBoS
22 tar xzf $SOFTWARE_HOME/$RUBBOS_TARBALL --directory=$RUBBOS_APP
23 #tar xzf $SOFTWARE_HOME/rubbos_html.tar.gz --directory=$RUBBOS_HOME/Servlet_HTML/
24 cp $SOFTWARE_HOME/flush_cache $RUBBOS_HOME/bench/.
25
26 # install sysstat
27 tar xzf $SOFTWARE_HOME/$SYSSTAT_TARBALL --directory=$RUBBOS_APP
28
29 cd $SYSSTAT_HOME
30 ./configure --prefix=$SYSSTAT_HOME >/dev/null
31 make >/dev/null 2>&1
32 sudo make install >/dev/null
33
34 # install a script to collect statistics data
35 cp $OUTPUT_HOME/rubbos_conf/cpu_mem.sh $RUBBOS_APP/.
36 chmod 755 $RUBBOS_APP/cpu_mem.sh
37
38 echo "DONE INSTALLING RUBBOS/SYSSTAT on $HOSTNAME"