What log files should I gather to troubleshoot a storage issue with Anaconda?

Solution Verified - Updated -

Environment

  • Red Hat Enterprise Linux 5
  • Red Hat Enterprise Linux 6
  • Red Hat Enterprise Linux 7

Issue

  • Storage is not available or usable during installation
  • Partition fails during installation

Resolution

  • Retry the installation and continue until the installation can't proceed due to the error.
  • Use the following to break out to a shell after Anaconda has started
    • Ctrl+Alt+F2

Note

  • If Anaconda has not started yet, you will need to use this key combination to send the initial installation steps to the background to access a shell.
    • Ctrl+z
    • Type exit to return to the installation

Gathering troubleshooting logs:

# mkdir /tmp/storage
# cp /tmp/anaconda-tb* /tmp/storage/anaconda-tb.log
# dmesg &> /tmp/storage/dmesg.log
# fdisk -l &> /tmp/storage/fdisk.log
# parted -sl &> /tmp/storage/parted.log
# multipath -ll &> /tmp/storage/mpath.log
# ls -lR &> /tmp/storage/dev.log
# udevadm info --export-db &> /tmp/storage/udev-exportdb.log
# lvm lvs &> /tmp/storage/lvs.log
# lvm vgs &> /tmp/storage/vgs.log
# lvm pvs &> /tmp/storage/pvs.log
# dmsetup info &> /tmp/storage/dmsetup-info.log
# cat /proc/partitions &> /tmp/storage/proc_part.log
# cat /proc/scsi/scsi &> /tmp/storage/proc_scsi.log
# cat /proc/modules &> /tmp/storage/proc_modules.log
# tar cjf anaconda-logs.tar.bz2 /tmp/*log /tmp/storage/*

This solution is part of Red Hat’s fast-track publication program, providing a huge library of solutions that Red Hat engineers have created while supporting our customers. To give you the knowledge you need the instant it becomes available, these articles may be presented in a raw and unedited form.

Comments