Hi mmac,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
The error message you're encountering indicates that there is an issue with the iSCSI connection, specifically related to port 3260, which is the default port used for iSCSI communication.
I would recommend the following troubleshooting steps:
- Since the error message suggests that port 3260 may already be in use, you can check for any processes that might be using this port:
*sudo netstat -tuln | grep 3260*
- Even though you've turned off the firewall and SELinux, it's worth double-checking that there are no lingering rules that could be affecting the connection.
- Use the following command to check for any active firewall rules: sudo iptables -L -n
- Ensure that SELinux is indeed disabled by running: sestatus
- You can test connectivity to the iSCSI target using
telnet
ornc
(netcat) to see if you can reach the target on port 3260:*telnet <IP_ADDRESS_OF_ISCSI_TARGET> 3260*
- If everything seems fine, try using the
iscsiadm
command to reconnect to the target. - Sometimes, restarting the iSCSI service can help resolve port conflicts. If you have any further queries, do let us know. If the answer is helpful, please click "Accept Answer" and "Upvote it."