Quantum DXi-Series Command Line Interface (CLI) Guide
6-67081-05 Rev B
April 2012
OST CLI Commands
57
•
•
•
•
Adding a Storage
Server
syscli --add storageserver --name <server_name> --maxconnect
<connect_count> [--desc <description>]
This CLI command allows the admin user to add a storage server.
CLI command options:
•
--add
: Adds a storage server.
•
--name
: Name of the storage server.
•
--maxconnect: connect_count
: the maximum number of connections
allowed. The range is any value between 3 and 65536, inclusive.
Deleting Storage Server
syscli --del storageserver --name <server_name>
This CLI command allows the admin user to delete an existing storage server.
Editing a Storage
Server
s
yscli --edit storageserver --name <server_name> [--maxconnect <connect
count>] [--desc <description>]
This CLI command allows the admin user to edit one or more attributes of an
existing storage server. The attributes that can be changed are the maximum
connections and the description. At least one attribute should be specified.
Listing a Storage Server
syscli --list storageserver [--name <server_name> |--namematch
<pattern>]
This CLI command provides a list of attributes for all existing storage servers. The
list can be limited to a particular server name.
CLI command options:
•
--list
: Lists all storage servers or a particular storage server.
•
--name
: specified if listing is limited to one storage server.
•
--namematch
: if specified, only storage servers whose names match the
specified pattern are listed. The wild characters
^
and
$
are supported as
follows:
•
^xxx
– Matching pattern xxx at the start of names
•
xxx$
– Matching pattern xxx at the end of names
Remember to escape
$
with a backslash because it is special to the shell. For
example, to list all storage servers ending with
test
in the names, type the
following command:
syscli --list storageserver --namematch test\$