博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
计算节点故障
阅读量:5030 次
发布时间:2019-06-12

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

如果受影响的虚拟机也挂载有卷,那么先要生成一个实例和卷的UUID的列表:

select nova.instances.uuid as instance_uuid, cinder.volumes.id as volumes_uuid, cinder.volumes.status, cinder.volumes.attach_status, cinder.volumes.mountpoint, cinder.volumes.display_name from cinder.volumes inner join nova.instances on cinder.volumes.instance_uuid=nova.instances.uuid where nova.instances.host =  'compute24';

高版本有一个表专门连接实例uuid和卷uuid对应的:

nova volume-detach instance_uuid volume_uuid

nova volume-attach instance_uuid volume_uuid /dev/vdX

 

update instances set host = 'compute5' where host = 'compute6' and deleted = 0;

nova reboot --hard instance_uuid

 

nova host-evacuate --on-shared-storage compute24

nova service-disable compute24 nova-compute

 

 

计算节点故障:

use nova;

update instances set host='cco2.pp' where host='cco1.pp';

重启生成libvirt xml文件:

nova reboot --hard instance_id

转载于:https://www.cnblogs.com/mylovelulu/p/10647579.html

你可能感兴趣的文章
搭建wamp环境,数据库基础知识
查看>>
android中DatePicker和TimePicker的使用
查看>>
SpringMVC源码剖析(四)- DispatcherServlet请求转发的实现
查看>>
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>