iscsi issues
CentOS does not do all the SLES automagic things you want with iSCSI so... here we go:
# iSCSI Target Discovery
# Login to the target portal
# Show all the iSCSI Sessions on the host
# To logout all the sessions
# Rescan the session you want:
Thanks for playing :)
# iSCSI Target Discovery
iscsiadm –-mode discovery –-type sendtargets --portal
# Login to the target portal
iscsiadm –-mode node --target --portal --login
# Show all the iSCSI Sessions on the host
iscsiadm --mode session
# To logout all the sessions
# To logout from a particular sessioniscsiadm --mode node -U all
Iscsiadm --mode node -u --portal
# Rescan the session you want:
iscsiadm -m session -r <session_id> -R
Thanks for playing :)