这个是错误信息,说密码插件不能确定合适的URL。求解决 discovering version from the identity service failed when creating the password plugin. Attempting determine version from URL.  could not determine a suitable URL for the plugin

解决方案 »

  1.   

    检查一下/etc/keystone/keystone.conf 配置文件是否有错误的地方
    [database]
    connection = mysql+pymysql://keystone:keystone-password@controller/keystone
    [token]
    provider = fernet
    然后同步数据库
    /bin/sh -c "keystone-manage db_sync" keystone
    同步完成后建议进入数据库检查一下keystone库里的表是否正常生成
    然后初始化
    keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone
    最后引导身份服务
    keystone-manage bootstrap --bootstrap-password admin-password \
    --bootstrap-admin-url http://controller:35357/v3/ \
    --bootstrap-internal-url http://controller:5000/v3/ \
    --bootstrap-public-url http://controller:5000/v3/ \
    --bootstrap-region-id RegionOne