An experienced person will show you how to develop a professional and standardized MySQL startup script

An experienced person will show you how to develop a professional and standardized MySQL startup script

Every qualified Linux operation and maintenance personnel should be proficient or proficient in Shell script programming, because Shell scripting language is almost the simplest language of all programming languages. If Shell script is not good, it means that the operation and maintenance road may end before it even begins. ——Old boy teacher

#!/bin/bash
# chkconfig: 2345 64 36 #Configure system auto-start# description: A very fast and reliable SQL database engine.
##############################################################
# File Name: mysqld
# Version: V1.0
# Author: oldboy
# Organization: www.oldboyedu.com
# Created Time : 2018-06-05 08:58:19
##############################################################
#Introduce the system function library. /etc/init.d/functions

#Basic path definition basedir='/application/mysql'
bindir='/application/mysql/bin'
lockdir='/var/lock/subsys'                    
lock_file_path="$lockdir/mysql"
mysqld_pid_file_path='$basedir/data/`uname -n`.pid'

#Success prompt function log_success_msg(){
  #action is a special prompt function, $@ is all parameters.
  action "SUCCESS! $@" /bin/true
}
#Failure prompt function log_failure_msg(){
  action "ERROR! $@" /bin/false
 }
 
#mysql start function start(){
  echo $"Starting MySQL"
  #Test whether mysqld_safe is executable if test -x $bindir/mysqld_safe
  then
    #Background execution starts mysql command $bindir/mysqld_safe &>/dev/null &
    #Get the return value retval=$?
    # Check if the return value is 0
    if [ $retval -eq 0 ]
    then
      #Call the success prompt function.
      log_success_msg "mysql Startup"
      if test -w "$lockdir" #Judge whether the lock directory is writable.
      then
        touch "$lock_file_path" #Create a lock file.
      fi
      return $retval #Giving a return value is a professional gesture.
    else
      log_failure_msg "MySQL Startup" #Prompt of failed function call.
      return $retval
    fi
  else
    log_failure_msg "Couldn't find MySQL server ($bindir/mysqld_safe)"
  fi
}
#Stop the MySQL function.
stop(){
  #Judge whether the mysql pid file size is 0.
  if test -s "$mysqld_pid_file_path"
  then
    #Read pidfile
    mysqld_pid=`cat "$mysqld_pid_file_path"`
    #Judge whether the process corresponding to mysql pid exists.
    if (kill -0 $mysqld_pid 2>/dev/null)
    then
      echo $"Shutting down MySQL"
      kill $mysqld_pid #Stop the MySQL command.
      retval=$?
      if [ $retval -eq 0 ]
      then
        log_success_msg "MySQL Stop" #Call the stop success function.
        if test -f "$lock_file_path"
        then
          rm -f "$lock_file_path" #Delete the lock file.
        fi
        return $retval
      else
        log_failure_msg "MySQL Stop."
        return $retval
      fi
    else
      log_failure_msg "MySQL server process mysqld_pid is not running!"
      rm "$mysqld_pid_file_path"
    fi 
  else
    log_failure_msg "MySQL server PID file is null or does not exist!"
  fi
}
#Receive the passed parameters and execute the corresponding function.
case "$1" in
  start)
    start
    retval=$?
    ;;
  stop)
    stop
    retval=$?
    ;;
  restart)
    stop
    sleep 2 #This is very important, take a rest.
    start
    retval=$?
    ;;
  *)
    echo $"Usage:$0 {start|stop|restart}"
    exit 2
esac
exit $retval #After executing the script, it is more professional to have a return value.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of MySQL usage specifications
  • Super detailed MySQL usage specification sharing
  • Summary of MySQL database usage specifications
  • Summary of MySQL development standards and usage skills
  • MySQL database development specifications [recommended]
  • MySQL database naming standards and conventions
  • Detailed explanation of Mysql table creation and index usage specifications
  • MYSQL database naming and design specifications
  • Professional MySQL development design specifications and SQL writing specifications

<<:  jQuery implements nested tab function

>>:  Use of Linux relative and absolute paths

Recommend

How to achieve seamless token refresh

Table of contents 1. Demand Method 1 Method 2 Met...

Various correct postures for using environment variables in Webpack

Table of contents Write in front Business code us...

How to query the minimum available id value in the Mysql table

Today, when I was looking at the laboratory proje...

CocosCreator Universal Framework Design Network

Table of contents Preface Using websocket Constru...

Vertical and horizontal splitting of MySQL tables

Vertical Split Vertical splitting refers to the s...

How to remove spaces or specified characters in a string in Shell

There are many methods on the Internet that, alth...

How to disable foreign key constraint checking in MySQL child tables

Prepare: Define a teacher table and a student tab...

Implementation of Docker deployment of SQL Server 2019 Always On cluster

Table of contents Docker deployment Always on clu...

Typora code block color matching and title serial number implementation code

Effect: The title has its own serial number, the ...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...

How to authorize all the contents of a folder to a certain user in Linux?

【Problem Analysis】 We can use the chown command. ...

How to configure Nginx's anti-hotlinking

Experimental environment • A minimally installed ...

Detailed explanation of Nginx http resource request limit (three methods)

Prerequisite: nginx needs to have the ngx_http_li...

How to implement batch deletion of large amounts of data in MySQL large tables

The question is referenced from: https://www.zhih...

RHCE installs Apache and accesses IP with a browser

1. at is configured to write "This is a at t...