• openstack 调整实例大小报错 ERROR oslo_messaging.rpc.server ResizeError: Resize error: not able to execute ssh command: Unexpected error while running command


    [root@node01 nova]# tail nova-compute.log
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server self.gen.throw(type, value, traceback)
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 8987, in _error_out_instance_on_exception
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server raise error.inner_exception
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server ResizeError: Resize error: not able to execute ssh command: Unexpected error while running command.
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server Command: ssh -o BatchMode=yes 10.199.103.16 mkdir -p /var/lib/nova/instances/f3cd597a-3a01-4d2f-927d-8be35a955413
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server Exit code: 255
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server Stdout: u''
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server Stderr: u'Host key verification failed. '
    2020-08-07 15:18:25.128 61415 ERROR oslo_messaging.rpc.server
    2020-08-07 15:18:36.624 61415 INFO nova.compute.manager [req-efc389fd-77f9-487f-a877-b90c82474787 d608482bcb1b4522949e8e3d429d0b00 4abcf64d621e4cf89aa267887647bc8c - default default] [instance: f3cd597a-3a01-4d2f-927d-8be35a955413] Get console output

    解决方法

    调整大小,需要openstack的nova节点和ssh通信,在所有控制节点和计算节点配置免密钥通信

    usermod  -s /bin/bash nova
    echo "nova"|passwd --stdin nova
    su - nova
    ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
    ssh-copy-id  nova@10.199.103.13
  • 相关阅读:
    完全背包 基础
    hdoj_2546饭卡(强忍悲痛,好好写题解)
    蓝桥杯--猜字母 学到了!
    Common Subsequence
    Ansible ad-hoc 手册(3)
    ansible playbook 以及变量(2)
    Ansible安装以及常用模块操作(1)
    zabbix3.4自定义触发器(4)
    zabbix3.4自定义监控项(3)
    zabbix3.4监控一台主机(2)
  • 原文地址:https://www.cnblogs.com/omgasw/p/13453462.html
Copyright © 2020-2023  润新知