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

Mysql multi-instance shutdown script

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

Share

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

#! / 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

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