MySQL Admin script

Source: Internet
Author: User

1. Environment files

-bash-4.1$ more Mysql_env.ini#!/bin/sh#set envmysql_user=rootmysql_pass=123456 ' #check parameterif [$#-ne 1]then        Host_port=3306else        host_port=$1fi-bash-4.1$

2. Create a startup script

-bash-4.1$ more Mysql_db_startup.sh#!/bin/shsource/opt/mysql/scripts/mysql_env.iniecho "Startup MySQL Service: Localhost_ "${host_port}/opt/mysql/bin/mysqld_safe--defaults-file=/opt/mysql/my.cnf  

3. Create a close script

-bash-4.1$ more Mysql_db_shutdown.sh#!/bin/shsource/opt/mysql/scripts/mysql_env.iniecho "shutdown MySQL Service: Localhost_ "${host_port}/opt/mysql/bin/mysqladmin--defaults-file=/opt/mysql/my.cnf-u${mysql_user}-p${MYSQL_PASS }-hlocalhost  shutdown-bash-4.1$

4. Create a quick Login script

5. Add the above script directory to the PATH environment variable
echo "Export path=/opt/mysql/scripts/:\ $PATH" >> ~/.bash_profile

SOURCE ~/.bash_profile

MySQL Admin 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.