如何停止系统日志消息以在 Solaris 上写入控制台

发布于 2024-08-23 02:14:34 字数 32 浏览 6 评论 0原文

如何停止系统日志消息在Solaris上写入控制台?

how to stop syslog messages to write console on solaris ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

凉风有信 2024-08-30 02:14:34

您可以编辑 /etc/syslog.conf 中的条目以定向到另一个文件,例如 /var/log/syslog 而不是 /dev/console代码>.之后,发出 kill -HUP的 pid> 来“重新初始化”配置

you can edit the entries in the /etc/syslog.conf to direct to another file eg /var/log/syslog instead of /dev/console. After that, issue kill -HUP <pid of syslog daemon> to "reinitialize" the config

冰火雁神 2024-08-30 02:14:34

应该是

svcadm 禁用 svc:/system/system-log:default

it should be

svcadm disable svc:/system/system-log:default

半夏半凉 2024-08-30 02:14:34

svcadm disable svc:/system/system-log:default 关闭了 syslog,在对 /etc/syslog 进行正确更改后,您还需要运行 svcadm enable svc:/system/system-log:default 将其重新打开。 conf 所以它会做你想做的事。您可能可以注释掉该行,因为它也会记录到 /var/adm/messages.log 中的文件中。

关闭 syslog 不是一个好主意。

svcadm disable svc:/system/system-log:default turned syslog off you need to also run svcadm enable svc:/system/system-log:default to turn it back on, after you made the right changes to /etc/syslog.conf so it does what you want. You can probably just comment out the line as it is also logged to file in /var/adm/messages.log

Turning syslog off is not a good idea.

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