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/ 的配置,所以一般在一个目录下配置即可

  • 相关阅读:
    最小的k个数
    数组中出现次数超过一半的数字
    字符串的排列
    二叉搜索树与双向链表
    复杂链表的复制
    二叉树中和为某一值的路径
    centos7安装wrk
    【胡思乱想】JNI与线程池的维护
    【胡思乱想】命令模式中,命令对象如何解耦Invoker和Receiver
    【胡思乱想】命令模式 与 Thread Runnable
  • 原文地址:https://www.cnblogs.com/lzj123/p/13952997.html
Copyright © 2011-2022 走看看