Turning logging off for the whole duration of the MySQL server process.
1 2 3 | File '/var/log/slow_query.log' not found (Errcode: 13 - Permission denied) [ERROR] Could not open / var /log/slow_query.log for logging (error 13). Turning logging off for the whole duration of the MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it. File '/var/log/query.log' not found (Errcode: 13 - Permission denied) |
在配置慢查询的时候,指定的文件一直没出现,查看了mysql日志发现这个问题;
经过一阵网上搜索,没有收获;
认真看了错误信息,原来是文件权限不够。
解决:
1、使用root用户登录,在指定的文件夹下新建文件,如:
cd /var/log
touch slow_query.log
touch query.log
2、对新建的文件进行更改
chown mysql slow_query.log
chown mysql query.log
3、重启mysql:service mysql restart
登录mysql进行测试
select sleep(6);
现在指定文件中
select sleep(6);
# Time: 160517 16:52:15
# User@Host: root[root] @ localhost [127.0.0.1] Id: 5
# Query_time: 3.313177 Lock_time: 0.000292 Rows_sent: 843 Rows_examined: 1015609
成功了!!!
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· 语音处理 开源项目 EchoSharp
· 《HelloGitHub》第 106 期
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 使用 Dify + LLM 构建精确任务处理应用
2015-05-17 请求的操作无法在使用用户映射区域打开的文件上执行