12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
ADADADADAD
mysql数据库 时间:2024-12-24 19:13:11
作者:文/会员上传
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
12-09
#!/bin/bashport=3306basedir=/application/mysqldatadir=/data/$port/datapidfile=/data/$port/mysql.pidsock=/data/$port/mysql.sockbindir=$basedir/binSTATUS=$1USAGE(
以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。
#!/bin/bash
port=3306
basedir=/application/mysql
datadir=/data/$port/data
pidfile=/data/$port/mysql.pid
sock=/data/$port/mysql.sock
bindir=$basedir/bin
STATUS=$1
USAGE(){
echo "Usage: /data/$port/mysql {start|stop|restart}"
}
start(){
if [ ! -f $sock ]
then
echo $echo_n "Starting MySQL"
else
echo "ERROR: $sock exists you can remove"
fi
}
stop(){
mysqld_pid=`cat $pidfile`
echo "Shutting down MySQL"
if (kill -0 $mysqld_pid 2>/dev/null)
then
kill $mysqld_pid
fi
}
#restart(){
#stop
#sleep 5
#start
#}
main () {
case $STATUS in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 5
start
;;
*)
USAGE
esac
}
main
11-20
11-19
11-20
11-20
11-20
11-19
11-20
11-20
11-19
11-20
11-19
11-19
11-19
11-19
11-19
11-19