如何修复:mysql:[ERROR]在配置文件/etc/mysql/my.cnf中找到没有前面组的选项?

时间:2017-06-01 03:35:31

标签: mysql

尝试访问mysql时出现以下错误:

  

mysql:[ERROR]在配置文件/etc/mysql/my.cnf第22行找到没有前面组的选项!   mysql:[ERROR]默认处理中的致命错误。程序已中止!

/etc/mysql/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/
bind-address = 127.0.0.1
general_log_file = /var/log/mysql/mysql.log
general_log = 1

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:8)

my.cnf中的所有选项都必须位于“组”中:

[mysqld]
bind-address 127.0.0.1

此示例中的组是“mysqld”。该组由选项前面的一行命名,该组的名称在方括号中。

在开始提供选项之前,您的文件没有任何指定的组标识符。

阅读https://dev.mysql.com/doc/refman/5.7/en/option-files.html以获取有关如何格式化MySQL选项文件的更多详细信息。

答案 1 :(得分:1)

在我的情况下,该组为[mysql]

因此,只需将[mysql]放在开头。

答案 2 :(得分:0)

我从文件开头删除了所有注释(以#开头的行)。有效。我只是将注释移到文件的末尾进行记录。

我认为与MySQL期望的相比,在Windows中保存文件存在LF-CR / LF差异。