mysqld_safe
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:11k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh
  2. # Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  3. # This file is public domain and comes with NO WARRANTY of any kind
  4. #
  5. # scripts to start the MySQL daemon and restart it if it dies unexpectedly
  6. #
  7. # This should be executed in the MySQL base directory if you are using a
  8. # binary installation that has other paths than you are using.
  9. #
  10. # mysql.server works by first doing a cd to the base directory and from there
  11. # executing mysqld_safe
  12. KILL_MYSQLD=1;
  13. MYSQLD=
  14. trap '' 1 2 3 15 # we shouldn't let anyone kill us
  15. umask 007
  16. defaults=
  17. case "$1" in
  18.     --no-defaults|--defaults-file=*|--defaults-extra-file=*)
  19.       defaults="$1"; shift
  20.       ;;
  21. esac
  22. parse_arguments() {
  23.   # We only need to pass arguments through to the server if we don't
  24.   # handle them here.  So, we collect unrecognized options (passed on
  25.   # the command line) into the args variable.
  26.   pick_args=
  27.   if test "$1" = PICK-ARGS-FROM-ARGV
  28.   then
  29.     pick_args=1
  30.     shift
  31.   fi
  32.   for arg do
  33.     case "$arg" in
  34.       --skip-kill-mysqld*)
  35.         KILL_MYSQLD=0;
  36.         ;;
  37.       # these get passed explicitly to mysqld
  38.       --basedir=*) MY_BASEDIR_VERSION=`echo "$arg" | sed -e "s;--basedir=;;"` ;;
  39.       --datadir=*) DATADIR=`echo "$arg" | sed -e "s;--datadir=;;"` ;;
  40.       --pid-file=*) pid_file=`echo "$arg" | sed -e "s;--pid-file=;;"` ;;
  41.       --user=*) user=`echo "$arg" | sed -e "s;--[^=]*=;;"` ; SET_USER=1 ;;
  42.       # these two might have been set in a [mysqld_safe] section of my.cnf
  43.       # they are added to mysqld command line to override settings from my.cnf
  44.       --socket=*)  mysql_unix_port=`echo "$arg" | sed -e "s;--socket=;;"` ;;
  45.       --port=*)    mysql_tcp_port=`echo "$arg" | sed -e "s;--port=;;"` ;;
  46.       # mysqld_safe-specific options - must be set in my.cnf ([mysqld_safe])!
  47.       --ledir=*)   ledir=`echo "$arg" | sed -e "s;--ledir=;;"` ;;
  48.       # err-log should be removed in 5.0
  49.       --err-log=*) err_log=`echo "$arg" | sed -e "s;--err-log=;;"` ;;
  50.       --log-error=*) err_log=`echo "$arg" | sed -e "s;--log-error=;;"` ;;
  51.       # QQ The --open-files should be removed in 5.0
  52.       --open-files=*) open_files=`echo "$arg" | sed -e "s;--open-files=;;"` ;;
  53.       --open-files-limit=*) open_files=`echo "$arg" | sed -e "s;--open-files-limit=;;"` ;;
  54.       --core-file-size=*) core_file_size=`echo "$arg" | sed -e "s;--core-file-size=;;"` ;;
  55.       --timezone=*) TZ=`echo "$arg" | sed -e "s;--timezone=;;"` ; export TZ; ;;
  56.       --mysqld=*)   MYSQLD=`echo "$arg" | sed -e "s;--mysqld=;;"` ;;
  57.       --mysqld-version=*)
  58. tmp=`echo "$arg" | sed -e "s;--mysqld-version=;;"`
  59. if test -n "$tmp"
  60. then
  61.   MYSQLD="mysqld-$tmp"
  62. else
  63.   MYSQLD="mysqld"
  64. fi
  65. ;;
  66.       --nice=*) niceness=`echo "$arg" | sed -e "s;--nice=;;"` ;;
  67.       *)
  68.         if test -n "$pick_args"
  69.         then
  70.           # This sed command makes sure that any special chars are quoted,
  71.           # so the arg gets passed exactly to the server.
  72.           args="$args "`echo "$arg" | sed -e 's,([^a-zA-Z0-9_.-]),\\1,g'`
  73.         fi
  74.         ;;
  75.     esac
  76.   done
  77. }
  78. #
  79. # First, try to find BASEDIR and ledir (where mysqld is)
  80. MY_PWD=`pwd`
  81. # Check for the directories we would expect from a binary release install
  82. if test -f ./share/mysql/english/errmsg.sys -a -x ./bin/mysqld
  83. then
  84.   MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are
  85.   ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is
  86. # Check for the directories we would expect from a source install
  87. elif test -f ./share/mysql/english/errmsg.sys -a 
  88.  -x ./libexec/mysqld
  89. then
  90.   MY_BASEDIR_VERSION=$MY_PWD # Where libexec, share and var are
  91.   ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is
  92. # Since we didn't find anything, used the compiled-in defaults
  93. else
  94.   MY_BASEDIR_VERSION=/usr/local
  95.   ledir=/usr/local/libexec
  96. fi
  97. #
  98. # Second, try to find the data directory
  99. #
  100. # Try where the binary installs put it
  101. if test -d $MY_BASEDIR_VERSION/data/mysql
  102. then
  103.   DATADIR=$MY_BASEDIR_VERSION/data
  104.   if test -z "$defaults"
  105.   then
  106.     defaults="--defaults-extra-file=$DATADIR/my.cnf"
  107.   fi
  108. # Next try where the source installs put it
  109. elif test -d $MY_BASEDIR_VERSION/var/mysql
  110. then
  111.   DATADIR=$MY_BASEDIR_VERSION/var
  112. # Or just give up and use our compiled-in default
  113. else
  114.   DATADIR=/usr/local/var
  115. fi
  116. user=mysql
  117. niceness=0
  118. # these rely on $DATADIR by default, so we'll set them later on
  119. pid_file=
  120. err_log=
  121. # Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
  122. # and then merge with the command line arguments
  123. if test -x ./bin/my_print_defaults
  124. then
  125.   print_defaults="./bin/my_print_defaults"
  126. elif test -x /usr/local/bin/my_print_defaults
  127. then
  128.   print_defaults="/usr/local/bin/my_print_defaults"
  129. elif test -x /usr/local/bin/mysql_print_defaults
  130. then
  131.   print_defaults="/usr/local/bin/mysql_print_defaults"
  132. else
  133.   print_defaults="my_print_defaults"
  134. fi
  135. args=
  136. SET_USER=2
  137. parse_arguments `$print_defaults $defaults --loose-verbose mysqld server`
  138. if test $SET_USER -eq 2
  139. then
  140.   SET_USER=0
  141. fi
  142. parse_arguments `$print_defaults $defaults --loose-verbose mysqld_safe safe_mysqld`
  143. parse_arguments PICK-ARGS-FROM-ARGV "$@"
  144. safe_mysql_unix_port=${mysql_unix_port:-${MYSQL_UNIX_PORT:-/tmp/mysql.sock}}
  145. # Make sure that directory for $safe_mysql_unix_port exists
  146. mysql_unix_port_dir=`dirname $safe_mysql_unix_port`
  147. if [ ! -d $mysql_unix_port_dir ]
  148. then
  149.   mkdir $mysql_unix_port_dir
  150.   chown $user $mysql_unix_port_dir
  151. fi
  152. # Use the mysqld-max binary by default if the user doesn't specify a binary
  153. if test -z "$MYSQLD"
  154. then
  155.   if test -x $ledir/mysqld-max
  156.   then
  157.     MYSQLD=mysqld-max
  158.   else
  159.     MYSQLD=mysqld
  160.   fi
  161. fi
  162. if test ! -x $ledir/$MYSQLD
  163. then
  164.   echo "The file $ledir/$MYSQLD doesn't exist or is not executable"
  165.   echo "Please do a cd to the mysql installation directory and restart"
  166.   echo "this script from there as follows:"
  167.   echo "./bin/mysqld_safe".
  168.   echo "See http://dev.mysql.com/doc/mysql/en/mysqld_safe.html for more"
  169.   echo "information"
  170.   exit 1
  171. fi
  172. if test -z "$pid_file"
  173. then
  174.   pid_file=$DATADIR/`/bin/hostname`.pid
  175. else
  176.   case "$pid_file" in
  177.     /* ) ;;
  178.     * )  pid_file="$DATADIR/$pid_file" ;;
  179.   esac
  180. fi
  181. test -z "$err_log"  && err_log=$DATADIR/`/bin/hostname`.err
  182. if test -n "$mysql_unix_port"
  183. then
  184.   args="--socket=$mysql_unix_port $args"
  185. fi
  186. if test -n "$mysql_tcp_port"
  187. then
  188.   args="--port=$mysql_tcp_port $args"
  189. fi
  190. if test $niceness -eq 0
  191. then
  192.   NOHUP_NICENESS="nohup"
  193. else
  194.   NOHUP_NICENESS="nohup nice -$niceness"
  195. fi
  196. # Using nice with no args to get the niceness level is GNU-specific.
  197. # This check could be extended for other operating systems (e.g.,
  198. # BSD could use "nohup sh -c 'ps -o nice -p $$' | tail -1").
  199. # But, it also seems that GNU nohup is the only one which messes
  200. # with the priority, so this is okay.
  201. if nohup nice > /dev/null 2>&1
  202. then
  203.     normal_niceness=`nice`
  204.     nohup_niceness=`nohup nice`
  205.     numeric_nice_values=1
  206.     for val in $normal_niceness $nohup_niceness
  207.     do
  208.         case "$val" in
  209.             -[0-9] | -[0-9][0-9] | -[0-9][0-9][0-9] | 
  210.              [0-9] |  [0-9][0-9] |  [0-9][0-9][0-9] )
  211.                 ;;
  212.             * )
  213.                 numeric_nice_values=0 ;;
  214.         esac
  215.     done
  216.     if test $numeric_nice_values -eq 1
  217.     then
  218.         nice_value_diff=`expr $nohup_niceness - $normal_niceness`
  219.         if test $? -eq 0 && test $nice_value_diff -gt 0 && 
  220.             nice --$nice_value_diff echo testing > /dev/null 2>&1
  221.         then
  222.             # nohup increases the priority (bad), and we are permitted
  223.             # to lower the priority with respect to the value the user
  224.             # might have been given
  225.             niceness=`expr $niceness - $nice_value_diff`
  226.             NOHUP_NICENESS="nice -$niceness nohup"
  227.         fi
  228.     fi
  229. else
  230.     if nohup echo testing > /dev/null 2>&1
  231.     then
  232.         :
  233.     else
  234.         # nohup doesn't work on this system
  235.         NOHUP_NICENESS=""
  236.     fi
  237. fi
  238. USER_OPTION=""
  239. if test -w / -o "$USER" = "root"
  240. then
  241.   if test "$user" != "root" -o $SET_USER = 1
  242.   then
  243.     USER_OPTION="--user=$user"
  244.   fi
  245.   # If we are root, change the err log to the right user.
  246.   touch $err_log; chown $user $err_log
  247.   if test -n "$open_files"
  248.   then
  249.     ulimit -n $open_files
  250.     args="--open-files-limit=$open_files $args"
  251.   fi
  252.   if test -n "$core_file_size"
  253.   then
  254.     ulimit -c $core_file_size
  255.   fi
  256. fi
  257. #
  258. # If there exists an old pid file, check if the daemon is already running
  259. # Note: The switches to 'ps' may depend on your operating system
  260. if test -f $pid_file
  261. then
  262.   PID=`cat $pid_file`
  263.   if /bin/kill -0 $PID > /dev/null 2> /dev/null
  264.   then
  265.     if /bin/ps p $PID | grep -v grep | grep mysqld > /dev/null
  266.     then    # The pid contains a mysqld process
  267.       echo "A mysqld process already exists"
  268.       echo "A mysqld process already exists at " `date` >> $err_log
  269.       exit 1
  270.     fi
  271.   fi
  272.   rm -f $pid_file
  273.   if test -f $pid_file
  274.   then
  275.     echo "Fatal error: Can't remove the pid file: $pid_file"
  276.     echo "Fatal error: Can't remove the pid file: $pid_file at " `date` >> $err_log
  277.     echo "Please remove it manually and start $0 again"
  278.     echo "mysqld daemon not started"
  279.     exit 1
  280.   fi
  281. fi
  282. #
  283. # Uncomment the following lines if you want all tables to be automatically
  284. # checked and repaired during startup. You should add sensible key_buffer
  285. # and sort_buffer values to my.cnf to improve check performance or require
  286. # less disk space.
  287. # Alternatively, you can start mysqld with the "myisam-recover" option. See
  288. # the manual for details.
  289. #
  290. # echo "Checking tables in $DATADIR"
  291. # $MY_BASEDIR_VERSION/bin/myisamchk --silent --force --fast --medium-check $DATADIR/*/*.MYI
  292. # $MY_BASEDIR_VERSION/bin/isamchk --silent --force $DATADIR/*/*.ISM
  293. echo "Starting $MYSQLD daemon with databases from $DATADIR"
  294. # Does this work on all systems?
  295. #if type ulimit | grep "shell builtin" > /dev/null
  296. #then
  297. #  ulimit -n 256 > /dev/null 2>&1 # Fix for BSD and FreeBSD systems
  298. #fi
  299. echo "`date +'%y%m%d %H:%M:%S  mysqld started'`" >> $err_log
  300. while true
  301. do
  302.   rm -f $safe_mysql_unix_port $pid_file # Some extra safety
  303.   if test -z "$args"
  304.   then
  305.     $NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file=$pid_file --skip-locking >> $err_log 2>&1
  306.   else
  307.     eval "$NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file=$pid_file --skip-locking $args >> $err_log 2>&1"
  308.   fi
  309.   if test ! -f $pid_file # This is removed if normal shutdown
  310.   then
  311.     echo "STOPPING server from pid file $pid_file"
  312.     break
  313.   fi
  314.   if true && test $KILL_MYSQLD -eq 1
  315.   then
  316.     # Test if one process was hanging.
  317.     # This is only a fix for Linux (running as base 3 mysqld processes)
  318.     # but should work for the rest of the servers.
  319.     # The only thing is ps x => redhat 5 gives warnings when using ps -x.
  320.     # kill -9 is used or the process won't react on the kill.
  321.     numofproces=`ps xaww | grep -v "grep" | grep "$ledir/$MYSQLD>" | grep -c "pid-file=$pid_file"`
  322.     echo -e "nNumber of processes running now: $numofproces" | tee -a $err_log
  323.     I=1
  324.     while test "$I" -le "$numofproces"
  325.     do 
  326.       PROC=`ps xaww | grep "$ledir/$MYSQLD>" | grep -v "grep" | grep "pid-file=$pid_file" | sed -n '$p'` 
  327.       for T in $PROC
  328.       do
  329.         break
  330.       done
  331.       #    echo "TEST $I - $T **"
  332.       if kill -9 $T
  333.       then
  334.         echo "$MYSQLD process hanging, pid $T - killed" | tee -a $err_log
  335.       else 
  336.         break
  337.       fi
  338.       I=`expr $I + 1`
  339.     done
  340.   fi
  341.   echo "`date +'%y%m%d %H:%M:%S'`  mysqld restarted" | tee -a $err_log
  342. done
  343. echo "`date +'%y%m%d %H:%M:%S'`  mysqld ended" | tee -a $err_log
  344. echo "" | tee -a $err_log