summaryrefslogtreecommitdiff
path: root/ndb/bin/mysqlcluster
blob: 81fc7308942a3d9374bd1fd76e0e44393e0a971e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
if [ -z "$MYSQLCLUSTER_TOP" -o ! -d "$MYSQLCLUSTER_TOP" ]; then
  echo "MYSQLCLUSTER_TOP not set or directory does not exist"
  exit 1
fi
if [ -z "$MYSQLCLUSTER_TOP" -o ! -d "$MYSQLCLUSTER_TOP/ndb" ]; then
  echo "$MYSQLCLUSTER_TOP/ndb directory does not exist"
  exit 1
fi

mysql --socket=$MYSQLCLUSTER_TOP/data/mysqlcluster.sock $*