0
私のopenstackのバージョンはocataです。私は怒鳴るようなOpenStackのユーザーを作成し、それを使用する場合 は自分のコンピュータでは、私は、openstacksdk (0.9.18)
をインストール:openstacksdkを使用してユーザーを作成しました。ログインできません。
# create openstack user
user_args = {
"default_project_id":new_project.id, # the project is created already, there I did not post here.
"email":email,
"is_enabled":True,
"name":username, # there is test10
"pasword":password, # there is `zxc1234`
}
try:
new_user = super_conn.conn.identity.create_user(**user_args)
except Exception as e:
raise e
try:
role_user = super_conn.conn.identity.find_role(OPENSTACK_ROLE_USER) # there I find the role(user)
new_project.assign_role_to_user(super_conn.conn.session, new_user, role_user) # assign to the new user
new_project.validate_user_has_role(super_conn.conn.session, new_user, role_user)
except Exception as e:
raise e
を、私は私のコードでusername
とpassword
をデバッグしている、私のコードは間違いではありません。
私はnew_userを作成し、私もOpenStackのダッシュボードでは、ユーザーおよびユーザーのプロジェクトをチェックします。 しかし、私はユーザー名とパスワードを使ってopenstackダッシュボードにログインすることはできません。
何か問題がありますか?
エラーは、資格情報が無効であることを意味します。だから、openstackのadminユーザーを使って、作成したユーザーのパスワードを変更して、まだログインすることができます。
私はそれに役割を割り当てます、私の編集したポストを参照してください。 – aircraft
私は何か間違っていると私はアイデンティティのAPIを見ていたと私は多種多様な特殊文字を許可するためには、Base64エンコードされていないパスワードは驚いているのですが、私はそれについて何も表示されません。 – FreshPow
私はとても残念です、弟、私の間違いです。私は 'pasword'にパスワードを書きます。あなたの時間の無駄、あなたにお詫び申し上げます。 – aircraft