About Us

RSInfoMinds, a web based IT Training and Consultancy firm. It is established with high dreams in training people in IT Infrastructure Field. We provide Online and Class Room training in various fields of IT Infrastructure Management.

Join Us: http://www.facebook.com/RSInfoMinds
Mail Us: rsinfominds@gmail.com
Twitter: @RSInfoMinds

We are specialized in the below courses:

Redhat Linux Admin Redhat Linux Cluster
Redhat Virutualization IBM AIX Admin
IBM AIX Virtualization IBM AIX Cluster
HP Unix Admin HP Unix Cluster
HP Unix Virtualization Shell Scripting
Veritas Volume Manager Veritas Cluster
Oracle Core DBA VMWare


We provide training in such a way, So that you get in depth knowledge on the Courses you look for.

And we ensure you are very confident from each and every Techincal aspect that the IT Industry needs and expects from you.

We also conduct Workshops on the latest technology and the real time faculties sharing their work experiences to make you the best.

Tuesday 17 January 2012

Mirrroing Constraints in IBM AIX and HP_UNIX

Steps to mirroring in IBM AIX:

1) # lspv : Command to view the Physical volume in none state.

2) # mkvg -y <vgname> -s <PP Size> <Physical Volumes.....> : Command to create a Volume Group.

3) # mklv -y <lvname> -t <filesystem type> -c <no.of. copies> <volume group name> <no.of PP's> <Physical Volume Names> : Command to create a logical volume.

4) # crfs -v <filesystem type> -d </dev/logical_volume_name> -m <mount point> -A y : Command to create a file system.

5) # mount /<mount point> : Command to mount a file system.

Hp_Unix

1) # isocan -funC disk : Command to view the disk available in the machine.

2) # pvcreate /dev/rdsk/c0t0d0 : Command to create a physical volume.
    # pvcreate /dev/rdsk/c0t0d1 : Command to create a physical volume.

3) # vgcreate <Volume Group name> /dev/dsk/c0t0d0 /dev/dsk/c0t0d1 : Command to create a volume group.

4) # vgdisplay -v <Volume Group name> | grep "PV Name" : View the physical volumes that created this volume group.

5) # lvcreate -n <Name of the logical volume> -L <Size of the logical volume> -m <no.of.copies> <volume group name>

6) # lvdisplay -v <logical volume name> : View the created a logcial volume with copies on the physical volume.

7) # newfs -F vxfs <Raw logical volume name> : Command to format the logical volume.

8) # mount <logical volume name > <mount point> : Command to mount.


No comments:

Post a Comment