Debugging problems with the open-iscsi initiator


I talked about the open-iscsi initiator in a previous post, and briefly touched on debugging problems. If you want to get additional debugging data for the iscsid daemon, you can add the “-d 8” option to the iscsi initialization file:

$ less /etc/init.d/iscsid

start()
{
echo -n $"Turning off network shutdown. "
# we do not want iscsi or network to run during system shutdown
# incase there are RAID or multipath devices using
# iscsi disks
chkconfig --level 06 network off
rm /etc/rc0.d/*network
rm /etc/rc6.d/*network

echo -n $"Starting iSCSI daemon: "
modprobe -q iscsi_tcp
modprobe -q ib_iser
daemon iscsid -d 8
RETVAL=$?
echo
[ $RETVAL -eq 0 ] || return

touch /var/lock/subsys/iscsid

success
echo
}

This will cause the daemon to write a bunch of debugging data to the syslog logs, which you can then use to isolate problems.

This article was posted by Matty on 2009-04-24 09:27:00 -0400 -0400