zoukankan      html  css  js  c++  java
  • cinder-volume Required RPC API Old

     


    cinder-volume日志提示:

    Failed to notify about cinder-volume service capabilities for host controller@vmware. This is normal during a live upgrade. Error: One of cinder-scheduler services is too old to accept notify_service_capabilities request. Required RPC API version is 3.1. Are you running mixed versions of cinder-schedulers?: ServiceTooOld: One of cinder-scheduler services is too old to accept notify_service_capabilities request. Required RPC API version is 3.1. Are you running mixed versions of cinder-schedulers?



    查看下当前rpc版本

    MariaDB [cinder]> select services.binary, services.rpc_current_version, services.object_current_version from services where not deleted;
    +------------------+---------------------+------------------------+
    | binary           | rpc_current_version | object_current_version |
    +------------------+---------------------+------------------------+
    | cinder-scheduler | 3.0                 | 1.11                   |
    | cinder-scheduler | 3.10                | 1.35                   |
    | cinder-volume    | 3.15                | 1.35                   |
    +------------------+---------------------+------------------------+


    停止cinder-scheduler 服务

    [root@controller ~]# systemctl stop   openstack-cinder-scheduler

    同步一下,更新后cinder-scheduler版本就正确了

    [root@controller ~]# cinder-manage db sync --bump-versions


    开启服务

    systemctl start openstack-cinder-scheduler

    查看更新后的版本

    MariaDB [cinder]> select services.binary, services.rpc_current_version, services.object_current_version
    +------------------+---------------------+------------------------+
    | binary           | rpc_current_version | object_current_version |
    +------------------+---------------------+------------------------+
    | cinder-scheduler | 3.10                | 1.35                   |
    | cinder-scheduler | 3.10                | 1.35                   |
    | cinder-volume    | 3.15                | 1.35                   |
    +------------------+---------------------+------------------------+


    重启卷服务,在查看日志错误解决

    [root@controller ~]# systemctl restart  openstack-cinder-volume






  • 相关阅读:
    Kubernetes之Pod调度约束即将Pod分配给节点
    Kubernetes控制器之DaemonSet
    Kubernetes控制器之StatefulSet
    PureFtpd 连接数据库错误
    Ubuntu 脚本笔记
    饥荒 死亡后不删存档的办法
    浏览器前进后退对下拉框数据的丢失(省市联动实现和例子)
    Mac 设置环境变量
    给现有MVC项目增加Web API支持
    文件编辑器 vi
  • 原文地址:https://www.cnblogs.com/menkeyi/p/14000601.html
Copyright © 2011-2022 走看看