openstack搭建记录

来源:互联网 发布:消失的夫妻后续知乎 编辑:程序博客网 时间:2024/06/05 11:43

云镜像 账号密码登陆脚本

#!/bin/sh
passwd ubuntu<<EOF
ubuntu
ubuntu
EOF
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
service ssh restart

添加路由的方法

route add default gw xxx.xxx.xxx.xxx 

10.1.18.254

删除僵尸实例

 DELETE FROM nova.security_group_instance_association where instance_uuid='$1';
DELETE FROM nova.instance_info_caches WHERE instance_uuid='$1';
DELETE FROM nova.instances WHERE uuid='$1';
删除外键关联
 SET FOREIGN_KEY_CHECKS = 0; 
删除完成后设置 
SET FOREIGN_KEY_CHECKS = 1; 

重置虚拟机状态
nova reset-state --active 实例id

0 0
原创粉丝点击