search for: tpcc_start

Displaying 1 result from an estimated 1 matches for "tpcc_start".

Did you mean: pcm_start
2012 Nov 28
1
Strange ssh thing - Keys suddenly decide to stop working.
...i, ## I have a script that spawns a process on a remote virtuozzo(container based vm thing) machine then waits for it to complete. Its a bit hacked about but you should be able to get the idea. function spawntpcc { while ! ssh -v $vmhostnameprefix$1 <<EOF "$tpccrootdir"/tpcc-mysql/tpcc_start -h localhost -d tpcc -u root -w "$3" -c 8 -r "$warmuptime" -l "$runtime" > /cm/shared/tpcc/"$runname"/"$3"/"$vmhostnameprefix""$1"-result-"$2" EOF do sleep 60 done } for ((iteration=1; iteration < 13; iterati...