Goal: 4x RAID 6 arrays
Each array will consist of 10 disks + 2 spares.
For the first array:
Use fdisk to partition the HDs
Active: /dev/sd[b-k]
Spare: /dev/sd[l-m]
Examine the disks
mdadm -E /dev/sd[b-k]1
Create RAID 6 array
mdadm --create /dev/md0 --level=6 --raid-devices=10 /dev/sd[b-k]1
Create 2 spare disks
mdadm --add /dev/md0 /dev/sdl1 /dev/sdm1
Sanity check
cat /proc/mdstat
mdadm -E /dev/sd[b-m]1
mdadm --detail /dev/md0
Do the same for the remaining 3 arrays. Remember to save the mdadm config by
LVM
vgcreate vg1 /dev/md0 /dev/md1 /dev/md2
lvcreate -l 100%FREE -n lv1 vg1
mkfs.xfs /dev/vg1/lv1
mount -t xfs /dev/vg1/lv1 /mnt/test
In case of one array fails.
lvremove /dev/vg1/lv1
vgreduce vg1 --removemissing
#Remove the offending array, e.g /dev/md0
mdadm --stop /dev/md0
mdadm --zero-superblock /dev/sd[b-m]1
#Recreate the RAID array.
#Then add to vg1
vgextend vg1 /dev/md0
#Recreate the volume group and mount.
-------------------
References
http://www.tecmint.com/create-raid-6-in-linux/
http://www.thegeekstuff.com/2010/08/how-to-create-lvm/
https://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/VG_admin.html
http://ubuntuforums.org/showthread.php?t=884556
我的别墅
Monday, 12 October 2015
Monday, 5 October 2015
Accessing ILOM on Sunfire X4540
Connect to the ILOM via serial port.
Login to the web GUI via NET MGT
http://docs.oracle.com/cd/E24707_01/html/E24528/z40019501400145.html#scrolltoc
- Open up a terminal via the port number (e.g. COM3). The correct serial port can be viewed under My Computer > Device Manager > Ports
Login to the web GUI via NET MGT
http://docs.oracle.com/cd/E24707_01/html/E24528/z40019501400145.html#scrolltoc
- Connect an ethernet cable to NET MGT.
- Set your internet settings on host to use the ILOM's IP address, netmask, and gateway.
Wednesday, 16 September 2015
VirtualBox for Fedora Linux
https://www.virtualbox.org/wiki/Downloads
# cd /etc/yum.repos.d/ # wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo
# yum install VirtualBox
Note: tested on Fedora 19. Use generic VirtualBox as keyword
because some versions of Virtual Box may not have support for our kernel.
Thursday, 10 September 2015
Formatting a Hard Disk
For disk < 2TB, use fdisk
http://www.cyberciti.biz/faq/linux-disk-format/
For disk > 2TB, use parted 2.3 and above
http://www.cyberciti.biz/tips/fdisk-unable-to-create-partition-greater-2tb.html
Wipe a Hard Disk
http://www.cyberciti.biz/faq/linux-remove-all-partitions-data-empty-disk/
To test out the performance of the disk with dd
http://www.cyberciti.biz/faq/howto-linux-unix-test-disk-performance-with-dd-command/
To set up NFS
http://hpc-sw.blogspot.com/2014/09/setting-up-two-node-hpc-cluster.html
http://www.cyberciti.biz/faq/linux-disk-format/
For disk > 2TB, use parted 2.3 and above
http://www.cyberciti.biz/tips/fdisk-unable-to-create-partition-greater-2tb.html
Wipe a Hard Disk
http://www.cyberciti.biz/faq/linux-remove-all-partitions-data-empty-disk/
To test out the performance of the disk with dd
http://www.cyberciti.biz/faq/howto-linux-unix-test-disk-performance-with-dd-command/
To set up NFS
http://hpc-sw.blogspot.com/2014/09/setting-up-two-node-hpc-cluster.html
Monday, 3 August 2015
Tuesday, 12 May 2015
Setting Up IP over IB
We have 1 dual port HCA card installed. Assuming port 2 (ib1) is up and port 1 (ib0) is down.
$ cat ifcfg-ib1
DEVICE=ib1
#HWADDR=80:00:00:49:FE:80:00:00:00:00:00:00:00:02:C9:03:00:0F:D8:5E
TYPE=InfiniBand
UUID=48c746a0-5536-408f-ae8f-c36be67c66c7
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=static
IPADDR=192.168.11.1
NETMASK=255.255.255.0
$ /etc/init.d/network restart
$ ifconfig
# Check if ib1 is up and has IP assigned
$ ibdev2netdev
Set up another node but with different IP, e.g. 192.168.11.2. From this new node you can ping the older node by
$ ping 192.168.11.1
Step 1
In /etc/sysconfig/network-scripts, create:$ cat ifcfg-ib1
DEVICE=ib1
#HWADDR=80:00:00:49:FE:80:00:00:00:00:00:00:00:02:C9:03:00:0F:D8:5E
TYPE=InfiniBand
UUID=48c746a0-5536-408f-ae8f-c36be67c66c7
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=static
IPADDR=192.168.11.1
NETMASK=255.255.255.0
Step 2
$ /etc/init.d/openibd restart$ /etc/init.d/network restart
Step 3
Verify the connectivity:$ ifconfig
# Check if ib1 is up and has IP assigned
$ ibdev2netdev
Set up another node but with different IP, e.g. 192.168.11.2. From this new node you can ping the older node by
$ ping 192.168.11.1
Subscribe to:
Posts (Atom)
