我的 mysqldump 脚本一直失败,提示 my.cnf 中没有前面的组

我的 mysqldump 脚本一直失败,提示 my.cnf 中没有前面的组

因此 mysqldump 抛出以下错误:

mysqldump: [ERROR] Found option without preceding group in config file /etc/mysql/my.cnf at line 22!
mysqldump: [ERROR] Fatal error in defaults handling. Program aborted!

我的 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/
event-scheduler=ENABLED

附带问题:我是否应该在配置文件中添加一些内容以增强安全性?我是否可以以某种方式压缩我的表,最好使用 phpmyadmin?

答案1

您看到这种情况的原因可能有两个:

原因 1

您的my.cnf文件没有UTF-8编码。您可以使用命令检查od,看看是否有不在此编码中的内容。

原因 2

[mysqld]您的文件顶部缺少指令。据我所知,您没有该选项,因此只需添加它并重试。

附带问题:我是否应该在配置文件中添加一些内容以提高安全性?

通常,运行 MySQL 仅监听127.0.0.1是一种很好的做法,因为它只允许来自本地计算机的连接。其余安全选项取决于您授予数据库、表等的权限。

我能以某种方式压缩我的表格吗,最好使用 phpmyadmin?

InnoDB 允许压缩。请参阅参考手册了解更多信息。

相关内容