Difference between revisions of "Equalogic SAN"

From Pumping Station One
Jump to navigation Jump to search
Line 36: Line 36:
  
 
Now you can make or mount partitions, lvm pvs, or filesystems.
 
Now you can make or mount partitions, lvm pvs, or filesystems.
 +
 +
 +
== Sarting on boot ==
 +
 +
After mounting, I get entries in <code>/etc/iscsi/nodes/iqn.2001-05.com.equallogic:0-8a0906-9b6513102-31bfc4554935466d-fizzle-storage/default</code>
 +
 +
    node.startup = automatic
 +
    node.conn[0].startup = automatic

Revision as of 05:29, 15 November 2014

Managing

The san has several ip addresses:

10.100.200.2, 10.100.200.10, 10.100.200.11, and 10.100.200.12


There is a java management interface on each one at https://10.100.200.2. This interface rarely works correctly, requires disabling a bunch of java security settings, and the applet is signed with an expired certificate.

The easier, more reliable way

   wget --no-check-certificate https://10.100.200.2/lib/equallogic.jar
   wget --no-check-certificate https://10.100.200.2/lib/eqlresources.jar
   wget --no-check-certificate https://10.100.200.2/lib/plastic_laf.jar
   java -cp "*" com.equallogic.eqlgroupmgr.EqlGroupMgrApplet target=10.100.200.2 debug=true

Mounting San Volumes as iSCSI drives

Arch Linux

   sudo pacman -S open-iscsi

Getting a list of volumes

   sudo iscsiadm -m discovery -t sendtargets -p 10.100.200.10

will print

   10.100.200.2:3260,1 iqn.2001-05.com.equallogic:0-8a0906-c56513102-572fc5aa580519d6-camera-storage
   10.100.200.2:3260,1 iqn.2001-05.com.equallogic:0-8a0906-304513102-98afc44feea537f9-hef-test

Initiating

In iSCSI terms, the initiater is the "client" and the target is the "server".

   iscsiadm -m node --targetname=<targetname> --login
   ls -lh /dev/disk/by-path/*

Now you can make or mount partitions, lvm pvs, or filesystems.


Sarting on boot

After mounting, I get entries in /etc/iscsi/nodes/iqn.2001-05.com.equallogic:0-8a0906-9b6513102-31bfc4554935466d-fizzle-storage/default

   node.startup = automatic
   node.conn[0].startup = automatic