MySQL数据库神秘表删除
我需要一些关于如何追踪我的一台服务器上的奇怪事件的建议。我不是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 mysql 服务器上激活查询日志记录。在 debian/ubuntu 系统中,您可以在“/etc/mysql/my.cnf”找到conf文件my.cnf。 (不知道你用的是哪个发行版)
找到这些行
并取消注释它们删除“#”
重新启动mysql服务器
您可以从现在开始在日志文件中看到更改
注意:您不应该在生产服务器上使用它,否则您可能会遇到一些性能问题
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
and uncomment them deleting the "#"
restart the mysql server
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