safe_mysqld.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:8k
源码类别:

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 safe_mysqld
  12. trap '' 1 2 3 15 # we shouldn't let anyone kill us
  13. defaults=
  14. case "$1" in
  15.     --no-defaults|--defaults-file=*|--defaults-extra-file=*)
  16.       defaults="$1"; shift
  17.       ;;
  18. esac
  19. parse_arguments() {
  20.   # We only need to pass arguments through to the server if we don't
  21.   # handle them here.  So, we collect unrecognized options (passed on
  22.   # the command line) into the args variable.
  23.   pick_args=
  24.   if test "$1" = PICK-ARGS-FROM-ARGV
  25.   then
  26.     pick_args=1
  27.     shift
  28.   fi
  29.   for arg do
  30.     case "$arg" in
  31.       # these get passed explicitly to mysqld
  32.       --basedir=*) MY_BASEDIR_VERSION=`echo "$arg" | sed -e "s;--basedir=;;"` ;;
  33.       --datadir=*) DATADIR=`echo "$arg" | sed -e "s;--datadir=;;"` ;;
  34.       --pid-file=*) pid_file=`echo "$arg" | sed -e "s;--pid-file=;;"` ;;
  35.       --user=*)    user=`echo "$arg" | sed -e "s;--user=;;"` ;;
  36.       # these two might have been set in a [safe_mysqld] section of my.cnf
  37.       # they get passed via environment variables to safe_mysqld
  38.       --socket=*)  MYSQL_UNIX_PORT=`echo "$arg" | sed -e "s;--socket=;;"` ;;
  39.       --port=*)    MYSQL_TCP_PORT=`echo "$arg" | sed -e "s;--port=;;"` ;;
  40.       # safe_mysqld-specific options - must be set in my.cnf ([safe_mysqld])!
  41.       --ledir=*)   ledir=`echo "$arg" | sed -e "s;--ledir=;;"` ;;
  42.       --err-log=*) err_log=`echo "$arg" | sed -e "s;--err-log=;;"` ;;
  43.       # QQ The --open-files should be removed
  44.       --open-files=*) open_files=`echo "$arg" | sed -e "s;--open-files=;;"` ;;
  45.       --open-files-limit=*) open_files=`echo "$arg" | sed -e "s;--open-files-limit=;;"` ;;
  46.       --core-file-size=*) core_file_size=`echo "$arg" | sed -e "s;--core_file_size=;;"` ;;
  47.       --timezone=*) TZ=`echo "$arg" | sed -e "s;--timezone=;;"` ; export TZ; ;;
  48.       --mysqld=*)   MYSQLD=`echo "$arg" | sed -e "s;--mysqld=;;"` ;;
  49.       *)
  50.         if test -n "$pick_args"
  51.         then
  52.           # This sed command makes sure that any special chars are quoted,
  53.           # so the arg gets passed exactly to the server.
  54.           args="$args "`echo "$arg" | sed -e 's,([^a-zA-Z0-9_.-]),\\1,g'`
  55.         fi
  56.         ;;
  57.     esac
  58.   done
  59. }
  60. MY_PWD=`pwd`
  61. # Check if we are starting this relative (for the binary release)
  62. if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a 
  63.  -x ./bin/mysqld
  64. then
  65.   MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are
  66.   ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is
  67.   DATADIR=$MY_BASEDIR_VERSION/data
  68.   if test -z "defaults"
  69.   then
  70.     defaults="--defaults-extra-file=$MY_BASEDIR_VERSION/data/my.cnf"
  71.   fi
  72. # Check if this is a 'moved install directory'
  73. elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a 
  74.  -x ./libexec/mysqld
  75. then
  76.   MY_BASEDIR_VERSION=$MY_PWD # Where libexec, share and var are
  77.   ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is
  78.   DATADIR=$MY_BASEDIR_VERSION/var
  79. else
  80.   MY_BASEDIR_VERSION=@prefix@
  81.   DATADIR=@localstatedir@
  82.   ledir=@libexecdir@
  83. fi
  84. MYSQL_UNIX_PORT=${MYSQL_UNIX_PORT:-@MYSQL_UNIX_ADDR@}
  85. MYSQL_TCP_PORT=${MYSQL_TCP_PORT:-@MYSQL_TCP_PORT@}
  86. user=@MYSQLD_USER@
  87. MYSQLD=mysqld
  88. # these rely on $DATADIR by default, so we'll set them later on
  89. pid_file=
  90. err_log=
  91. # Get first arguments from the my.cfg file, groups [mysqld] and [safe_mysqld]
  92. # and then merge with the command line arguments
  93. if test -x ./bin/my_print_defaults
  94. then
  95.   print_defaults="./bin/my_print_defaults"
  96. elif test -x @bindir@/my_print_defaults
  97. then
  98.   print_defaults="@bindir@/my_print_defaults"
  99. elif test -x @bindir@/mysql_print_defaults
  100. then
  101.   print_defaults="@bindir@/mysql_print_defaults"
  102. else
  103.   print_defaults="my_print_defaults"
  104. fi
  105. args=
  106. parse_arguments `$print_defaults $defaults mysqld server safe_mysqld`
  107. parse_arguments PICK-ARGS-FROM-ARGV "$@"
  108. if test ! -x $ledir/$MYSQLD
  109. then
  110.   echo "The file $ledir/$MYSQLD doesn't exist or is not executable"
  111.   echo "Please do a cd to the mysql installation directory and restart"
  112.   echo "this script from there as follows:"
  113.   echo "./bin/safe_mysqld".
  114.   exit 1
  115. fi
  116. if test -z "$pid_file"
  117. then
  118.   pid_file=$DATADIR/`@HOSTNAME@`.pid
  119. else
  120.   case "$pid_file" in
  121.     /* ) ;;
  122.     * )  pid_file="$DATADIR/$pid_file" ;;
  123.   esac
  124. fi
  125. test -z "$err_log"  && err_log=$DATADIR/`@HOSTNAME@`.err
  126. export MYSQL_UNIX_PORT
  127. export MYSQL_TCP_PORT
  128. NOHUP_NICENESS="nohup"
  129. if test -w /
  130. then
  131.   NOHUP_NICENESS=`nohup nice 2>&1`
  132.  if test $? -eq 0 && test x"$NOHUP_NICENESS" != x0 && nice --1 echo foo > /dev/null 2>&1
  133.  then
  134.     NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup"
  135.   else
  136.     NOHUP_NICENESS="nohup"
  137.   fi
  138. fi
  139. USER_OPTION=""
  140. if test -w /
  141. then
  142.   USER_OPTION="--user=$user"
  143.   # If we are root, change the err log to the right user.
  144.   touch $err_log; chown $user $err_log
  145.   if test -n "$open_files"
  146.   then
  147.     ulimit -n $open_files
  148.   fi
  149.   if test -n "$core_file_size"
  150.   then
  151.     ulimit -c $core_file_size
  152.   fi
  153. fi
  154. #
  155. # If there exists an old pid file, check if the daemon is already running
  156. # Note: The switches to 'ps' may depend on your operating system
  157. if test -f $pid_file
  158. then
  159.   PID=`cat $pid_file`
  160.   if @CHECK_PID@
  161.   then
  162.     if @FIND_PROC@
  163.     then    # The pid contains a mysqld process
  164.       echo "A mysqld process already exists"
  165.       echo "A mysqld process already exists at " `date` >> $err_log
  166.       exit 1
  167.     fi
  168.   fi
  169.   rm -f $pid_file
  170.   if test -f $pid_file
  171.   then
  172.     echo "Fatal error: Can't remove the pid file: $pid_file"
  173.     echo "Fatal error: Can't remove the pid file: $pid_file at " `date` >> $err_log
  174.     echo "Please remove it manually and start $0 again"
  175.     echo "mysqld daemon not started"
  176.     exit 1
  177.   fi
  178. fi
  179. #
  180. # Uncomment the following lines if you want all tables to be automaticly
  181. # checked and repaired at start
  182. #
  183. # echo "Checking tables in $DATADIR"
  184. # $MY_BASEDIR_VERSION/bin/myisamchk --silent --force --fast --medium-check -O key_buffer=64M -O sort_buffer=64M $DATADIR/*/*.MYI
  185. # $MY_BASEDIR_VERSION/bin/isamchk --silent --force -O sort_buffer=64M $DATADIR/*/*.ISM
  186. echo "Starting $MYSQLD daemon with databases from $DATADIR"
  187. # Does this work on all systems?
  188. #if type ulimit | grep "shell builtin" > /dev/null
  189. #then
  190. #  ulimit -n 256 > /dev/null 2>&1 # Fix for BSD and FreeBSD systems
  191. #fi
  192. echo "`date +'%y%m%d %H:%M:%S  mysqld started'`" >> $err_log
  193. while true
  194. do
  195.   rm -f $MYSQL_UNIX_PORT $pid_file # Some extra safety
  196.   if test -z "$args"
  197.   then
  198.     $NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file=$pid_file @MYSQLD_DEFAULT_SWITCHES@ >> $err_log 2>&1
  199.   else
  200.     eval "$NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file=$pid_file @MYSQLD_DEFAULT_SWITCHES@ $args >> $err_log 2>&1"
  201.   fi
  202.   if test ! -f $pid_file # This is removed if normal shutdown
  203.   then
  204.     break
  205.   fi
  206.   if @IS_LINUX@
  207.   then
  208.     # Test if one process was hanging.
  209.     # This is only a fix for Linux (running as base 3 mysqld processes)
  210.     # but should work for the rest of the servers.
  211.     # The only thing is ps x => redhat 5 gives warnings when using ps -x.
  212.     # kill -9 is used or the process won't react on the kill.
  213.     numofproces=`ps xa | grep -v "grep" | grep -c $ledir/$MYSQLD`
  214.     echo -e "nNumber of processes running now: $numofproces" | tee -a $err_log
  215.     I=1
  216.     while test "$I" -le "$numofproces"
  217.     do 
  218.       PROC=`ps xa | grep $ledir/$MYSQLD | grep -v "grep" | tail -1` 
  219. for T in $PROC
  220. do
  221.   break
  222. done
  223. #    echo "TEST $I - $T **"
  224. if kill -9 $T
  225. then
  226.   echo "$MYSQLD process hanging, pid $T - killed" | tee -a $err_log
  227. else 
  228.   break
  229. fi
  230. I=`expr $I + 1`
  231.     done
  232.   fi
  233.   echo "`date +'%y%m%d %H:%M:%S  mysqld restarted'`" | tee -a $err_log
  234. done
  235. echo "`date +'%y%m%d %H:%M:%S  mysqld ended'`" | tee -a $err_log
  236. echo "" | tee -a $err_log