@@ -14,10 +14,10 @@ using SoftLayer's command-line client.
1414 :ref: `configured with valid SoftLayer credentials<cli> `.
1515
1616
17- First, let's list the current virtual servers with `sl vs list `.
17+ First, let's list the current virtual servers with `slcli vs list `.
1818::
1919
20- $ sl vs list
20+ $ slcli vs list
2121 :.....:............:.........................:.......:........:..............:.............:....................:........:
2222 : id : datacenter : host : cores : memory : primary_ip : backend_ip : active_transaction : owner :
2323 :.....:............:.........................:.......:........:..............:.............:....................:........:
@@ -26,11 +26,11 @@ First, let's list the current virtual servers with `sl vs list`.
2626We don't have any virtual servers yet! Let's fix that. Before we can create a
2727virtual server (VS), we need to know what options are available to us: RAM,
2828CPU, operating systems, disk sizes, disk types, datacenters, and so on.
29- Luckily, there's a simple command to show all options: `sl vs create-options `.
29+ Luckily, there's a simple command to show all options: `slcli vs create-options `.
3030
3131::
3232
33- $ sl vs create-options
33+ $ slcli vs create-options
3434 :.................:...........................................................................................:
3535 : Name : Value :
3636 :.................:...........................................................................................:
@@ -112,11 +112,11 @@ Luckily, there's a simple command to show all options: `sl vs create-options`.
112112
113113Here's the command to create a 2-core virtual server with 1GiB memory, running
114114Ubuntu 14.04 LTS, and that is billed on an hourly basis in the San Jose 1
115- datacenter using the command `sl vs create `.
115+ datacenter using the command `slcli vs create `.
116116
117117::
118118
119- $ sl vs create --hostname=example --domain=softlayer.com --cpu 2 --memory 1024 -o UBUNTU_14_64 --datacenter=sjc01 --billing=hourly
119+ $ slcli vs create --hostname=example --domain=softlayer.com --cpu 2 --memory 1024 -o UBUNTU_14_64 --datacenter=sjc01 --billing=hourly
120120 This action will incur charges on your account. Continue? [y/N]: y
121121 :.........:......................................:
122122 : name : value :
@@ -132,7 +132,7 @@ instantly appear in your virtual server list now.
132132
133133::
134134
135- $ sl vs list
135+ $ slcli vs list
136136 :.........:............:.......................:.......:........:................:..............:....................:
137137 : id : datacenter : host : cores : memory : primary_ip : backend_ip : active_transaction :
138138 :.........:............:.......................:.......:........:................:..............:....................:
@@ -144,15 +144,15 @@ here's how:
144144
145145::
146146
147- $ sl vs ready 'example' --wait=600
147+ $ slcli vs ready 'example' --wait=600
148148 READY
149149
150150When the previous command returns, you'll know that the virtual server has
151151finished the provisioning process and is ready to use. This is *very * useful
152152for chaining commands together.
153153
154154Now that you have your virtual server, let's get access to it. To do that, use
155- the `sl vs detail ` command. From the example below, you can see that the
155+ the `slcli vs detail ` command. From the example below, you can see that the
156156username is 'root' and password is 'ABCDEFGH'.
157157
158158.. warning ::
@@ -165,7 +165,7 @@ username is 'root' and password is 'ABCDEFGH'.
165165
166166::
167167
168- $ sl vs detail example --passwords
168+ $ slcli vs detail example --passwords
169169 :..............:...........................:
170170 : Name : Value :
171171 :..............:...........................:
@@ -188,12 +188,12 @@ username is 'root' and password is 'ABCDEFGH'.
188188
189189
190190There are many other commands to help manage virtual servers. To see them all,
191- use `sl help vs `.
191+ use `slcli help vs `.
192192
193193::
194194
195- $ sl vs
196- Usage: sl vs [OPTIONS] COMMAND [ARGS]...
195+ $ slcli vs
196+ Usage: slcli vs [OPTIONS] COMMAND [ARGS]...
197197
198198 Virtual Servers.
199199
0 commit comments