技術(shù)員聯(lián)盟提供win764位系統(tǒng)下載,win10,win7,xp,裝機(jī)純凈版,64位旗艦版,綠色軟件,免費(fèi)軟件下載基地!

當(dāng)前位置:主頁(yè) > 教程 > 服務(wù)器類(lèi) >

Linux中安裝sosreport和supportconfig來(lái)收集系統(tǒng)信息

來(lái)源:技術(shù)員聯(lián)盟┆發(fā)布時(shí)間:2018-02-23 00:07┆點(diǎn)擊:

  sosreport是一個(gè)類(lèi)型于supportconfig 的工具,sosreport是python編寫(xiě)的一個(gè)工具,適用于centos(和redhat一樣,包名為sos)、ubuntu(其下包名為sosreport)等大多數(shù)版本的linux 。sosreport在github上的托管頁(yè)面為:https://github.com/sosreport/sos ,而且默認(rèn)在很多系統(tǒng)的源里都已經(jīng)集成有。如果使用的是正版redhat,在出現(xiàn)系統(tǒng)問(wèn)題,尋求官方支持時(shí),官方一般也會(huì)通過(guò)sosreport將收集的信息進(jìn)行分析查看。需要注意的是在一些老的redhat發(fā)行版中叫sysreport ------ 如redhat4.5之前的版本中。

  一、sosreport的安裝

  在默認(rèn)使用linux發(fā)行版的源進(jìn)行安裝時(shí),由于在不同的系統(tǒng)上包名稱(chēng)也會(huì)有差異,所以使用的命令也不同,如redhat和ubuntu平臺(tái)的安裝如下:

  代碼如下:

  // redhat/centos下的安裝

  # yum -y insatll sos

  // ubuntu下的安裝

  # sudo apt-get install sosreport

  二、sosreport用法

  可以使用sosreport --help或man sosreport 獲取使用幫助手冊(cè),如下:

  代碼如下:

  [root@361way ~]# sosreport --help

  Usage: sosreport [options]

  Options:

  -h, --help show this help message and exit

  -l, --list-plugins list plugins and available plugin options

  -n NOPLUGINS, --skip-plugins=NOPLUGINS

  disable these plugins

  -e ENABLEPLUGINS, --enable-plugins=ENABLEPLUGINS

  enable these plugins

  -o ONLYPLUGINS, --only-plugins=ONLYPLUGINS

  enable these plugins only

  -k PLUGOPTS, --plugin-option=PLUGOPTS

  plugin options in plugname.option=value format (see

  -l)

  -a, --alloptions enable all options for loaded plugins

  --batch batch mode - do not prompt interactively

  --build keep sos tree available and dont package results

  -v, --verbose increase verbosity

  --quiet only print fatal errors

  --debug enable interactive debugging using the python debugger

  --ticket-number=TICKET_NUMBER

  specify ticket number

  --name=CUSTOMER_NAME specify report name

  --config-file=CONFIG_FILE

  specify alternate configuration file

  --tmp-dir=TMP_DIR specify alternate temporary directory

  --report Enable HTML/XML reporting

  --profile turn on profiling

  -z COMPRESSION_TYPE, --compression-type=COMPRESSION_TYPE

  compression technology to use [auto, zip, gzip, bzip2,

  xz] (default=auto)

  Some examples:

  enable cluster plugin only and collect dlm lockdumps:

  # sosreport -o cluster -k cluster.lockdump

  disable memory and samba plugins, turn off rpm -Va collection:

  # sosreport -n memory,samba -k rpm.rpmva=off

  上面也列出了具體操作的示例。其中-l 參數(shù)會(huì)列出當(dāng)前enable和disable的所有服務(wù)插件及當(dāng)前available的所有插件。

  代碼如下:

  [root@361way log]# sosreport -a --report

  sosreport (version 3.0)

  This command will collect diagnostic and configuration information from

  this CentOS Linux system and installed applications.

  An archive containing the collected information will be generated in

  /var/tmp and 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://www.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 and last name [361way.com]:

  Please enter the case number that you are generating this report for:

  Running plugins. Please wait ...

  Running 68/68: yum...

  Creating compressed archive...

  Your sosreport has been generated and saved in:

  /var/tmp/sosreport-361way.com-20140912204339.tar.xz

  The checksum is: eaf5b2cbb1e9be68d41be5e5a60a61b6

  Please send this file to your support representative.

  如上所示,我使用-A 啟用所有的模塊,--report是開(kāi)啟所有的結(jié)果以html /xml 的格式一個(gè)總的報(bào)告。生成的包需要通過(guò)下面的命令進(jìn)行解包。

  代碼如下:

  # xz -d ***.tar.xz

  # tar -xvf ***.tar

  或直接使用下面的命令一步完成解壓

  代碼如下:

  tar xvJf ***.tar.xz

  在解包后的sos_reports 目錄會(huì)有report的結(jié)果sos.html文件生成,同時(shí)會(huì)有sos.txt文件生成,該文件內(nèi)列出了具體執(zhí)行的命令及copy 文件的一些信息。

  由于頁(yè)面較大,這里只截出了最上面的部分,列出了所有的收集模塊,下面alerts 給出了報(bào)警模塊的信息。再往下就是具體到每一個(gè)模塊的信息。

  三、sosreport配置文件

  sosreport的配置文件是/etc/sos.conf ,默認(rèn)內(nèi)容如下:

  代碼如下:

  [root@361way ~]# cat /etc/sos.conf

  [general]

  #ftp_upload_url = ftp://example.com/incoming

  #gpg_keyring = /usr/share/sos/rhsupport.pub

  #gpg_recipient = support@redhat.com

  smtp_server = None

  [plugins] //此處可以設(shè)置默認(rèn)enable和disable的模塊

  #disable = rpm, selinux, dovecot

  [tunables] //可調(diào)參數(shù)

  #rpm.rpmva = off

  #general.syslogsize = 15