vinayakb | 5d8a2f2 | 2013-01-29 19:45:44 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | hostname |
| 3 | |
| 4 | #Import cluster properties |
| 5 | . conf/cluster.properties |
| 6 | |
| 7 | #Get the IP address of the cc |
| 8 | CCHOST_NAME=`cat conf/master` |
| 9 | CCHOST=`bin/getip.sh` |
| 10 | |
| 11 | #Remove the temp dir |
| 12 | rm -rf $CCTMP_DIR |
| 13 | mkdir $CCTMP_DIR |
| 14 | |
| 15 | #Remove the logs dir |
| 16 | rm -rf $CCLOGS_DIR |
| 17 | mkdir $CCLOGS_DIR |
| 18 | |
| 19 | #Export JAVA_HOME and JAVA_OPTS |
| 20 | export JAVA_HOME=$JAVA_HOME |
| 21 | export JAVA_OPTS=$CCJAVA_OPTS |
| 22 | |
| 23 | #Launch hyracks cc script |
| 24 | chmod -R 755 $HYRACKS_HOME |
vinayakb | 9506d18 | 2013-03-22 08:20:32 +0000 | [diff] [blame^] | 25 | $HYRACKS_HOME/hyracks-server/target/appassembler/bin/hyrackscc -client-net-ip-address $CCHOST -cluster-net-ip-address $CCHOST -client-net-port $CC_CLIENTPORT -cluster-net-port $CC_CLUSTERPORT -max-heartbeat-lapse-periods 999999 -default-max-job-attempts 0 -job-history-size 0 &> $CCLOGS_DIR/cc.log & |