mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
5c5dc27ac7
and mysql322-server. - mit-pthread support was dropped. - libmysqlclient.so.9 was renamed to libmysqlclient.so.6 (like the one coming with MySQL-3.22.x) so ports depending on MySQL having a chance of using 3.23.x if installed. mysql322-(client|server) and mysql323-(client|server) can't be installed at the same time, of course.
67 lines
2.0 KiB
Plaintext
67 lines
2.0 KiB
Plaintext
--- scripts/safe_mysqld.sh.orig Fri Sep 8 09:50:24 2000
|
|
+++ scripts/safe_mysqld.sh Sat Sep 23 21:16:08 2000
|
|
@@ -36,26 +36,9 @@
|
|
done
|
|
}
|
|
|
|
-MY_PWD=`pwd`
|
|
-# Check if we are starting this relative (for the binary release)
|
|
-if test -d $MY_PWD/data/mysql -a -f ./share/mysql/english/errmsg.sys -a \
|
|
- -x ./bin/mysqld
|
|
-then
|
|
- MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are
|
|
- ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is
|
|
- DATADIR=$MY_BASEDIR_VERSION/data
|
|
-# Check if this is a 'moved install directory'
|
|
-elif test -f ./var/mysql/db.frm -a -f ./share/mysql/english/errmsg.sys -a \
|
|
- -x ./libexec/mysqld
|
|
-then
|
|
- MY_BASEDIR_VERSION=$MY_PWD # Where libexec, share and var are
|
|
- ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is
|
|
- DATADIR=$MY_BASEDIR_VERSION/var
|
|
-else
|
|
- MY_BASEDIR_VERSION=@prefix@
|
|
- DATADIR=@localstatedir@
|
|
- ledir=@libexecdir@
|
|
-fi
|
|
+MY_BASEDIR_VERSION=@prefix@
|
|
+DATADIR=@localstatedir@
|
|
+ledir=@libexecdir@
|
|
|
|
pid_file=$DATADIR/`@HOSTNAME@`.pid
|
|
MYSQL_UNIX_PORT=@MYSQL_UNIX_ADDR@
|
|
@@ -154,33 +137,6 @@
|
|
if test ! -f $pid_file # This is removed if normal shutdown
|
|
then
|
|
break;
|
|
- fi
|
|
- if @IS_LINUX@
|
|
- then
|
|
- # Test if one process was hanging.
|
|
- # This is only a fix for Linux (running as base 3 mysqld processes)
|
|
- # but should work for the rest of the servers.
|
|
- # The only thing is ps x => redhat 5 gives warnings when using ps -x.
|
|
- # kill -9 is used or the process won't react on the kill.
|
|
- numofproces=`ps xa | grep -v "grep" | grep -c $ledir/mysqld`
|
|
- echo -e "\nNumber of processes running now: $numofproces" | tee -a $err_log
|
|
- I=1
|
|
- while test "$I" -le "$numofproces"
|
|
- do
|
|
- PROC=`ps xa | grep $ledir/mysqld | grep -v "grep" | tail -1`
|
|
- for T in $PROC
|
|
- do
|
|
- break
|
|
- done
|
|
- # echo "TEST $I - $T **"
|
|
- if kill -9 $T
|
|
- then
|
|
- echo "mysqld process hanging, pid $T - killed" | tee -a $err_log
|
|
- else
|
|
- break
|
|
- fi
|
|
- I=`expr $I + 1`
|
|
- done
|
|
fi
|
|
echo "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log
|
|
done
|