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

  • 相关阅读:
    简单地通过Python库使用python的socket编程
    js 实现继承的几种方式
    JAVA中获取当前系统时间
    IntelliJ Idea 常用快捷键列表
    关于报错:There is already 'xxxController' bean method的解决方法
    mysql 使用 GROUP BY 时报错 ERROR 1055 (42000)
    安装系统,用cmd进行分区
    Bootstrap关闭当前页
    bootstrap的日期选择器
    Bootstrap如何关闭弹窗
  • 原文地址:https://www.cnblogs.com/lzj123/p/13952997.html
Copyright © 2011-2022 走看看