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

推荐订阅源

美团技术团队
T
The Blog of Author Tim Ferriss
C
Check Point Blog
博客园_首页
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
L
LangChain Blog
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
Vercel News
Vercel News
博客园 - Franky
V
V2EX
IT之家
IT之家
U
Unit 42
N
Netflix TechBlog - Medium
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 叶小钗
H
Help Net Security
V
Visual Studio Blog
GbyAI
GbyAI

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