如何停止系统日志消息以在 Solaris 上写入控制台
如何停止系统日志消息在Solaris上写入控制台?
how to stop syslog messages to write console on solaris ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何停止系统日志消息在Solaris上写入控制台?
how to stop syslog messages to write console on solaris ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以编辑
/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, issuekill -HUP <pid of syslog daemon>
to "reinitialize" the config应该是
svcadm 禁用 svc:/system/system-log:default
it should be
svcadm disable svc:/system/system-log:default
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.