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

  • 相关阅读:
    Django + uWSGI + Nginx 实现生产环境部署
    面试题(一)
    Python基础之路
    Tornado之实例和扩展
    Scrapy源码研究前戏
    算法之基本概念
    RedHat6.2系统安装ipvsadm+keepalived
    oracle11G 同时支持IPV4和IPV6配置
    redhat6.5 安装oracle11G
    python解析字体反爬
  • 原文地址:https://www.cnblogs.com/lzj123/p/13952997.html
Copyright © 2011-2022 走看看