首页 文章

Ubuntu上的mariadb无视my.cnf

提问于
浏览
0

MariaDB版本:10.0.34

Ubuntu版本:16.04.4 LTS

我试图在新安装的mariadb中打开log_bin . 我在 /etc/mysql/conf.d/ 中创建了一个binlog.cnf文件:

[mysqld]
server_id=1
log_bin=/var/lib/mysql/mariadb-bin
log_bin_index=/var/lib/mysql/mariadb-bin.index
log_queries_not_using_indexes
binlog-ignore-db=mysql
binlog-ignore-db=performance_schema
binlog-ignore-db=information_schema
binlog-ignore-db=phpmyadmin
binlog-ignore-db=test

因此 mysqld --print-defaults 表示已读取配置,但 show variables 仍显示log_bin已关闭 .

# mysqld --print-defaults
mysqld would have been started with the following arguments:
--server_id=1 
--log_bin=/var/lib/mysql/mariadb-bin 
--log_bin_index=/var/lib/mysql/mariadb-bin.index 
--binlog-ignore-db=mysql 
--binlog-ignore-db=performance_schema 
--binlog-ignore-db=information_schema 
--binlog-ignore-db=phpmyadmin 
--binlog-ignore-db=test 
[...]

> show variables like '%log_bin%';\G";
+---------------------------------+-------+
| Variable_name                   | Value |
+---------------------------------+-------+
| log_bin                         | OFF   |
| log_bin_trust_function_creators | OFF   |
| sql_log_bin                     | ON    |
+---------------------------------+-------+

文件 /etc/mysql/my.cnf/etc/alternatives/my.cnf 的符号链接,符号链接到 /etc/mysql/mariadb.cnf ...所以我删除了my.cnf链接并创建了一个实际的my.cnf文件,而不是mariadb.cnf的副本 . 根据https://stackoverflow.com/a/46246285/3319392,一个错误可能意味着mariadb可以改变任何东西 .

我已经多次重启了mysql,我甚至试图把垃圾放在my.cnf中,看看mysql是否会抱怨,但事实并非如此 . 错误日志中没有任何内容,当重新启动mysql时,这是syslog:

May 22 16:17:26 smtp2 systemd[1]: Stopping LSB: Start and stop the mysql database server daemon...
May 22 16:17:26 smtp2 mysql[29682]:  * Stopping MariaDB database server mysqld
May 22 16:17:27 smtp2 mysql[29682]:    ...fail!
May 22 16:17:27 smtp2 systemd[1]: mysql.service: Control process exited, code=exited status=1
May 22 16:17:27 smtp2 systemd[1]: Stopped LSB: Start and stop the mysql database server daemon.
May 22 16:17:27 smtp2 systemd[1]: mysql.service: Unit entered failed state.
May 22 16:17:27 smtp2 systemd[1]: mysql.service: Failed with result 'exit-code'.
May 22 16:17:27 smtp2 systemd[1]: Starting LSB: Start and stop the mysql database server daemon...
May 22 16:17:27 smtp2 mysql[29706]:  * Starting MariaDB database server mysqld
May 22 16:17:27 smtp2 mysql[29706]:    ...done.
May 22 16:17:27 smtp2 systemd[1]: Started LSB: Start and stop the mysql database server daemon.

/ etc / mysql /中的文件许可

drwxr-xr-x   4 root root 4096 May 22 16:50 .
drwxr-xr-x 108 root root 4096 May 17 06:33 ..
drwxr-xr-x   2 root root 4096 May 22 16:56 conf.d
-rw-------   1 root root  277 Mar 22 16:01 debian.cnf
-rwxr-xr-x   1 root root 1426 Mar  6 10:15 debian-start
-rw-r--r--   1 root root  869 May 22 15:04 mariadb.cnf
drwxr-xr-x   2 root root 4096 Mar 22 16:01 mariadb.conf.d
-rw-r--r--   1 root root  868 May 22 16:21 my.cnf

/etc/mysql/conf.d/中的文件许可

-rw-r--r-- 1 mysql mysql  303 May 22 16:56 binlog.cnf
-rw-r--r-- 1 root  root     8 Jan 21  2017 mysql.cnf
-rw-r--r-- 1 root  root    55 Jan 21  2017 mysqldump.cnf

/ var / lib / mysql /中的文件许可:

drwxr-xr-x  7 mysql mysql     4096 May 22 16:00 .
drwxr-xr-x 48 root  root      4096 May  2 06:16 ..
-rw-rw----  1 mysql mysql    16384 Apr 11 16:43 aria_log.00000001
-rw-rw----  1 mysql mysql       52 Apr 11 16:43 aria_log_control
-rw-r--r--  1 root  root         0 Mar 22 16:01 debian-10.0.flag
-rw-rw----  1 mysql mysql 12582912 May 22 16:58 ibdata1
-rw-rw----  1 mysql mysql 50331648 May 22 16:58 ib_logfile0
-rw-rw----  1 mysql mysql 50331648 Mar 22 16:01 ib_logfile1
-rw-rw----  1 mysql mysql        0 May 22 15:27 mariadb-bin.index
-rw-rw----  1 mysql mysql        0 Mar 22 16:01 multi-master.info
drwx------  2 mysql root      4096 Mar 22 16:01 mysql
-rw-rw----  1 mysql mysql        0 May 22 14:48 mysql-bin.index
-rw-------  1 root  root        15 Mar 22 16:01 mysql_upgrade_info
drwx------  2 mysql mysql     4096 Mar 22 16:01 performance_schema
drwx------  2 mysql mysql     4096 Apr 10 16:20 phpmyadmin
drwx------  2 mysql mysql     4096 May 22 16:58 postfix
drwx------  2 mysql mysql     4096 Mar 22 16:02 test

1 回答

  • 0

    我从朋友那里得到了一些帮助:-)

    在这个Ubuntu版本上, /etc/mysql 目录有一些带有大量* .cnf文件的子目录 . 我将binlog.cnf放在subdir conf.d /中,但另一个带有空[mysqld]部分的文件后来加载到了subir mariadb.conf.d中,覆盖了我的...所以将我的binlog配置移动到 mariadb.conf.d/50-server.cnf 解决了这个问题 .

相关问题