mysql 到系统日志

发布于 2024-10-19 10:10:36 字数 100 浏览 0 评论 0原文

我想将有关 mysql 数据库性能的信息(表空间、查询数量...)记录在一个文件中,然后转发到系统日志远程服务器。 Mysql已安装 在 Linux 上。是否可以?

谢谢

I would like to log information on mysql database performances (tables spaces, number of queries...) in a file and then forward to a syslog remote server. Mysql is installed
on Linux. Is it possible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谈情不如逗狗 2024-10-26 10:10:36

创建日志文件例如:
% sudo touch filename.log

设置所有者/组
% sudo chown mysql:wheel filename.log

将权限设置为 -rw-r-----
% sudo chmod 644 filename.log

要将花费超过 2 秒的查询记录到 /var/log 目录中的日志文件中,请将这些内容添加到 my.cnf 文件中:

[mysqld]
log_slow_queries=/var/log/mysql_slow_query.log
long_query_time=2

Creating a log file for example:
% sudo touch filename.log

Setting owner/group
% sudo chown mysql:wheel filename.log

Setting permissions to -rw-r-----
% sudo chmod 644 filename.log

To log queries taking longer than 2 seconds to a log file in /var/log directory add these to the my.cnf file:

[mysqld]
log_slow_queries=/var/log/mysql_slow_query.log
long_query_time=2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文