Difference between revisions of "Using iSCSI targets from Linux machine"

From Notes_Wiki
m
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<yambe:breadcrumb self="Using iSCSI targets from Linux machine">Miscellaneous OS configuration|Miscellaneous OS configuration</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Miscellaneous OS configuration]] > [[Using iSCSI targets from Linux machine]]
=Using iSCSI targets from Linux machine=
 
'''There are updated articles on this at [[CentOS 7.x iSCSI]]'''


===Dicovering iSCSI targets===
===Dicovering iSCSI targets===
Line 32: Line 33:




<yambe:breadcrumb self="Using iSCSI targets from Linux machine">Miscellaneous OS configuration|Miscellaneous OS configuration</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Miscellaneous OS configuration]] > [[Using iSCSI targets from Linux machine]]

Latest revision as of 15:49, 22 July 2022

Home > CentOS > CentOS 6.x > Miscellaneous OS configuration > Using iSCSI targets from Linux machine

There are updated articles on this at CentOS 7.x iSCSI

Dicovering iSCSI targets

The following command can be used to scan for avaiable iSCSI targets:

iscsiadm -m discoverydb --type=st --interface=br0 --portal=<iscsi_server_IP>:3260 --op=new


Connecting iSCSI disk

Following command can be used to login on iSCSI target

iscsiadm -m discovery -p <iscsi_server_ip>:3260 -l

Sometimes even

iscsiadm -m node -p <iscsi_server_ip>:3260 -L all 

may be required for things to work.


To disconnect iSCSI disk

To disconnect a drive use following steps:

  1. Use 'iscsiadm -m session' to list running sessions
  2. Then use 'iscsiadm -m session -r <session_number> -u' to logout from given session

Use 'man iscsiadm' for more information



Home > CentOS > CentOS 6.x > Miscellaneous OS configuration > Using iSCSI targets from Linux machine