2021-05-12 14:32:11
Sosreport:收集系統紀錄檔和診斷資訊的工具
如果你是 RHEL 管理員,你可能肯定聽說過 Sosreport :一個可延伸、可移植的支援資料收集工具。它是一個從類 Unix 作業系統中收集系統設定詳細資訊和診斷資訊的工具。當使用者提出支援服務單時,他/她必須執行此工具並將由 Sosreport 工具生成的結果報告傳送給 Red Hat 支援人員。然後,執行人員將根據報告進行初步分析,並嘗試找出系統中的問題。不僅在 RHEL 系統上,你可以在任何類 Unix 作業系統上使用它來收集系統紀錄檔和其他偵錯資訊。
安裝 Sosreport
Sosreport 在 Red Hat 官方系統倉庫中,因此你可以使用 Yum 或 DNF 包管理器安裝它,如下所示。
$ sudoyum install sos
要麼,
$ sudo dnf install sos
在 Debian、Ubuntu 和 Linux Mint 上執行:
$ sudo apt install sosreport
用法
安裝後,執行以下命令以收集系統設定詳細資訊和其他診斷資訊。
$ sudo sosreport
系統將要求你輸入系統的一些詳細資訊,例如系統名稱、案例 ID 等。相應地輸入詳細資訊,然後按確認鍵生成報告。如果你不想更改任何內容並使用預設值,只需按確認鍵即可。
我的 CentOS 7 伺服器的範例輸出:
sosreport (version 3.5)
This command will collect diagnostic and configuration information from
thisCentOSLinux system and installed applications.
An archive containing the collected information will be generated in
/var/tmp/sos.DiJXi7and may be provided to a CentOS support
representative.
Any information provided to CentOS will be treated in accordance with
the published support policies at:
https://wiki.centos.org/
The generated archive may contain data considered sensitive and its
content should be reviewed by the originating organization before being
passed to any third party.
No changes will be made to system configuration.
Press ENTER to continue,or CTRL-C to quit.
Please enter your first initial andlast name [server.ostechnix.local]:
Please enter the caseid that you are generating this report for[]:
Setting up archive ...
Setting up plugins ...
Running plugins.Please wait ...
Running73/73:yum...
Creating compressed archive...
Your sosreport has been generated and saved in:
/var/tmp/sosreport-server.ostechnix.local-20180628171844.tar.xz
The checksum is:8f08f99a1702184ec13a497eff5ce334
Please send thisfile to your support representative.
如果你不希望系統提示你輸入此類詳細資訊,請如下使用批次處理模式。
$ sudo sosreport --batch
正如你在上面的輸出中所看到的,生成了一個歸檔報告並儲存在 /var/tmp/sos.DiJXi7
中。在 RHEL 6/CentOS 6 中,報告將在 /tmp
中生成。你現在可以將此報告傳送給你的支援人員,以便他可以進行初步分析並找出問題所在。
你可能會擔心或想知道報告中的內容。如果是這樣,你可以通過執行以下命令來檢視它:
$ sudotar-tf /var/tmp/sosreport-server.ostechnix.local-20180628171844.tar.xz
要麼,
$ sudovim/var/tmp/sosreport-server.ostechnix.local-20180628171844.tar.xz
請注意,上述命令不會解壓存檔,而只顯示存檔中的檔案和資料夾列表。如果要檢視存檔中檔案的實際內容,請首先使用以下命令解壓存檔:
$ sudotar-xf /var/tmp/sosreport-server.ostechnix.local-20180628171844.tar.xz
存檔的所有內容都將解壓當前工作目錄中 ssosreport-server.ostechnix.local-20180628171844/
目錄中。進入目錄並使用 cat
命令或任何其他文字瀏覽器檢視檔案內容:
$ cd sosreport-server.ostechnix.local-20180628171844/
$ catuptime
17:19:02 up 1:03,2users, load average:0.50,0.17,0.10
有關 Sosreport 的更多詳細資訊,請參閱手冊頁。
$ man sosreport
就是這些了。希望這些有用。還有更多好東西。敬請關注!
乾杯!
via:Sosreport
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx
本文永久更新連結地址:https://www.linuxidc.com/Linux/2018-07/153082.htm
相關文章