Sha256: 1011659e0fb6fa028ed049a82d17a11cc385e95ad54ecc2919cfa0837e1d1510
Contents?: true
Size: 773 Bytes
Versions: 3
Compression:
Stored size: 773 Bytes
Contents
#!/bin/sh set -e set -u source ~/.lhm lhmkill() { ps -ef | gsed -n "/[m]ysqld.*lhm-cluster/p" | awk '{ print $2 }' | xargs kill sleep 5 } echo stopping other running mysql instance launchctl remove com.mysql.mysqld || { echo launchctl did not remove mysqld; } "$mysqldir"/bin/mysqladmin shutdown || { echo mysqladmin did not shut down anything; } echo killing lhm-cluster lhmkill echo removing $basedir rm -rf "$basedir" echo setting up cluster lhm-spec-setup-cluster echo staring instances "$mysqldir"/bin/mysqld --defaults-file="$basedir/master/my.cnf" 2>&1 >$basedir/master/lhm.log & "$mysqldir"/bin/mysqld --defaults-file="$basedir/slave/my.cnf" 2>&1 >$basedir/slave/lhm.log & sleep 5 echo running grants lhm-spec-grants trap lhmkill SIGTERM SIGINT wait
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lhm-1.0.0.rc7 | bin/lhm-spec-clobber.sh |
lhm-1.0.0.rc6 | bin/lhm-spec-clobber.sh |
lhm-1.0.0.rc5 | bin/lhm-spec-clobber.sh |