MySQL数据库神秘表删除

发布于 2024-09-15 09:56:15 字数 268 浏览 4 评论 0原文

我需要一些关于如何追踪我的一台服务器上的奇怪事件的建议。我不是 Linux 专家,所以如果我没有正确解释,请耐心等待。我们有一个测试服务器,在 Linux 操作系统上运行 apache、php5、mysql、postgresql。最近,除了少数几个表外,mysql 数据库已删除了所有表。我调查了 Apache、MySQL 和网站日志,但没有发现任何奇怪的地方。服务器上有 Sugarcrm、davical 和 drupal 站点。

下次发生这种情况时我可以做些什么来跟踪吗?

谢谢 史蒂夫

I need some advice on how to track down a weird occurence on one of my servers. I'm not a linux expert so please bear with me if I haven't explained properly. We have a test server that is running apache, php5, mysql, postgresql on linux OS. Recently the mysql database have had all tables removed apart from a few. I've investigated the Apache, MySQL and website logs but can't spot anything odd. The server has sugarcrm, davical and drupal sites on there.

Is there something I can do to track the next time this happens?

Thanks
Steve

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

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

发布评论

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

评论(1

尐偏执 2024-09-22 09:56:15

您应该在 mysql 服务器上激活查询日志记录。在 debian/ubuntu 系统中,您可以在“/etc/mysql/my.cnf”找到conf文件my.cnf。 (不知道你用的是哪个发行版)
找到这些行

#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1

并取消注释它们删除“#”

general_log_file        = /var/log/mysql/mysql.log
general_log             = 1

重新启动mysql服务器

sudo service mysql restart

您可以从现在开始在日志文件中看到更改

注意:您不应该在生产服务器上使用它,否则您可能会遇到一些性能问题

You should activate query logging on your mysql server. In debian/ubuntu systems you can find the conf file my.cnf at "/etc/mysql/my.cnf". (I dont know which distribution you use)
Find the lines

#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1

and uncomment them deleting the "#"

general_log_file        = /var/log/mysql/mysql.log
general_log             = 1

restart the mysql server

sudo service mysql restart

you can see the changes in the log file from now on

note: You shouldnt use this on production server, or you may face some performance problems

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