MySQL startup script

Source: Internet
Author: User

MySQL startup script
#!/bin/bash
mysql_port=3308
Mysql_username= "Admin"
mysql_password= "Password"
Function_start_mysql ()
{
printf "Starting mysql...\n"
/bin/sh/usr/local/mysql/bin/mysqld_safe--defaults-file=/data/dbdata_${mysql_port}/my.cnf 2>&1 >/dev/ Null &
}
Function_stop_mysql ()
{
printf "stoping mysql...\n"
/usr/local/mysql/bin/mysqladmin-u ${mysql_username}-p${mysql_password}-s/data/dbdata_${mysql_port}/mysql.sock Shutdown
}
Function_restart_mysql ()
{
printf "Restarting mysql...\n"
Function_stop_mysql
Function_start_mysql
}
Function_kill_mysql ()
{
Kill-9 $ (Ps-ef | grep ' Bin/mysqld_safe ' | grep ${mysql_port} | awk ' {printf} ')
Kill-9 $ (Ps-ef | grep ' Libexec/mysqld ' | grep ${mysql_port} | awk ' {printf} ')
}
Case $ in
Start
Function_start_mysql;;
Stop
Function_stop_mysql;;
Kill
Function_kill_mysql;;
Restart
Function_stop_mysql
Function_start_mysql;;
*)
echo "Usage:/data/dbdata_${mysql_port}/mysqld {start|stop|restart|kill}";;
Esac

MySQL startup script

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.