mysql 配置文件 my.cnf 增加 lower_case_table_names = 1 服务启动不了
原因:在MySQL8.0之后的版本,只允许在数据库初始化时指定,之后不允许修改了
mysql 配置文件 my.cnf 增加 lower_case_table_names = 1 服务启动不了
报错信息:Job for mysqld.service failed because the control process exited with error code. See "systemctl status mysqld.service" and "journalctl -xe" for details.
具体情况说明:
原来mysql服务正常运行
修改配置文件 my.cnf,简单的增加一行配置信息:lower_case_table_names = 1
配置文件 my.cnf 修改前的内容:
配置文件 my.cnf 修改后的内容:
重启mysql服务失败,报错信息:Job for mysqld.service failed because the control process exited with error code. See "systemctl status mysqld.service" and "journalctl -xe" for details.
原因:在MySQL8.0之后的版本,只允许在数据库初始化时指定,之后不允许修改了