oslo_messaging使用eventlet executor时rpc无法调用的问题
摘要:python2.7.5 oslo.messaging==9.8.0 现象: 从debug日志可以看到rpcServer接收到了rabbitmq的消息, 但是没有调用endpoints中的相应方法 分析: 当executor="eventlet"时 MessageHandlingServer中的_wo
阅读全文
2-glance 部署
摘要:1. mysql 创建数据库和用户 create database glance; grant all privileges on glance.* to 'glance'@'localhost' identified by 'mhc.123'; grant all privileges on gl
阅读全文
1-keystone 部署
摘要:https://github.com/openstack/keystone 最新版为rocky 1. 进入mysql create database keystone; grant all privileges on keystone.* to 'keystone'@'localhost' iden
阅读全文
0-依赖组件准备
摘要:mysql: https://github.com/mhcvs2/docker/blob/master/mysql/start.sh mongo: https://github.com/mhcvs2/docker/blob/master/wekan/mongodb.yml rabbitmq: htt
阅读全文
centos7 增加虚拟网卡
摘要:确认内核是否有tun模块 # modinfo tun yum install tunctl -y 如果找不到 vim /etc/yum.repos.d/nux-misc.repo [nux-misc]name=Nux Miscbaseurl=http://li.nux.ro/download/nux
阅读全文
openstack 资料
摘要:调用流程 https://blog.csdn.net/bill_xiang_/article/details/72909927
阅读全文
Openstack 组件简介
摘要:1. Nova 计算服务: 负责承载和管理云计算系统 其中nova-compute service 通过调用Hypervisor APIs创建和终止虚拟机实例。 虚拟化技术: KVM和Xen 2. Neuton网络服务: 为虚拟机实例提供网络连接 3. 存储服务 Cinder 块存储服务:为虚拟机实
阅读全文