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

前端 未结 13 1698
南笙
南笙 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:12

    You can also comment the line in my.cnf file which is defining the log location, so mysql will consider its default path and will start properly.

    log-bin = /var/log/mysql/mysql-bin.log -> #log-bin = /var/log/mysql/mysql-bin.log.

    This will be helpful if you are not concerned much about logs.

提交回复
热议问题