openstack 安装placement
时间: 2023-10-09 21:16:01 浏览: 109
安装Placement服务需要以下步骤:
1. 安装Placement API服务:
使用以下命令安装Placement API服务:
```
sudo apt-get install -y placement-api
```
2. 配置Placement API服务:
在 /etc/placement/placement.conf 配置文件中添加以下内容:
```
[placement_database]
connection = mysql+pymysql://placement:PLACEMENT_DBPASS@controller/placement
[api]
auth_strategy = keystone
[keystone_authtoken]
auth_url = http://controller:5000/v3
memcached_servers = controller:11211
auth_type = password
project_domain_name = Default
user_domain_name = Default
project_name = service
username = placement
password = PLACEMENT_PASS
```
3. 初始化Placement服务数据库:
使用以下命令初始化Placement服务数据库:
```
sudo su -s /bin/sh -c "placement-manage db sync" placement
```
4. 重启Placement API服务:
使用以下命令重启Placement API服务:
```
sudo service apache2 restart
```
现在,您已经成功安装了Placement服务。
阅读全文