mysql中找不到my.ini文件的问题及解决

bangongJIAO1@c 发布于 2025-11-29 阅读(2)
目录
  • mysql找不到my.ini文件
    • 问题描述
    • 解决办法
  • mysql免安装版找不到my.ini配置文件

    mysql找不到my.ini文件

    问题描述

    刚刚在修改mysql默认配置的时候,发现找不到my.ini文件。按照其他搬运工的说法,打开隐藏的文件也是不行。自己摸索了半天终于找到解决方案。

    解决办法

    1、打开“隐藏文件”显示:

    mysql中找不到my.ini文件的问题及解决

    2、在url哪里输入: %ProgramData%

    mysql中找不到my.ini文件的问题及解决

    2.1、回车以后会得到如下结果,打开mysql文件夹

    mysql中找不到my.ini文件的问题及解决

    2.2、然后会得到如下

    mysql中找不到my.ini文件的问题及解决

    打开MySQLServer那个文件夹里面就会有my.ini文件了。

    mysql中找不到my.ini文件的问题及解决

    mysql免安装版找不到my.ini配置文件

    一直用的免安装版本,突然有一天开发时控制台一直报错

    Data source rejected establishment of connection, message from server: “Too many connections”

    上网搜

    说是要我修改最大连接,然后我左找右找没找到my.ini/my-default.ini。

    不管是c:\下的programData还是安装目录,所以直接新建一个使用。

    mysql中找不到my.ini文件的问题及解决

    直接新建文本文件就行,改后缀。

    my.ini里面的内容

    # For advice on how to change settings please see
    # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
    # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
    # *** default location during install, and will be replaced if you
    # *** upgrade to a newer version of MySQL.
    [client]
    default-character-set = utf8mb4
    [mysql]
    default-character-set = utf8mb4
    [mysqld]
    character-set-client-handshake = FALSE
    character-set-server = utf8mb4
    collation-server = utf8mb4_bin
    init_connect='SET NAMES utf8mb4'
    # Remove leading # and set to the amount of RAM for the most important data
    # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
    innodb_buffer_pool_size = 128M
    # Remove leading # to turn on a very important data integrity option: logging
    # changes to the binary log between backups.
    # log_bin
    # These are commonly set, remove the # and set as required.
    basedir = D:\Software\MySql\mysql-8.0.26-winx64
    datadir = D:\Software\MySql\mysql-8.0.26-winx64\data
    port = 3306
    # server_id = .....
    # Remove leading # to set options mainly useful for reporting servers.
    # The server defaults are faster for transactions and fast SELECTs.
    # Adjust sizes as needed, experiment to find the optimal values.
    join_buffer_size = 128M
    sort_buffer_size = 16M
    read_rnd_buffer_size = 16M 
    sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
    

    需要注意的一点是

    mysql中找不到my.ini文件的问题及解决

    这里填自己安装目录。

    不知道的话查询一下:show variables like ‘datadir’;

    mysql中找不到my.ini文件的问题及解决

    指定一下

    mysqld  --defaults-file="D:\Software\MySql\mysql-8.0.26-winx64\my.ini"

    mysql中找不到my.ini文件的问题及解决

    测试一下;修改最大连接

    mysql中找不到my.ini文件的问题及解决

    ===>

    mysql中找不到my.ini文件的问题及解决

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持。