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

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

前提

计算节点中一个僵尸计算节点存在,而里面的CPU数目在总物理CPU中,导致认为当前能创建实例。而实际没有这么多资源。

其中node-11为僵尸节点。

原因

删除计算节点不能直接格式化该服务器,否则在控制节点的数据库上会存在该计算节点的数据。

解决办法

参考http://www-01.ibm.com/support/knowledgecenter/SS4KMC_2.3.0/com.ibm.sco.doc_2.3/t_remove_computenode.html
[root@node-9 ~]# mysqlWelcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 688589Server version: 5.5.28 MySQL Community Server (GPL), wsrep_23.7.rXXXXCopyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use nova;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> delete from compute_node_stats where compute_node_id in    ->  (select id from compute_nodes       ->        where hypervisor_hostname='node-11.domain.tld')    -> delete from compute_nodes where hypervisor_hostname='node-11.domain.tld'     -> delete from services where host='node-11.domain.tld';ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'delete from compute_nodes where hypervisor_hostname='node-11.domain.tld' delete' at line 4mysql> delete from compute_node_stats where compute_node_id in (select id from compute_nodes where hypervisor_hostname='node-11.domain.tld');Query OK, 0 rows affected (0.03 sec)mysql> delete from compute_nodes where hypervisor_hostname='node-11.domain.tld';Query OK, 1 row affected (0.06 sec)mysql> delete from services where host='node-11.domain.tld';Query OK, 2 rows affected (0.01 sec)mysql>

结果: 

转载于:https://www.cnblogs.com/CLTANG/p/4332616.html

你可能感兴趣的文章
【广州】LoadRunner性能测试实战训练
查看>>
linux-centos下源代码安装subversion (svn)
查看>>
Dynamic Performance Tables not accessible Automatic Statistics Disabled for this session
查看>>
POJ 1273 || HDU 1532 Drainage Ditches (最大流模型)
查看>>
Javascript中的对象和原型(一)(转载)
查看>>
SQL Server 2005 数据库复制(转载)
查看>>
Lua 服务器与客户端实例(转)
查看>>
[CareerCup] 18.4 Count Number of Two 统计数字2的个数
查看>>
C# 对sharepoint 列表的一些基本操作,包括添加/删除/查询/上传文件给sharepoint list添加数据...
查看>>
Spring Boot 学习(2)
查看>>
【自动化测试】Python 读取.yaml格式文件
查看>>
Scrapy-Cluster结合Spiderkeeper管理分布式爬虫
查看>>
YII分模块加载路由
查看>>
智能合约设计模式--COP
查看>>
【丛林】CSS 边框浅谈
查看>>
[踩坑] ios版的webview无法长按识别二维码
查看>>
JavaScript面向对象编程——原型
查看>>
搞懂QuickBI的OLAP引擎技术原理,人人都是数据分析师
查看>>
React 深入系列6:高阶组件
查看>>
调试时经常使用的console.log()的同步和异步问题
查看>>