mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Added --port to safe_mysqld
scripts/safe_mysqld.sh: Added --port
This commit is contained in:
parent
ff4787a78b
commit
adc0c1b2e0
1 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@ parse_arguments() {
|
|||
--datadir=*) DATADIR=`echo "$arg" | sed -e "s;--datadir=;;"` ;;
|
||||
--pid-file=*) pid_file=`echo "$arg" | sed -e "s;--pid-file=;;"` ;;
|
||||
--socket=*) MYSQL_UNIX_PORT=`echo "$arg" | sed -e "s;--socket=;;"` ;;
|
||||
--port=*) MYSQL_TCP_PORT=`echo "$arg" | sed -e "s;--socket=;;"` ;;
|
||||
--log=*) log=`echo "$arg" | sed -e "s;--log=;;"` ;;
|
||||
--err-log=*) err_log=`echo "$arg" | sed -e "s;--err-log=;;"` ;;
|
||||
--basedir=*) MY_BASEDIR_VERSION=`echo "$arg" | sed -e "s;--basedir=;;"` ;;
|
||||
|
@ -95,7 +96,7 @@ else
|
|||
fi
|
||||
|
||||
export MYSQL_UNIX_PORT
|
||||
#export MYSQL_TCP_PORT
|
||||
export MYSQL_TCP_PORT
|
||||
touch $err_log; chown $user $err_log
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue