Details of the order in which MySQL reads my.cnf

Details of the order in which MySQL reads my.cnf

The order in which MySQL reads my.cnf

1. mysql.server startup method

basedir=/opt/mysql/mysql3315
datadir=/opt/mysql/mysql3315/data

To search, -e will be brought in for parsing when parsing the parameter file

/opt/mysql/mysql3315/bin/my_print_defaults -e /opt/mysql/mysql3315/my.cnf mysqld server mysql_server mysql.server

That is, --defaults-extra-file, the obtained directory includes basedir, datadir, and pid-file, but the pid-file parameter may not exist

Use as follows

if test -z "$mysqld_pid_file_path"
then
  mysqld_pid_file_path=$datadir/`hostname`.pid
else
  case "$mysqld_pid_file_path" in
    /* ) ;;
    * )mysqld_pid_file_path="$datadir/$mysqld_pid_file_path" ;;
  esac
fi

Convert the location and file name. The final parameters are as follows:

/opt/mysql/mysql3315/bin/mysqld_safe --datadir=/opt/mysql/mysql3315/data/ --pid-file=/opt/mysql/mysql3315/data//mgr4.pid

2. mysqld_safe startup method

  • Reverse the location of mysqld_safe to get the basedir directory and set MYSQL_HOME to basedir
  • Then there are many parameters to be obtained when parsing the parameter file, so they are not listed here.
/opt/mysql/mysql3315/bin/my_print_defaults mysqld server mysql_server mysql.server

Note: -e is not set here because the MYSQL_HOME directory will automatically parse the parameter files below it. The parsing location is shown at the end.

  • Start mysqld
nohup /opt/mysql/mysql3315/bin/mysqld --basedir=/opt/mysql/mysql3315 --datadir=/opt/mysql/mysql3315/data 
--plugin-dir=/opt/mysql/mysql3315/lib/plugin --user=mysql 
--log-error=/opt/mysql/mysql3315/logs/mysql3315.err --pid-file=/opt/mysql/mysql3315/data//mgr4.pid 
--socket=/opt/mysql/mysql3315/data/mysql3315.sock --port=3315

Note: If open_files_limits is set, open_file_limits will be used here to overwrite the configuration in the parameter file used by mysqld

  • Loop monitoring pid file

After startup, the following loop will be performed. The eval command will be used to block the call to mysqld. If the process exits, it will return and perform a loop judgment. Finally, it will determine whether the pid exists and whether it is a normal shutdown of mysqld. The judgment method is kill -0 pid to determine whether the mysqld process exists. If it doesn't exist, pull it up.

while true
do
  echo 1
  start_time=`date +%M%S`
  eval_log_error "$cmd"
  • About loading jemalloc
if [ -n "$mysqld_ld_library_path" ]; then
  new_text="$mysqld_ld_library_path"
  [ -n "$LD_LIBRARY_PATH" ] && new_text="$new_text:$LD_LIBRARY_PATH"
  text="${text}LD_LIBRARY_PATH="`shell_quote_string "$new_text"`' '
fi

  • Start it yourself using mysqld_safe
```
/home/work/ssd1/mysql/install/bin/mysqld_safe --defaults-file=/home/work/ssd1/mysql/etc/3307/my.cnf --socket=/home/work/ssd1/mysql/sock/3307/mysql.sock --datadir=/home/work/ssd1/mysql/data/3307 --user=mysql &

If you start my_print_defaults like this, it will bring --defaults-file

/opt/mysql/mysql3320/install/bin/my_print_defaults --defaults-file=/home/work/ssd1/mysql/etc/3307/my.cnf --loose-verbose mysqld server

3. About the order in which mysqld and my_print_defaults read my.cnf

In fact, this function init_default_directories function
The order is:

<—defaults-file is read first, and only reads this configuration file, and is the first option>

  • /etc/my.cnf
  • /etc/mysql/my.cnf
  • DEFAULT_SYSCONFDIR my.cnf under compile-time configuration
  • MYSQL_HOME setting. mysqld_safe will set MYSQL_HOME and read the following my.cnf.
  • --defaults-extra-file settings, my_print_defaults and mysqld are both set by this.
  • ~/.my.cnf
  • From the order of parsing, the command line parameters will be loaded last.

After parsing is complete, all parameters are listed. If there are multiple parameters with the same name, the last one will take effect.

This is the end of this article about the details of the order in which MySQL reads my.cnf. For more information about the order in which MySQL reads my.cnf, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Use shell scripts to add, delete, modify, and check mysql and configure my.cnf
  • Solve the problem of no my.cnf file in /etc when installing mysql on Linux
  • Introduction to /etc/my.cnf parameters in MySQL 5.7
  • Solution to the problem that the configuration file my.cnf in MySQL cannot be started due to permission issues
  • MySQL service performance optimization—my.cnf_my.ini configuration instructions (16G memory)
  • Solution to the ineffectiveness of modifying MySQL my.cnf configuration
  • MySQL 5.5.x my.cnf parameter configuration optimization details
  • Detailed explanation of MySQL configuration file my.cnf optimization (mysql5.5)
  • MySQL performance optimization road --- modify the configuration file my.cnf
  • MariaDB (MySQL branch) my.cnf configuration file Chinese annotated version
  • MySQL configuration file my.cnf parameter optimization and Chinese detailed explanation
  • Detailed explanation of MySQL configuration file my.cnf in Chinese, with sharing of MySQL performance optimization methods
  • Comparison of the Chinese version of the MySQL configuration file my.cnf
  • Detailed analysis of MySQL configuration parameters my.ini/my.cnf

<<:  Add unlimited fonts to your website with Google Web Fonts

>>:  CSS tips for controlling animation playback and pause (very practical)

Recommend

Example code of Vue3 encapsulated magnifying glass component

Table of contents Component Infrastructure Purpos...

jQuery plugin to implement floating menu

Learn a jQuery plugin every day - floating menu, ...

How to set utf-8 encoding in mysql database

Modify /etc/my.cnf or /etc/mysql/my.cnf file [cli...

Solution to MySQL being unable to start due to excessive memory configuration

Problem Description MySQL reports an error when s...

React Native JSI implements sample code for RN and native communication

Table of contents What is JSI What is different a...

Implementation of MySQL asc and desc data sorting

Data sorting asc, desc 1. Single field sorting or...

The principles and defects of MySQL full-text indexing

MySQL full-text index is a special index that gen...

10 Best Practices for Building and Maintaining Large-Scale Vue.js Projects

Table of contents 1. Use slots to make components...

Solve the 1251 error when establishing a connection between mysql and navicat

I reinstalled the computer and installed the late...

Introduction to the process of building your own FTP and SFTP servers

FTP and SFTP are widely used as file transfer pro...

Summary of naming conventions for HTML and CSS

CSS naming rules header: header Content: content/c...

Implementation of MySQL's MVCC multi-version concurrency control

1 What is MVCC The full name of MVCC is: Multiver...

How to install vim editor in Linux (Ubuntu 18.04)

You can go to the Ubuntu official website to down...

MySQL GROUP_CONCAT limitation solution

effect: The GROUP_CONCAT function can concatenate...