HPE EVA Storage
1825581 Members
1810 Online
109682 Solutions
New Discussion

Question about RSM 2.1 jobs

 
SOLVED
Go to solution
lister
Advisor

Question about RSM 2.1 jobs

Hello,

Can someone help me with a job I am making to present a snapshot volume on an eva4000 to a windows host. I attached the complete job.

I am using the SnapShotStorageVolume to make a snapshot of a volume of the EVA. Do a couple of checks and the presents the disk:

PresentStorageVolume ($SNAP_VOL, $MOUNT_HOST, 0, READ_WRITE)
DiscoverDiskDevice ($MOUNT_HOST, $SNAP_VOL)
MountHost Volume ("\\testserver\Disk5P1", $MOUNT_DRIVE)

Problem is with the above command. How do I know under which 'DiskXP1' the disk is discovered in Windows?

The alternative is to make a snapshot with SnapShotHostVolume, but preference is using snapshot from storage point.

Thanx in advance for any advice in this.

Lucas
3 REPLIES 3
Lars Blumenthal
Advisor
Solution

Re: Question about RSM 2.1 jobs

Lucas,

I think before that step, you've to create the host volume. In your case "CreateHostVolumeDiscrete".

#1# $HV1 = CreateHostVolumeDiscrete ("1",$REPL1,$MOUNT_HOST)
#2# $MP1 = MountHostVolume ("$HV1","$MOUNT_DRIVE")

Lars
lister
Advisor

Re: Question about RSM 2.1 jobs

Hello Lars,

It worked fine, script is running without problems. Thanx.

Lucas
lister
Advisor

Re: Question about RSM 2.1 jobs

I have found a solution to this question as seen in the comments below.