diff options
author | monty@hundin.mysql.fi <> | 2001-06-28 10:49:16 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-06-28 10:49:16 +0300 |
commit | 897b37b506ab72078c1ffd013a3e4600eb0eba02 (patch) | |
tree | 739c3565fe5148ff499bf5daae2a711768b66e2f /support-files/mysql-multi.server.sh | |
parent | 85388703c400d4a952085a8ed547494bd20863a2 (diff) | |
download | mariadb-git-897b37b506ab72078c1ffd013a3e4600eb0eba02.tar.gz |
Changed safe_mysqld -> mysqld_safe
Added some alias to SHOW commands
Prepare for dynamic changing of MySQL variables
Diffstat (limited to 'support-files/mysql-multi.server.sh')
-rw-r--r-- | support-files/mysql-multi.server.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/support-files/mysql-multi.server.sh b/support-files/mysql-multi.server.sh index 6c940630427..31020029354 100644 --- a/support-files/mysql-multi.server.sh +++ b/support-files/mysql-multi.server.sh @@ -133,14 +133,14 @@ case "$mode" in 'start') # Start daemon - if test -x $bindir/safe_mysqld + if test -x $bindir/mysqld_safe then # We only need to specify datadir and pid-file here and we # get all other instance-specific config from $datadir/my.cnf. # We have to explicitly pass --defaults-extra-file because it # reads the config files before the command line options. - # Also it must be first because of the way safe_mysqld works. - $bindir/safe_mysqld --defaults-extra-file=$datadir/my.cnf \ + # Also it must be first because of the way mysqld_safe works. + $bindir/mysqld_safe --defaults-extra-file=$datadir/my.cnf \ --datadir=$datadir --pid-file=$pid_file & # Make lock for RedHat / SuSE if test -d /var/lock/subsys @@ -148,7 +148,7 @@ case "$mode" in touch /var/lock/subsys/mysql fi else - echo "Can't execute $bindir/safe_mysqld" + echo "Can't execute $bindir/mysqld_safe" fi ;; |