Linux 系统用户活动监控工具

发布于 2024-12-04 19:47:20 字数 154 浏览 0 评论 0原文

任何人都可以建议我开源工具来监视任何 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 技术交流群。

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

发布评论

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

评论(1

本宫微胖 2024-12-11 19:47:20

首先,查看 logwatch
它与 Fedora 一起提供,如果您的发行版中没有,应该很容易添加如果

您想要趋势/图表,我建议 munin 添加新模块并编写自己的模块很容易,至少比自己做 rrdtool 更容易。

如果你想跟踪文件更改,你可以使用 cron 来

查找最近 7 天内修改的文件

find . -mtime -7

查找最近 30 分钟内修改的文件

find . -mmin -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 . -mtime -7

find files modified in the last 30 minutes

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