Ssh

如何在通過 SSH 登錄 RHEL8 時禁用 Web 控制台和 Red Hat Insights 提示?

  • April 13, 2022

每當我通過 SSH 登錄到我的 RHEL8 伺服器時,我都會列印這些行:

Web console: https://<myserver>:9090/ or https://<myip>:9090/

This system is not registered to Red Hat Insights. See https://cloud.redhat.com/
To register this system, run: insights-client --register

如何禁用這些提示?

我在寫完這個問題之前就想通了,所以我想我會和其他人分享這個。

# ls /etc/motd.d -lh
total 0
lrwxrwxrwx. 1 root root 17 Mar 12 19:46 cockpit -> /run/cockpit/motd
lrwxrwxrwx. 1 root root 41 Jun 18 22:01 insights-client -> /etc/insights-client/insights-client.motd

這些符號連結中的每一個都會在登錄時向 SSH 終端列印一些內容。在這種情況下,cockpit列印 Web 控制台消息並insights-client列印洞察提示。

因此,只需這樣做:

# cd /etc/motd.d
# [sudo] rm -f cockpit insights-client

經驗證可以在RHEL8.4.

引用自:https://serverfault.com/questions/1067299