zoukankan      html  css  js  c++  java
  • MySQL配置问题

    MySQL version:5.7

    一、/etc/mysql/conf.d/ 和 /etc/mysql/mysql.conf.d/

      在linux部署MySQL时,配置文件为/etc/mysql/my.cnf. 但其实my.cnf是长这样的:

    #
    # The MySQL database server configuration file.
    #
    # You can copy this to one of:
    # - "/etc/mysql/my.cnf" to set global options,
    # - "~/.my.cnf" to set user-specific options.
    # 
    # One can use all long options that the program supports.
    # Run program with --help to get a list of available options and with
    # --print-defaults to see which it would actually understand and use.
    #
    # For explanations see
    # http://dev.mysql.com/doc/mysql/en/server-system-variables.html
    
    #
    # * IMPORTANT: Additional settings that can override those from this file!
    #   The files must end with '.cnf', otherwise they'll be ignored.
    #
    
    !includedir /etc/mysql/conf.d/
    !includedir /etc/mysql/mysql.conf.d/

    从注释( You can copy this to one of: # - "/etc/mysql/my.cnf" to set global options, # - "~/.my.cnf" to set user-specific options)可以得知,我们在my.cnf里头可以配置全局参数,以及用户参数。

    但是直接配置在my.cnf里?-并不是

    从注释( IMPORTANT: Additional settings that can override those from this file! # The files must end with '.cnf', otherwise they'll be ignored.)可以得知,my.cnf是包含了 /etc/mysql/conf.d//etc/mysql/mysql.conf.d/ 两个目录,即只要是在此两个目录

    下的后缀为.cnf文件都会被读取,所以MySQL的配置是放到了 /etc/mysql/conf.d/ 和 /etc/mysql/mysql.conf.d/.

    但是如果在两个目录下都有.cnf且都配置了相同的参数,则根据顺序, /etc/mysql/mysql.conf.d/.下的配置会覆盖 /etc/mysql/conf.d/ 的配置,所以一般在一个目录下配置即可

  • 相关阅读:
    for else
    改变注释字体颜色
    多继承
    模块的查找顺序
    如何跳出多层嵌套
    验证码书写
    正则表达式(一)
    四、列表与超链接
    三、表格与表单
    二、HTML入门
  • 原文地址:https://www.cnblogs.com/lzj123/p/13952997.html
Copyright © 2011-2022 走看看