Posts

Showing posts from April, 2009

Howto Initialized EMC Storage CLAriion

First connect your laptop to switch that EMC Storage are connected. Please make sure it have same VLAN configured on switch. For example you use VLAN 10 with allocation IP Address : 192.168.10.0/24. Set IP Address on your laptop to, ex: 192.168.10.10. EMC Storage SP A : 192.168.10.1 EMC Storage SP B : 192.168.10.2 Please note that server that will use this EMC Storage should be use VLAN 10 as main VLAN. ex: SP A on EMC Storage connected to port 1 SP B on EMC Storage connected to port 2 Your laptop connected to port 3. Switch config should be like below : interface GigabitEthernet0/1  switchport access vlan 10  switchport mode access interface GigabitEthernet0/2  switchport access vlan 10   switchport mode access interface GigabitEthernet0/3  switchport access vlan 10  switchport mode access Install Navisphere_Initialization_Wizard.exe on your laptop and run this tool. - choose "I agree ..." - Click "Next" button - Your storage should b

Howto physical connection EMC CLAriion, IBM Blade, SAN Switch, Cisco Switch

Image

Howto cstm on HP-UX

If we want to show all machine information, just use cstm. # cstm Running Command File (/usr/sbin/stm/ui/config/.stmrc). -- Information -- Support Tools Manager Version C.46.05 (C) Copyright Hewlett Packard Co. 1995-2002 All Rights Reserved Use of this program is subject to the licensing restrictions described in "Help-->On Version". HP shall not be liable for any damages resulting from misuse or unauthorized use of this program. cstm> Map all device in this system with : cstm> map Dev Last Last Op Num Path Product Active Tool Status === ==================== ========================= =========== ============= 1 system system (1014) Information Successful 2 memory IPF_MEMORY (1014) Information Successful ------------ We want to know info about memory information cstm>sel d 2 cstm>

Howto configure boot device order on ILOM

To ensure the system can be installed using the DVD drive, the boot device order in the BIOS has to be configured correctly so that the DVD drive takes precedence over the internal hard drives. 1 Log into the ILOM. 2 Start the system if it is not already running: > start /SYS else reset the system: > reset /SYS 3 Log onto the system’s console: > start /SP/console 4 When prompted, press Esc 2 to enter setup. 5 Once the setup menu has loaded, navigate across to the Boot screen by using the right arrow key. 6 Using the down arrow key, select the Boot Device Priority item and press Enter. 7 Confirm that the item [CD/DVD] is higher in the list than the item [Hard Drive]. The order can be changed by selecting the relevant item and using the +/- keys to move the item up or down in the list. 8 Once the order is correct, save any changes made by pressing Esc and then navigate right to the Exit screen. Select the item Save Changes and Exit and press Enter, then confirm

Howto configure network on ILOM

The following steps will configure the network settings for the ILOM. 1 Connect a terminal to the ILOM serial management port. 2 Power up the server. 3 When prompted, login into the ILOM as root: login: root password: changeme (this should be the default password and can be confirmed by consulting the documentation shipped with the server). 4 Set the network details for the ILOM: > set /SP/network pendingipaddress= > set /SP/network pendingipdiscovery=static > set /SP/network pendingipgateway= > set /SP/network pendingipnetmask= > set /SP/network commitpending=true 5 Try opening an SSH connection to the ILOM in order to confirm that the setup was successful.

Howto soft partition on Solaris

If we wanna create soft partition on one physical partition, eg: partition 7. Show capacity partition 7 with command # format then choose your disk, eg: disk 0, now press "0" then enter partition menu with press "p" then print partition layout, press "p" we have example for partiton 7 like this : ------------- 7 unassigned wm 207 - 1608 6.80GB (1402/0/0) 14266752 We want to create 3 soft partition with allocation like below : /opt/data : 3 GB /opt/data1 : 1 GB /opt/data2 : 2 GB Create the soft partitions: # metainit d701 -p d70 3072M # metainit d702 -p d70 1024M # metainit d703 -p d70 2048M Create a UFS file system on each of the soft partitions: # newfs /dev/md/dsk/d701 # newfs /dev/md/dsk/d702 # newfs /dev/md/dsk/d703 Add the following entries to the file /etc/vfstab: /dev/md/dsk/d701 /dev/md/rdsk/d701 /opt/data ufs 2 yes - /dev/md/dsk/d702 /dev/md/rdsk/d702 /opt/data1 ufs 2 yes - /dev/md/dsk/d703 /dev/md/rd