beautypg.com

Sample script files, Configuration script example 1, 13 sample script files – Dell PowerVault MD3420 User Manual

Page 403

background image

13

Sample Script Files

This appendix provides sample scripts for configuring a storage array. These examples show how the
script commands appear in a complete script file. You can copy these scripts and modify them to create
a configuration unique to your storage array.
Create a script file in two ways:

• Use the save storageArray configuration command
• Write a script

By using the save storageArray configuration command, you can create a file to use to copy an
existing configuration from one storage array to other storage arrays. You can also use this file to restore
an existing configuration that has become corrupted. You can also copy an existing file to serve as a
pattern from which you create a new script file by modifying portions of the original file. The default file
extension is .scr.
Create a new script file using a text editor, such as Microsoft Notepad. The maximum line length is 256
characters. The command syntax must conform to the guidelines in Usage Guidelines and the rules in
Command Formatting Rules. When creating a new script file, use any file name and extension that runs
on the host operating system.
To run a script file from the command line, enter the following text:
client>smcli 123.45.67.89 -f scriptfile.scr;

Configuration Script Example 1

This example creates a new virtual disk using the create virtualDisk command in the free space of a
disk group.
Show "Create RAID 5 Virtual Disk 7 on existing Disk Group 1";

//Create virtual disk on a disk group created by

the create virtual disk command

//Note: For disk groups that use all available

capacity, the last virtual disk on the disk group

is created using all remaining capacity by

omitting the capacity=virtualDiskCapacity parameter

create virtualDisk diskGroup=1 raidLevel=5

userLabel="7" owner=0 segmentSize=16 capacity=2GB;

show "Setting additional attributes for virtualDisk 7";

//Configuration settings that cannot be set during

virtualDisk creation

set virtualDisk["7"] mediaScanEnabled=false;

set virtualDisk["7"] consistencyCheckEnabled=false;

set virtualDisk["7"] modificationPriority=high;

This example shows blank lines between the lines beginning with Show, Create, //Note, and create. The
blank lines are included in this example only for clarity. Each command is actually written on one line in

403