Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 1 | --- |
| 2 | # This yaml formatted file contains defaults items to collect FFDC for the targeted system |
| 3 | # COMMANDS - List of commands to be run on the corresponding targeted system (inband) |
| 4 | # to generate and/or collect data |
| 5 | # FILES - List of files; with complete path; on the corresponding targeted system |
| 6 | # to be copied to external destination |
| 7 | # PROTOCOL - Protocol used to communicate with targeted system; ssh, Rest, redfish, etc |
| 8 | # |
| 9 | # Note: Items in COMMANDS and FILES are not necessarily one-to-one correspondence. |
| 10 | # For example, a file could have been created by an internal process, |
| 11 | # and is listed in FILES to be collected. |
Peter D Phan | 04aca3b | 2021-06-21 10:37:18 -0500 | [diff] [blame] | 12 | # |
Peter D Phan | 2b8052d | 2021-06-22 10:55:41 -0500 | [diff] [blame] | 13 | |
Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 14 | # Commands and Files to collect for a given OpenBMC system. |
| 15 | OPENBMC: |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 16 | # Commands and File to take snapshot of linux based system. |
| 17 | # Filename is <OS>_general.txt, where <OS> is in [OPENBMC, RHEL, UBUNTU] |
| 18 | GENERAL: |
| 19 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 20 | - "rm -rf /tmp/*BMC_* /tmp/PEL_* /tmp/pldm* /tmp/PLDM* /tmp/GUARD* |
| 21 | /tmp/fan_* /tmp/DEVTREE /tmp/bmcweb_*" |
| 22 | - 'echo "++++++++++ cat /etc/os-release ++++++++++" >> |
| 23 | /tmp/OPENBMC_general.txt' |
| 24 | - "cat /etc/os-release >> /tmp/OPENBMC_general.txt" |
| 25 | - 'echo -e "\n++++++++++ cat /etc/timestamp ++++++++++" >> |
| 26 | /tmp/OPENBMC_general.txt' |
| 27 | - "cat /etc/timestamp >> /tmp/OPENBMC_general.txt" |
| 28 | - 'echo -e "\n++++++++++ uname -a ++++++++++" >> |
| 29 | /tmp/OPENBMC_general.txt' |
| 30 | - "uname -a >> /tmp/OPENBMC_general.txt" |
| 31 | - 'echo -e "\n++++++++++ cat /etc/timestamp ++++++++++" >> |
| 32 | /tmp/OPENBMC_general.txt' |
| 33 | - "cat /etc/timestamp >> /tmp/OPENBMC_general.txt" |
| 34 | - 'echo -e "\n++++++++++ uptime;cat /proc/uptime ++++++++++" >> |
| 35 | /tmp/OPENBMC_general.txt' |
| 36 | - "uptime >> /tmp/OPENBMC_general.txt" |
| 37 | - "cat /proc/uptime >> /tmp/OPENBMC_general.txt" |
| 38 | - 'echo -e "\n++++++++++ df -hT ++++++++++" >> |
| 39 | /tmp/OPENBMC_general.txt' |
| 40 | - "df -hT >> /tmp/OPENBMC_general.txt" |
| 41 | - 'echo -e "\n++++++++++ date;/sbin/hwclock --show ++++++++++" >> |
| 42 | /tmp/OPENBMC_general.txt' |
| 43 | - "date >> /tmp/OPENBMC_general.txt" |
| 44 | - "/sbin/hwclock --show >> /tmp/OPENBMC_general.txt" |
| 45 | - "/usr/bin/timedatectl >> /tmp/OPENBMC_general.txt" |
| 46 | - 'echo -e "\n++++++++++ /usr/bin/obmcutil state ++++++++++" >> |
| 47 | /tmp/OPENBMC_general.txt' |
| 48 | - "/usr/bin/obmcutil state >> /tmp/OPENBMC_general.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 49 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 50 | - "/tmp/OPENBMC_general.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 51 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 52 | - "SSH" |
Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 53 | |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 54 | OPENBMC_LOGS: |
| 55 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 56 | - "cat /sys/class/watchdog/watchdog1/bootstatus |
| 57 | >/tmp/BMC_flash_side.txt" |
| 58 | - "grep -r . /sys/class/hwmon/* >/tmp/BMC_hwmon.txt" |
| 59 | - "top -n 1 -b >/tmp/BMC_proc_list.txt" |
| 60 | - "ls -Al /proc/*/fd/ >/tmp/BMC_proc_fd_active_list.txt" |
| 61 | - "journalctl --no-pager >/tmp/BMC_journalctl_nopager.txt" |
| 62 | - "journalctl -o json-pretty >/tmp/BMC_journalctl_pretty.json" |
| 63 | - "dmesg >/tmp/BMC_dmesg.txt" |
| 64 | - "cat /proc/cpuinfo >/tmp/BMC_procinfo.txt" |
| 65 | - "cat /proc/meminfo >/tmp/BMC_meminfo.txt" |
| 66 | - "systemctl status --all >/tmp/BMC_systemd.txt" |
| 67 | - "systemctl list-units --failed >/tmp/BMC_failed_service.txt" |
| 68 | - "systemctl list-jobs >/tmp/BMC_list_service.txt" |
| 69 | - "cat /var/log/obmc-console.log >/tmp/BMC_obmc_console.txt" |
| 70 | - "cat /var/log/obmc-console1.log >/tmp/BMC_obmc_console1.txt" |
| 71 | - "peltool -l >/tmp/PEL_logs_list.json" |
| 72 | - { "peltool -a >/tmp/PEL_logs_display.json": 600 } |
| 73 | - { |
| 74 | "peltool -l -a -f >/tmp/PEL_logs_complete_list.json 2>&1": 1200, |
| 75 | } |
| 76 | - { |
| 77 | "peltool -a -f -h>/tmp/PEL_logs_complete_display.json 2>&1": 1200, |
| 78 | } |
| 79 | - { |
| 80 | "strace -p $(pidof pldmd) -o /tmp/pldmd_strace.txt & sleep 60 |
| 81 | ; kill $!": 70, |
| 82 | } |
| 83 | - "hexdump -C /var/lib/phosphor-logging/extensions/pels/badPEL |
| 84 | >/tmp/PEL_logs_badPEL.txt" |
| 85 | - "guard -l >/tmp/GUARD_list.txt" |
| 86 | - "pldmtool fru getfrurecordtable>/tmp/PLDM_fru_record.txt" |
| 87 | - "killall -s SIGUSR1 pldmd; sleep 5" |
| 88 | - "fanctl dump" |
| 89 | - "cat /var/lib/phosphor-software-manager/pnor/rw/DEVTREE > |
| 90 | /tmp/DEVTREE" |
| 91 | - "cat /home/root/bmcweb_persistent_data.json > |
| 92 | /tmp/bmcweb_persistent_data.json" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 93 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 94 | - "/tmp/BMC_flash_side.txt" |
| 95 | - "/tmp/BMC_hwmon.txt" |
| 96 | - "/tmp/BMC_proc_list.txt" |
| 97 | - "/tmp/BMC_proc_fd_active_list.txt" |
| 98 | - "/tmp/BMC_journalctl_nopager.txt" |
| 99 | - "/tmp/BMC_journalctl_pretty.json" |
| 100 | - "/tmp/BMC_dmesg.txt" |
| 101 | - "/tmp/BMC_procinfo.txt" |
| 102 | - "/tmp/BMC_meminfo.txt" |
| 103 | - "/tmp/BMC_systemd.txt" |
| 104 | - "/tmp/BMC_failed_service.txt" |
| 105 | - "/tmp/BMC_list_service.txt" |
| 106 | - "/tmp/BMC_obmc_console.txt" |
| 107 | - "/tmp/BMC_obmc_console1.txt" |
| 108 | - "/tmp/PEL_logs_list.json" |
| 109 | - "/tmp/PEL_logs_complete_list.json" |
| 110 | - "/tmp/PEL_logs_complete_display.json" |
| 111 | - "/tmp/PEL_logs_display.json" |
| 112 | - "/tmp/pldmd_strace.txt" |
| 113 | - "/tmp/PEL_logs_badPEL.txt" |
| 114 | - "/tmp/GUARD_list.txt" |
| 115 | - "/tmp/PLDM_fru_record.txt" |
| 116 | - "/tmp/pldm_flight_recorder" |
| 117 | - "/tmp/fan_control_dump.json" |
| 118 | - "/tmp/DEVTREE" |
| 119 | - "/tmp/bmcweb_persistent_data.json" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 120 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 121 | - "SSH" |
Peter D Phan | 56429a6 | 2021-06-23 08:38:29 -0500 | [diff] [blame] | 122 | |
Peter D Phan | babf296 | 2021-07-07 11:24:40 -0500 | [diff] [blame] | 123 | # DUMP_LOGS: This section provides option to 'SCP if file exist'. |
Peter D Phan | e86d9a5 | 2021-07-15 10:42:25 -0500 | [diff] [blame] | 124 | # COMMANDS: filename is preceded by ls -AX '. |
Peter D Phan | babf296 | 2021-07-07 11:24:40 -0500 | [diff] [blame] | 125 | # FILES: is not needed and is ignored if exists. |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 126 | DUMP_LOGS: |
| 127 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 128 | - "ls -AX /var/lib/systemd/coredump/core.*" |
| 129 | - "ls -AX /var/lib/phosphor-debug-collector/dumps/*/*" |
| 130 | - "ls -AX /var/lib/phosphor-debug-collector/hostbootdump/*/*" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 131 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 132 | - "SCP" |
Peter D Phan | 0c66977 | 2021-06-24 13:52:42 -0500 | [diff] [blame] | 133 | |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 134 | # URLs and Files for OPENBMC redfish |
| 135 | # URLs and Files are one-to-one corresponding. |
| 136 | # File contains the data returned from 'redfishtool GET URL' |
| 137 | REDFISH_LOGS: |
George Keishing | 506b058 | 2021-07-27 09:31:22 -0500 | [diff] [blame] | 138 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 139 | - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always |
| 140 | raw GET /redfish/v1/AccountService/Accounts |
| 141 | - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always |
| 142 | raw GET /redfish/v1/Managers/bmc/LogServices/Dump/Entries |
| 143 | - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always |
| 144 | raw GET /redfish/v1/Systems/system/LogServices/Dump/Entries |
| 145 | - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always |
| 146 | raw GET /redfish/v1/Systems/system/LogServices/EventLog/Entries |
George Keishing | 91308ea | 2021-08-10 14:43:15 -0500 | [diff] [blame] | 147 | - plugin: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 148 | - plugin_name: plugin.redfish.enumerate_request |
| 149 | - plugin_args: |
| 150 | - ${hostname} |
| 151 | - ${username} |
| 152 | - ${password} |
| 153 | - /redfish/v1/ |
| 154 | - json |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 155 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 156 | - "REDFISH_bmc_user_accounts.json" |
| 157 | - "REDFISH_bmc_dump_entries.json" |
| 158 | - "REDFISH_system_dumps_entries.json" |
| 159 | - "REDFISH_event_log_entries.json" |
| 160 | - "REDFISH_enumerate_v1.json" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 161 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 162 | - "REDFISH" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 163 | |
| 164 | # Commands and Files to collect for via out of band IPMI. |
| 165 | IPMI_LOGS: |
| 166 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 167 | - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H |
| 168 | ${hostname} lan print |
| 169 | - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H |
| 170 | ${hostname} fru list |
| 171 | - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H |
| 172 | ${hostname} user list |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 173 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 174 | - "IPMI_LAN_print.txt" |
| 175 | - "IPMI_FRU_list.txt" |
| 176 | - "IPMI_USER_list.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 177 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 178 | - "IPMI" |
George Keishing | eafba18 | 2021-06-29 13:44:58 -0500 | [diff] [blame] | 179 | |
Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 180 | # Commands and Files to collect for all Linux distributions |
| 181 | LINUX: |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 182 | LINUX_LOGS: |
| 183 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 184 | - "cat /sys/firmware/opal/msglog >/tmp/OS_msglog.txt" |
| 185 | - "ppc64_cpu --frequency >/tmp/OS_cpufrequency.txt" |
| 186 | - "dmesg >/tmp/OS_dmesg.txt" |
| 187 | - "cat /var/log/opal-prd* >/tmp/OS_opal_prd.txt" |
| 188 | - "cat /var/log/boot.log >/tmp/OS_boot.txt" |
| 189 | - "cat /proc/cpuinfo >/tmp/OS_procinfo.txt" |
| 190 | - "cat /proc/meminfo >/tmp/OS_meminfo.txt" |
| 191 | - "netstat -a >/tmp/OS_netstat.txt" |
| 192 | - "lspci >/tmp/OS_lspci.txt" |
| 193 | - "lscpu >/tmp/OS_lscpu.txt" |
| 194 | - "lscfg >/tmp/OS_lscfg.txt" |
| 195 | - "journalctl --no-pager -b > /tmp/OS_journalctl_nopager.txt " |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 196 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 197 | - "/tmp/OS_msglog.txt" |
| 198 | - "/tmp/OS_cpufrequency.txt" |
| 199 | - "/tmp/OS_dmesg.txt" |
| 200 | - "/tmp/OS_opal_prd.txt" |
| 201 | - "/tmp/OS_boot.txt" |
| 202 | - "/tmp/OS_procinfo.txt" |
| 203 | - "/tmp/OS_meminfo.txt" |
| 204 | - "/tmp/OS_netstat.txt" |
| 205 | - "/tmp/OS_lspci.txt" |
| 206 | - "/tmp/OS_lscpu.txt" |
| 207 | - "/tmp/OS_lscfg.txt" |
| 208 | - "/tmp/OS_journalctl_nopager.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 209 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 210 | - "SSH" |
Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 211 | |
| 212 | # Commands and Files to collect for Ubuntu Linux only |
Peter D Phan | 04aca3b | 2021-06-21 10:37:18 -0500 | [diff] [blame] | 213 | UBUNTU: |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 214 | GENERAL: |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 215 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 216 | - "rm -rf /tmp/UBUNTU_general.txt" |
| 217 | - 'echo "++++++++++ UBUNTU Rleasae ++++++++++" > |
| 218 | /tmp/UBUNTU_general.txt' |
| 219 | - "cat /etc/os-release >> /tmp/UBUNTU_general.txt" |
| 220 | - 'echo "\n++++++++++ Time stamp ++++++++++" >> |
| 221 | /tmp/UBUNTU_general.txt' |
| 222 | - "date >> /tmp/UBUNTU_general.txt" |
| 223 | - 'echo "\n++++++++++ uname -a ++++++++++" >> |
| 224 | /tmp/UBUNTU_general.txt' |
| 225 | - "uname -a >> /tmp/UBUNTU_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 226 | - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/UBUNTU_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 227 | - "uptime >> /tmp/UBUNTU_general.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 228 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 229 | - "/tmp/UBUNTU_general.txt" |
George Keishing | 86399c9 | 2021-07-01 13:01:49 -0500 | [diff] [blame] | 230 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 231 | - "SSH" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 232 | UBUNTU_LOGS: |
| 233 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 234 | - "{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt" |
| 235 | - "tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt" |
| 236 | - "rm -rf /tmp/sosreport*FFDC*" |
| 237 | - { |
| 238 | "sosreport --batch --tmp-dir /tmp --label FFDC |
| 239 | >/tmp/OS_sosreport.txt": 1200, |
| 240 | } |
| 241 | - "tar -zcvf /tmp/crash.tar.gz /var/crash" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 242 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 243 | - "/tmp/OS_info.txt" |
| 244 | - "/tmp/OS_syslog.txt" |
| 245 | - "/tmp/OS_sosreport.txt" |
| 246 | - "/tmp/sosreport*.tar.xz" |
| 247 | - "/tmp/crash.tar.gz" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 248 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 249 | - "SSH" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 250 | DUMP_LOGS: |
| 251 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 252 | - "ls -AX /tmp/htx/htxerr" |
| 253 | - "ls -AX /tmp/htx/htxmsg" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 254 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 255 | - "SCP" |
George Keishing | 86399c9 | 2021-07-01 13:01:49 -0500 | [diff] [blame] | 256 | |
Peter D Phan | 72ce6b8 | 2021-06-03 06:18:26 -0500 | [diff] [blame] | 257 | # Commands and Files to collect for RHE Linux only |
Peter D Phan | 04aca3b | 2021-06-21 10:37:18 -0500 | [diff] [blame] | 258 | RHEL: |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 259 | GENERAL: |
| 260 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 261 | - "rm -rf /tmp/RHEL_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 262 | - 'echo "++++++++++ RHEL Rleasae ++++++++++" > /tmp/RHEL_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 263 | - "cat /etc/os-release >> /tmp/RHEL_general.txt" |
| 264 | - 'echo -e "\n++++++++++ Time stamp ++++++++++" >> |
| 265 | /tmp/RHEL_general.txt' |
| 266 | - "date >> /tmp/RHEL_general.txt" |
| 267 | - 'echo -e "\n++++++++++ uname -a ++++++++++" >> |
| 268 | /tmp/RHEL_general.txt' |
| 269 | - "uname -a >> /tmp/RHEL_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 270 | - 'echo -e "\n++++++++++ uptime ++++++++++" >> /tmp/RHEL_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 271 | - "uptime >> /tmp/RHEL_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 272 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 273 | - "/tmp/RHEL_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 274 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 275 | - "SSH" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 276 | RHEL_LOGS: |
| 277 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 278 | - "{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt" |
| 279 | - "tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt" |
| 280 | - "rm -rf /tmp/sosreport*FFDC*" |
| 281 | - { |
| 282 | "sosreport --batch --tmp-dir /tmp --label FFDC |
| 283 | >/tmp/OS_sosreport.txt": 1200, |
| 284 | } |
| 285 | - "tar -zcvf /tmp/crash.tar.gz /var/crash" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 286 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 287 | - "/tmp/OS_info.txt" |
| 288 | - "/tmp/OS_syslog.txt" |
| 289 | - "/tmp/OS_sosreport.txt" |
| 290 | - "/tmp/sosreport*.tar.xz" |
| 291 | - "/tmp/crash.tar.gz" |
George Keishing | 86399c9 | 2021-07-01 13:01:49 -0500 | [diff] [blame] | 292 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 293 | - "SSH" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 294 | DUMP_LOGS: |
| 295 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 296 | - "ls -AX /tmp/htx/htxerr" |
| 297 | - "ls -AX /tmp/htx/htxmsg" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 298 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 299 | - "SCP" |
George Keishing | 86399c9 | 2021-07-01 13:01:49 -0500 | [diff] [blame] | 300 | |
George Keishing | 5b43c22 | 2021-07-09 01:10:00 -0500 | [diff] [blame] | 301 | # Commands and Files to collect for SLES Linux only |
| 302 | SLES: |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 303 | GENERAL: |
| 304 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 305 | - "rm -rf /tmp/SLES_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 306 | - 'echo "++++++++++ SLES Rleasae ++++++++++" > /tmp/SLES_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 307 | - "cat /etc/os-release >> /tmp/SLES_general.txt" |
| 308 | - 'echo "\n++++++++++ Time stamp ++++++++++" >> |
| 309 | /tmp/SLES_general.txt' |
| 310 | - "date >> /tmp/SLES_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 311 | - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/SLES_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 312 | - "uname -a >> /tmp/SLES_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 313 | - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/SLES_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 314 | - "uptime >> /tmp/SLES_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 315 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 316 | - "/tmp/SLES_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 317 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 318 | - "SSH" |
George Keishing | 5b43c22 | 2021-07-09 01:10:00 -0500 | [diff] [blame] | 319 | SLES_LOGS: |
| 320 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 321 | - "{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt" |
| 322 | - "tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt" |
| 323 | - "rm -rf /tmp/scc*.txz.md5" |
| 324 | - { "supportconfig >/tmp/OS_supportconfig.txt": 1200 } |
| 325 | - "cp /var/log/scc*.txz.md5 /tmp/" |
| 326 | - "tar -zcvf /tmp/crash.tar.gz /var/crash" |
George Keishing | 5b43c22 | 2021-07-09 01:10:00 -0500 | [diff] [blame] | 327 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 328 | - "/tmp/OS_info.txt" |
| 329 | - "/tmp/OS_syslog.txt" |
| 330 | - "/tmp/OS_supportconfig.txt" |
| 331 | - "/tmp/scc*.txz.md5" |
| 332 | - "/tmp/crash.tar.gz" |
George Keishing | 5b43c22 | 2021-07-09 01:10:00 -0500 | [diff] [blame] | 333 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 334 | - "SSH" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 335 | DUMP_LOGS: |
| 336 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 337 | - "ls -AX /tmp/htx/htxerr" |
| 338 | - "ls -AX /tmp/htx/htxmsg" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 339 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 340 | - "SCP" |
George Keishing | 5b43c22 | 2021-07-09 01:10:00 -0500 | [diff] [blame] | 341 | |
George Keishing | a3f3f59 | 2021-06-17 11:28:04 -0500 | [diff] [blame] | 342 | # Commands and Files to collect for AIX only |
Peter D Phan | 04aca3b | 2021-06-21 10:37:18 -0500 | [diff] [blame] | 343 | AIX: |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 344 | GENERAL: |
| 345 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 346 | - "rm -rf /tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 347 | - 'echo "++++++++++ AIX Release ++++++++++" > /tmp/AIX_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 348 | - "cat /proc/version | tail -1 >> /tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 349 | - 'echo "\n++++++++++ Time stamp ++++++++++" >> /tmp/AIX_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 350 | - "date >> /tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 351 | - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/AIX_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 352 | - "uname -a >> /tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 353 | - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/AIX_general.txt' |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 354 | - "uptime >> /tmp/AIX_general.txt" |
| 355 | - 'echo "\n++++++++++ System Info ++++++++++" >> |
| 356 | /tmp/AIX_general.txt' |
| 357 | - "prtconf | head -15 >> /tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 358 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 359 | - "/tmp/AIX_general.txt" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 360 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 361 | - "SSH" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 362 | AIX_LOGS: |
| 363 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 364 | - "errpt -a >/tmp/OS_errpt.txt ; errclear 0;" |
| 365 | - "bindprocessor -q >/tmp/OS_processors.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 366 | FILES: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 367 | - "/tmp/OS_errpt.txt" |
| 368 | - "/tmp/OS_processors.txt" |
George Keishing | 6ea92b0 | 2021-07-01 11:20:50 -0500 | [diff] [blame] | 369 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 370 | - "SSH" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 371 | DUMP_LOGS: |
| 372 | COMMANDS: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 373 | - "ls -AX /tmp/htx/htxerr" |
| 374 | - "ls -AX /tmp/htx/htxmsg" |
George Keishing | 0c0bdd4 | 2021-07-23 13:36:06 -0500 | [diff] [blame] | 375 | PROTOCOL: |
Patrick Williams | 12e3352 | 2022-12-08 06:13:12 -0600 | [diff] [blame] | 376 | - "SCP" |