關於redhat上iscsi的安裝:iSCSI target HowTo on Enterprise Linux (RHEL4)
關於redhat上iscsi的安裝:
iSCSI target HowTo on Enterprise Linux (RHEL4)
Table of contents [showhide]
1 About
2 Install the Target
3 Configure the Target
4 Configure the Linux Client
5 Resources
6 Corrections and Better Ways
[edit]About
This is a brief guide to setup an iSCSI Target and Initiator on RHEL4 using the iSCSI Enterprise Target (IET) () software for Linux and the stock RHEL4 Initiator. The motivation for this was to provide a iSCSI target for Red Hat Inc's, GFS () (manual ()). Make sure you check out the iscsi-target website and for more infromation on iSCSI in general look at this guide (http://www.cuddletech.com/articles/iscsi/index.html) from Ben Rockwood .
[edit]Install the Target
1. Install RHEL4, I used kickstart with just "@ base" for packages. Configure the system with two drives sda and sdb or create two logical volumes(lvm). The first disk is for the OS and the second for the iSCSI storage. Run up2date and install the latest kernel.
up2date kernel
2 Reboot the box to use the updated kernel and then install the kernel source files, the openssl development packages, the gcc compiler and rpm-build needed to build the iscsi target source .
up2date kernel-devel openssl-devel gcc rpm-build
3. Download the rpm source package from , maintained by Bastiaan Bakker. As of this writing use version 0.4.12 as 0.4.13 will fail with the updated kernel (2.6.9-22.0.2.EL when I did this). I used /usr/src/iscsitarget to download the rpm as this is a OS resource, you can put it were ever you want. A quick note, Unless your a developer don't be tempted to complie from pure source, rpm stops you from having to chase down files from a "make && make install". The Redhat Package Manager is just that, a package manager, use it :-).
a. As root, make the directory for the package.
mkdir /usr/src/iscsitarget
b. Change into the newly created directory.
cd /usr/src/iscsitarget
c. Download the iscsitarget source from cryptoforge.
wget
or you can grab the src.rpm directly from here
wget http://www.digicola.com/developer/iscsitarget-0.4.12-6.src.rpm
d. create the rpms from the rpm.src file.
rpmbuild --rebuild iscsitarget-0.4.12-6.src.rpm
e. This will build the iscsitarget and iscsi-kernel rpms, install the rpms with the normal commands.
rpm -Uvh /usr/src/redhat/RPMS/i386/iscsitarget-0.4.12-6.i386.rpm /usr/src/redhat/RPMS/i386/iscsitarget-kernel-0.4.12-6_2.6.9_22.0.2.EL.i386.rpm
f. Add iscsi-target to chkconfig and enable it.
chkconfig --add iscsi-target
chkconfig --level 2345 iscsi-target on
or
chkconfig iscsi-target on
[edit]Configure the Target
1. The configuration file for the iscsi-target is ietd.conf located in /etc. The following is the ietd.conf file that I am using to share sdb as an iscsi disk.
# iscsi target configuration
Target iqn.2000-12.com.digicola:storage.lun1
IncomingUser gfs secretsecret
OutgoingUser
Lun 0 Path=/dev/sdb,Type=fileio
Alias iDISK0
#MaxConnections 6
The iedt.conf file that I use is straight forward enough.
The IncomingUser and OutgoingUser at the begining of the file defines users allowed to query the iscsi session (If empty then everyone is allowed). Note: The iscsi spec states that the password is 12 characters, (from what I have read) the MS initiator requires it.
Targets definitions start with "Target" and the target name. The target name must be a globally unique name, the iSCSI standard defines the "iSCSI Qualified Name" as follows: iqn.yyyy-mm.
The target can also require authentication, this time I used the user gfs with the password of secretsecret for the incoming user (iscsi initiator).
The Type "fileio" is the default and can be used for disk, file or LVM.
MaxConnections, This is no longer required as it is an outdated option.
2. Start the iscsi-target deamon and check /var/log/messages for success.
service iscsi-target restart
[edit]Configure the Linux Client
1. Install the iscsi-initiator-utils with up2date
up2date iscsi-initiator-utils
2. This installs the iscsi initiator on to the linux client along with a man page and rc start scripts. The iscsi initiator is configured with the iscsi.conf file located in /etc. Below is the iscsi.conf file used for the target above.
# simple iscsi.conf
DiscoveryAddress=172.30.0.28
OutgoingUserName=gfs
OutgoingPassword=secretsecret
LoginTimeout=15
DiscoveryAddress=172.30.0.28
3. Start the iscsi initiator and cross your fingers
service iscsi start
4. Check that the disk is visiable under proc, if it's not look in /var/log/messages on both the client and the host system.
cat /proc/scsi/scsi
Below is the output from my /proc/scsi/scsi
[root@gfs1 init.d]# cat /proc/scsi/scsi
Attached devices:
Host: scsi0 Channel: 00 Id: 00 Lun: 00
Vendor: VMware, Model: VMware Virtual S Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: IET Model: VIRTUAL-DISK Rev: 0
Type: Direct-Access ANSI SCSI revision: 04
5. Next run the iscsi-ls command
iscsi-ls
Here is the output from this example
*******************************************************************************
SFNet iSCSI Driver Version ...4:0.1.11(12-Jan-2005)
*******************************************************************************
TARGET NAME : iqn.2000-12.com.digicola:storage.lun1
TARGET ALIAS :
HOST ID : 1
BUS ID : 0
TARGET ID : 0
TARGET ADDRESS : 172.30.0.28:3260,1
SESSION STATUS : ESTABLISHED AT Thu Feb 9 01:22:37 EST 2006
SESSION ID : ISID 00023d000001 TSIH 100
*******************************************************************************
6. Voila! you should now have a new SCSI disc avaiable for use. Now you can use fdisk to partition the disk (fdisk /dev/sdb) and use mkfs to format the partition (which is out of the scope of this howto).
7. Finally set the iscsi service start automatically
chkconfig iscsi on
[edit]Resources
If you need more information, run into problems using this howto or want to go more indepth for iSCSI, here is a list of resources out on the web.
http://www.cuddletech.com/articles/iscsi/index.html
該文章轉載自網路大本營:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-245784/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【ISCSI】-iSCSI Initiator與 Target 的安裝、配置與連線過程備忘
- redhat 5 iscsiRedhat
- Linux iscsi target版本問題Linux
- Linux掛載ISCSI TARGET磁碟Linux
- Centos 7 Iscsi targetCentOS
- linux iSCSI target配置全過程Linux
- Openfiler配置ISCSI Target及FC Target
- linux iscsi initiator 安裝配置薦Linux
- Centos 7安裝iscsiCentOS
- Iscsi Target config lv
- Install iSCSI target for Linux with kernel 2.6.14(zt)Linux
- Win10系統怎麼連線iscsi target_Win10連線iscsi target的方法Win10
- redhat as 4配置ISCSI共享儲存Redhat
- Redhat linux AS4 環境下iSCSI協議配置RedhatLinux協議
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集OracleLinux
- 在Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集OracleLinux
- RedHat 5.4上iscsi+multipath多路徑儲存配置獲取裝置的wwidRedhat
- Linux iSCSI 設定Linux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(1)OracleLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(6)OracleLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(7)OracleLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(8)OracleLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(10)OracleLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 叢集(11)OracleLinux
- RedHat Enterprise Linux Server 5上安裝Oracle9iRedhatLinuxServerOracle
- Openfiler+RAC的安裝之五--在RAC 節點上配置 iSCSI 卷
- redhat (RHEL5) 連線 iSCSI SAN儲存Redhat
- iscsi linux客戶端Linux客戶端
- linux iscsi配置網摘Linux
- Redhat enterprise linux下安裝rlwrap工具RedhatLinux
- 在 Oracle Enterprise Linux 和 iSCSI 上構建您自己的 Oracle RAC 11g 叢集OracleLinux
- iSCSI技術
- Linux下搭建iSCSI共享儲存Linux
- linux連線iscsi儲存方法Linux
- Linux中,如何配置iSCSI儲存?Linux
- U盤啟動安裝Redhat Enterprise Linux 6.4RedhatLinux
- 在windows2003上安裝Oracle 10.2.0.1 RAC,使用ISCSI盤陣WindowsOracle
- iscsi與multipath搭建