博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手动安装OpenStack Mistral
阅读量:6000 次
发布时间:2019-06-20

本文共 2096 字,大约阅读时间需要 6 分钟。

Prepare packages:

$ sudo apt-get install python-dev python-setuptools python-pip libffi-dev libxslt1-dev libxml2-dev libyaml-dev libssl-dev$ cd ~$ git clone https://github.com/openstack/mistral.git$ git clone https://github.com/gryf/mistral-evacuate.git$ cd mistral$ git checkout –b stable/mitaka origin/stable/mitaka$ cp ~/mistral-evacuate/filter_vm_action.py ./$ cp ~/mistral-evacuate/evacuate_vm_action.py ./$ tox -egenconfig

 

append lines in mistral/setup.cfg if you have some customed actions for mistral:

[entry_points]mistral.actions =…custom.filter_vm = filter_vm_action:FilterVmActioncustom.evacuate = evacuate_vm_action:EvacuateVmAction

 

generate mistral.conf

$ cd ~/mistral$ oslo-config-generator --config-file tools/config/config-generator.mistral.conf --output-file etc/mistral.conf

 

add following lines in mistral.conf:

[DEFAULT]logfile = /opt/stack/logs/mistral.logrpc_backend = rabbit[database]connection = mysql+pymysql://root:
@controller:3306/mistral[keystone_authtoken]auth_uri = http://controller:5000/v3identity_uri = http://controller:35357/auth_version = v3admin_user = adminadmin_password =
admin_tenant_name = admin[oslo_messaging_rabbit]rabbit_userid = stackrabbitrabbit_password =
rabbit_host = controller

 

register mistral service and endpoints on keystone:

$ . admin-openrc$ MISTRAL_URL = “http://172.16.13.40:8989/v2”$ openstack service create workflow --name mistral --description 'OpenStack Workflow service'$ openstack endpoint create workflow --region RegionOne --publicurl $MISTRAL_URL --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL

 

create mysql database mistral:

mysql -u root -pCREATE DATABASE mistral;USE mistralGRANT ALL ON mistral.* TO ‘root’@’%’;

 

Local installation and prepare database:

$ cd ~/mistral$ sudo pip install –e .$ mistral-db-manage --config-file etc/mistral.conf upgrade head$ mistral-db-manage --config-file etc/mistral.conf populate

 

start mistral service:

# python mistral/cmd/launch.py --server all --config-file etc/mistral.conf

 

转载于:https://www.cnblogs.com/pinganzi/p/6555180.html

你可能感兴趣的文章
vim配置及快捷键
查看>>
unity-Fatal Error GC-GetThreadContext Failed
查看>>
2018省赛赛第一次训练题解和ac代码
查看>>
UWP Composition API - 锁定列的FlexGrid
查看>>
[转载] win10进行端口转发
查看>>
IE7下对某些seajs压缩文件不兼容的解决方法
查看>>
利用JavaScript jQuery实现图片无限循环轮播(不借助于轮播插件)-----转载
查看>>
从零开始搭建vue项目 请求拦截器 响应拦截器
查看>>
ajax实现动态下拉框
查看>>
HDU3257 Hello World!【打印图案+位运算】
查看>>
jquery 选择器
查看>>
The secret code
查看>>
Makefile 多目录自动编译
查看>>
学习笔记:Oracle dul数据挖掘 导出Oracle11G数据文件坏块中表中
查看>>
统一Matlab下不同子图的色标colorbar
查看>>
Linux 进程间通信(二) 管道
查看>>
Ajax保留浏览器历史的两种解决方案(Hash&Pjax)
查看>>
深入浅出JQuery (二) 选择器
查看>>
CI框架 -- 驱动器
查看>>
FastMQ V0.2.0 stable版发布
查看>>