Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How MySQL successfully starts the script

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

I don't know if you have any understanding of articles like MySQL how to successfully start scripts before, but today I'm here to give you a brief talk. If you are interested, let's take a look at the body part. I believe you will definitely gain something after reading how MySQL successfully starts the script.

#bin/bash

#author merci

function mysql_start(){

id=`ps -ef | grep 'mysql' | grep -v 'grep'`

if [ ! -n "$id" ]

then

/usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --user=root &

exit 0

else

echo -e "mysql already running ! "

fi

}

function mysql_stop(){

id=`ps -ef | grep 'mysql' | grep -v 'grep'` | awk '{print $2}'

if [ ! -n "$id" ]

then

echo -e "mysql already stopping ! "

else

for pid in $id

do

kill -9 $pid

echo -e "close process pid :$pid"

done

fi

}

echo -e "1. start mysql service"

echo -e "2. stop mysql service"

read -p "please choose id:" x

case $x in

1)

mysql_start

;;

2)

mysql_stop

;;

*)

echo "please input id !!! "

;;

esac

After reading MySQL how to successfully launch scripts this article, what do you think? If you want to know more about it, you can continue to pay attention to our industry information section.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report