不知为什么,mongodb里面的内容,全部没有了。我以为是系统的问题。
后来通过查询mongodb日志,返现有人连接了我的mongodb并且删除了我的库。
因为我的mongodb是默认端口没有密码的,就给了这坑人的黑客趁虚而入
也不知道为啥只给我删了库并没有留下勒索邮箱
后来就加了密码,mongodb加密码的方式,可查看网站其他文章
所以mongodb的日志,能让你看出操作历史来。
日志路径
/etc/mongod.conf
$ cat /etc/mongod.conf# mongod.conf# Where to store the data.# Note: if you run mongodb as a non-root user (recommended) you may# need to create and set permissions for this directory manually,# e.g., if the parent directory isn't mutable by the mongodb user.dbpath=/var/lib/mongodb3#where to loglogpath=/var/log/mongodb/mongod.log#...