惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
I
InfoQ
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Stack Overflow Blog
Stack Overflow Blog
T
Tailwind CSS Blog
D
DataBreaches.Net
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
雷峰网
雷峰网
Recent Announcements
Recent Announcements
量子位
B
Blog RSS Feed

Feel.name

Centos7安装sngrep – Feel.name DNS大全 – Feel.name Linux下转换文件编码 – Feel.name Linux服务器密钥登陆方法 – Feel.name 升级到最新OpenSSH_9.3p1, OpenSSL 3.1.1 – Feel.name centos 7上创建sftp服务 – Feel.name linux清理缓存(cache) – Feel.name 通过yum来下载RPM包的方法 – Feel.name 年末守望新年期盼 – Feel.name
message 日志里面的“Created slice User Slice of root.”日志...
Feel · 2022-12-21 · via Feel.name

CentOS 7 的 /var/log/messages 系统记录內会大量出现 slice User 的信息如下:

Dec 20 01:00:01 feel systemd: Started Session 6755 of user root.
Dec 20 01:00:01 feel systemd: Removed slice User Slice of root.
Dec 20 01:01:01 feel systemd: Created slice User Slice of root.
Dec 20 01:01:01 feel systemd: Started Session 6756 of user root.
Dec 20 01:01:01 feel systemd: Removed slice User Slice of root.
Dec 20 01:10:01 feel systemd: Created slice User Slice of root.
Dec 20 01:10:01 feel systemd: Started Session 6757 of user root.
Dec 20 01:10:01 feel systemd: Removed slice User Slice of root.
Dec 20 01:20:01 feel systemd: Created slice User Slice of root.
Dec 20 01:20:01 feel systemd: Started Session 6758 of user root.
Dec 20 01:20:01 feel systemd: Removed slice User Slice of root.
Dec 20 01:30:01 feel systemd: Created slice User Slice of root.
Dec 20 01:30:01 feel systemd: Started Session 6759 of user root.

主要的原因是和 systemd有关,可以通过过滤规则来隐藏

echo 'if $programname == "systemd" and ($msg contains "Starting Session" or $msg contains "Started Session" or $msg contains "Created slice" or $msg contains "Starting user-" or $msg contains "Starting User Slice of" or $msg contains "Removed session" or $msg contains "Removed slice User Slice of" or $msg contains "Stopping User Slice of") then stop' >/etc/rsyslog.d/ignore-systemd-session-slice.conf

systemctl restart rsyslog

参考来源
https://access.redhat.com/solutions/1564823