简体   繁体   English

在devstack中启用服务

[英]enabled services in devstack

I installed devstack and it seems working fine. 我安装了devstack,看起来工作正常。 But when focusing on the dashboard precisely in the project tab I don't have neither the "Manage Network" Section nor the "Object Store" Section. 但是,当恰好在项目选项卡中专注于仪表板时,我既没有“管理网络”部分,也没有“对象存储”部分。 I noticed this after comparing with the trystack sandbox. 与trystack沙箱进行比较后,我注意到了这一点。 Is that normal? 那是正常的吗?

The list of enabled services in devstack is configured using the localrc file. devstack中已启用服务的列表是使用localrc文件配置的。 The neutron network service and the Swift storage service are off by default. 默认情况下,中子网络服务和Swift存储服务处于关闭状态。 The following modifications should enable both: 以下修改应同时启用:

disable_service n-net
enable_service q-svc
enable_service q-agt
enable_service q-dhcp
enable_service q-l3
enable_service q-meta
enable_service neutron 

enable_service swift

Devstack文档说将以下内容放在local.conf中:

enable_service s-proxy s-object s-container s-account

The list of enabled services in devstack is configured in local.conf file. devstack中已启用服务的列表在local.conf文件中配置。

When you need to enable object storage (swift) with Devstack, you need to put below lines into your local.conf file: 当需要使用Devstack启用对象存储(交换)时,需要将以下几行放入您的local.conf文件中:

# Enable swift services
enable_service s-proxy
enable_service s-object
enable_service s-container
enable_service s-account

# Enable tempurls and set credentials
SWIFT_HASH=your_hash ("abc123" for example :D)
SWIFT_TEMPURL_KEY=your_key ("abc123" for example :D)
SWIFT_ENABLE_TEMPURLS=True

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM