Sha256: ffd78290a1a7196668efc46a046ccbb66bb5e0b7c214e675f782e81d3defeeda

Contents?: true

Size: 788 Bytes

Versions: 3

Compression:

Stored size: 788 Bytes

Contents

#!/bin/sh

set -e
set -u

source ~/.lhm

lhmkill() {
  echo killing lhm-cluster
  ps -ef | sed -n "/[m]ysqld.*lhm-cluster/p" | awk '{ print $2 }' | xargs kill
  sleep 2
}

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; }

lhmkill

echo removing $basedir
rm -rf "$basedir"

echo setting up cluster
bin/lhm-spec-setup-cluster.sh

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
bin/lhm-spec-grants.sh

trap lhmkill SIGTERM SIGINT

wait

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lhm-2.0.0 bin/lhm-spec-clobber.sh
lhm-1.3.0 bin/lhm-spec-clobber.sh
lhm-1.2.0 bin/lhm-spec-clobber.sh