The docs incorrectly show an example of:
enable_service swift
This does not work, it must be enabled on a per swift service
basis, like:
enable_service s-proxy s-object s-container s-account
Change-Id: Ib4ed8b43f777d308f5464d45dc87735e843c0daf
| ... | ... |
@@ -247,7 +247,7 @@ keystone user-role-add --user-id=<bob-user-id> --tenant-id=<bob-tenant- |
| 247 | 247 |
The support in DevStack is geared toward a minimal installation but can be used for |
| 248 | 248 |
testing. To implement a true multi-node test of Swift required more than DevStack provides. |
| 249 | 249 |
Enabling it is as simple as enabling the <code>swift</code> service in <code>local.conf</code>: |
| 250 |
- <pre>enable_service swift</pre> |
|
| 250 |
+ <pre>enable_service s-proxy s-object s-container s-account</pre> |
|
| 251 | 251 |
|
| 252 | 252 |
<p>Swift will put its data files in <code>SWIFT_DATA_DIR</code> (default <code>/opt/stack/data/swift</code>). |
| 253 | 253 |
The size of the data 'partition' created (really a loop-mounted file) is set by |
| ... | ... |
@@ -66,8 +66,8 @@ |
| 66 | 66 |
Certificate Authentication), Cinder (Scheduler, API, Volume), Horizon, MySQL, RabbitMQ, Tempest. |
| 67 | 67 |
<pre>ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,n-cond,cinder,c-sch,c-api,c-vol,n-sch,n-novnc,n-xvnc,n-cauth,horizon,rabbit,tempest,$DATABASE_TYPE</pre> |
| 68 | 68 |
Other services that are not enabled by default can be enabled in |
| 69 |
- <code>localrc</code>. For example, to add Swift: |
|
| 70 |
- <pre>enable_service swift</pre> |
|
| 69 |
+ <code>localrc</code>. For example, to add Swift, use the following service names: |
|
| 70 |
+ <pre>enable_service s-proxy s-object s-container s-account</pre> |
|
| 71 | 71 |
A service can similarly be disabled: |
| 72 | 72 |
<pre>disable_service horizon</pre></dd> |
| 73 | 73 |
|