summaryrefslogtreecommitdiff
path: root/mysql-test/ndb
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.(none)>2004-09-06 12:36:01 +0000
committerunknown <tomas@poseidon.(none)>2004-09-06 12:36:01 +0000
commit5cccb45385438462bb1212eec90b43cf37537306 (patch)
treee54e2eb91d9f1d91b9fce1bfef4472a6868387fd /mysql-test/ndb
parent862d056d4a238c580f01d662f9533bb86894fc63 (diff)
downloadmariadb-git-5cccb45385438462bb1212eec90b43cf37537306.tar.gz
-d default on ndb_mgmd and ndbd
-i depricated on ndbd fixed bug in shutdown command in ndb_mgm ndb/src/mgmsrv/main.cpp: added config.ini as default configuration file -d default on ndb_mgmd and ndbd -i depricated on ndbd fixed bug in shutdown command in ndb_mgm
Diffstat (limited to 'mysql-test/ndb')
-rw-r--r--mysql-test/ndb/ndbcluster.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/ndb/ndbcluster.sh b/mysql-test/ndb/ndbcluster.sh
index c84d9e36979..f143242371f 100644
--- a/mysql-test/ndb/ndbcluster.sh
+++ b/mysql-test/ndb/ndbcluster.sh
@@ -54,7 +54,7 @@ while test $# -gt 0; do
stop_ndb=1
;;
--initial)
- flags_ndb="$flags_ndb -i"
+ flags_ndb="$flags_ndb --initial"
initial_ndb=1
;;
--debug*)
@@ -143,7 +143,7 @@ fi
rm -f "$cfgfile" 2>&1 | cat > /dev/null
rm -f "$fs_ndb/$cfgfile" 2>&1 | cat > /dev/null
-if ( cd "$fs_ndb" ; $exec_mgmtsrvr -d -c config.ini ) ; then :; else
+if ( cd "$fs_ndb" ; $exec_mgmtsrvr -c config.ini ) ; then :; else
echo "Unable to start $exec_mgmtsrvr from `pwd`"
exit 1
fi
@@ -153,14 +153,14 @@ cat `find "$fs_ndb" -name 'ndb_*.pid'` > "$fs_ndb/$pidfile"
# Start database node
echo "Starting ndbd"
-( cd "$fs_ndb" ; $exec_ndb -d $flags_ndb & )
+( cd "$fs_ndb" ; $exec_ndb $flags_ndb & )
cat `find "$fs_ndb" -name 'ndb_*.pid'` > "$fs_ndb/$pidfile"
# Start database node
echo "Starting ndbd"
-( cd "$fs_ndb" ; $exec_ndb -d $flags_ndb & )
+( cd "$fs_ndb" ; $exec_ndb $flags_ndb & )
cat `find "$fs_ndb" -name 'ndb_*.pid'` > "$fs_ndb/$pidfile"