Linux 系统用户活动监控工具
任何人都可以建议我开源工具来监视任何 Linux 服务器(Redhat/CentOS)上的用户活动。 我的目标是每天通过电子邮件获取用户登录服务器的信息以及他们所做的更改的报告。我知道 tripwire 和 psacct,但也希望获得更多选项,同时牢记系统性能。
谢谢 拉梅什
Can anyone please suggest me opensource tools to monitor users activity on any of the linux servers(Redhat/CentOS).
My goal is to get a report via email everyday what users logged on the server and what changes they made. I know tripwire and psacct but want to get more options keeping in mind about system performance too..
Thanks
Ramesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,查看 logwatch
它与 Fedora 一起提供,如果您的发行版中没有,应该很容易添加如果
您想要趋势/图表,我建议 munin 添加新模块并编写自己的模块很容易,至少比自己做 rrdtool 更容易。
如果你想跟踪文件更改,你可以使用 cron 来
查找最近 7 天内修改的文件
查找最近 30 分钟内修改的文件
As a starter, Checkout logwatch
it comes with Fedora, should be easy to add if not in your distro
If you want trending/graphing i'd suggest munin it is easy to add new modules and write your own, well, easier then doing rrdtool yourself atleast.
if you want to track file changes you can cron up something like
find files modifed in the last 7 days
find files modified in the last 30 minutes