mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Automerge of mysql-5.1-bugteam to mysql-trunk-merge.
This commit is contained in:
@ -199,6 +199,7 @@ parse_arguments() {
|
||||
;;
|
||||
--nice=*) niceness="$val" ;;
|
||||
--open-files-limit=*) open_files="$val" ;;
|
||||
--open_files_limit=*) open_files="$val" ;;
|
||||
--skip-kill-mysqld*) KILL_MYSQLD=0 ;;
|
||||
--syslog) want_syslog=1 ;;
|
||||
--skip-syslog) want_syslog=0 ;;
|
||||
@ -545,10 +546,14 @@ then
|
||||
if test -n "$open_files"
|
||||
then
|
||||
ulimit -n $open_files
|
||||
append_arg_to_args "--open-files-limit=$open_files"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$open_files"
|
||||
then
|
||||
append_arg_to_args "--open-files-limit=$open_files"
|
||||
fi
|
||||
|
||||
safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@}}
|
||||
# Make sure that directory for $safe_mysql_unix_port exists
|
||||
mysql_unix_port_dir=`dirname $safe_mysql_unix_port`
|
||||
|
Reference in New Issue
Block a user