try to change bin log directory: mysql-bin.index not found (Errcode: 13)

前端 未结 13 1696
南笙
南笙 2021-01-30 22:53

MySQL 5.1.54 Ubuntu 11.04

I\'am try to change bin log directory in my.conf as:

[mysqld]
log_bin=/home/developer/logs/mysql/mysql-bin.log
<
13条回答
  •  走了就别回头了
    2021-01-30 23:26

    mysqld: File '/data/log/mysql/mysql-bin.index' not found (Errcode: 2 - No such file or directory)

    I was really stuck in the middle of my MySQL Master - Slave setup. Finally the above was a permission issue, adding the below command solved my issue.

    chown -R mysql:mysql /data/log/mysql/

提交回复
热议问题