- Community Home
- >
- Storage
- >
- Legacy
- >
- Storage Software
- >
- Re: SSSU Scripting of Multiple V-Disks to Initial ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 08:30 AM - last edited on 02-23-2014 08:45 PM by Lisa198503
08-29-2008 08:30 AM - last edited on 02-23-2014 08:45 PM by Lisa198503
SSSU Scripting of Multiple V-Disks to Initial DR Group Creation
Hello,
I am writing some scripts for a customer to create approx 20 DR groups of about 10 copy sets each. I am using a different approach than normal and unfortunately do not have a test environment that I can use at this time. I can not seem to find any documentation that tells me whether I can have multiple "VDISK=" tags in the "ADD DR_GROUP" command line or whether I can run the "SET DR_GROUP" with the "ADD_VDISK" command during initial synchronization.
For example, would a command like this work:
----
ADD DR_GROUP "DR Group 01" VDISK= "\Virtual Disks\vdisk01" VDISK= "\Virtual Disks\vdisk02" DESTINATION_SYSTEM= "EVA02" DESTINATION_DISK_GROUP= "DG01" LOG_DESTINATION_DISK_GROUP= "DG02" LOG_SOURCE_DISK_GROUP= 300GB_group TARGETREDUNDANCY= "Vraid5"
----
Or, another approach - would putting the following commands in a single script and running them work? My worry is that the first line of the command would execute and the second would error out because normalization would be in progress.
---
#Line :1
ADD DR_GROUP "DR GROUP01" VDISK= "\Virtual Disks\vdisk01" DESTINATION_SYSTEM= "EVA02" DESTINATION_DISK_GROUP= "DG01" LOG_DESTINATION_DISK_GROUP= "DG02" LOG_SOURCE_DISK_GROUP= 300GB_group TARGETREDUNDANCY= "Vraid5"
#Line 2:
SET DR_GROUP "DR GROUP01" ADD_VDISK= "\Virtual Disks\vdisk02"
----
Thanks everyone. This is using two EVA 8x on 6110.
P.S. This thread has been moved from Disk Array to HP Storage System Scripting Utility (SSSU). -HP Forum Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 08:54 AM
08-29-2008 08:54 AM
Re: SSSU Scripting of Multiple V-Disks to Initial DR Group Creation
--
ADD DR_GROUP "\Data Replication\DRG_N1" DESTINATION_SYSTEM="EVA1" LOG_DESTINATION_DISK_GROUP="\Disk Groups\DG01" LOG_SOURCE_DISK_GROUP="\Disk Groups\DG01" VDISK="\Virtual Disks\N1-Folder\N1_F\ACTIVE" DESTINATION_VDISK_NAME="\Virtual Disks\N1-Folder\N1_F\ACTIVE" DESTINATION_DISK_GROUP="\Disk Groups\DG01" TARGETREDUNDANCY=VRAID1
--
SET DR_GROUP "\Data Replication\DRG_N1" ADD_VDISK="\Virtual Disks\N1-Folder\N1_G\ACTIVE" DESTINATION_VDISK_NAME="\Virtual Disks\N1-Folder\N1_G\ACTIVE" DESTINATION_DISK_GROUP="\Disk Groups\DG01" TARGETREDUNDANCY=VRAID1
--
SET DR_GROUP "\Data Replication\DRG_N1" ADD_VDISK="\Virtual Disks\N1-Folder\N1_H\ACTIVE" DESTINATION_VDISK_NAME="\Virtual Disks\N1-Folder\N1_H\ACTIVE" DESTINATION_DISK_GROUP="\Disk Groups\DG01" TARGETREDUNDANCY=VRAID1
--
SET DR_GROUP "\Data Replication\DRG_N1" ADD_VDISK="\Virtual Disks\N1-Folder\N1_Q\ACTIVE" DESTINATION_VDISK_NAME="\Virtual Disks\N1-Folder\N1_Q\ACTIVE" DESTINATION_DISK_GROUP="\Disk Groups\DG01" TARGETREDUNDANCY=VRAID1
--
SET DR_GROUP "\Data Replication\DRG_N1" ACCESSMODE=DISABLE
--
SET DR_GROUP "\Data Replication\DRG_N1" COMMENT="note1"
--
SET DR_GROUP "\Data Replication\DRG_N1" WRITEMODE=SYNCHRONOUS
--
SET DR_GROUP "\Data Replication\DRG_N1" NOSUSPEND
--
SET DR_GROUP "\Data Replication\DRG_N1" MAX_LOG_SIZE=0
--
SET DR_GROUP "\Data Replication\DRG_N1" LINK_DOWN_AUTOSUSPEND=DISABLE
--
I'm fairly sure I have used the CV-EVA GUI to add copy-sets to data replication group that had synchronizing copy-sets and there was no problem. SSSU is just another interface.