且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

openstack api users list get token get servers

更新时间:2022-09-17 09:02:57

curl -i \
  -H "Content-Type: application/json" \
  -d '
{ "auth": {
    "identity": {
      "methods": ["password"],
      "password": {
        "user": {
          "name": "demo",
          "domain": { "id": "default" },
          "password": "123456"
        }
      }
    }
  }
}' \
  http://192.168.3.181:5000/v3/auth/tokens ; echo

curl -s -H "X-Auth-Token: 9853c8676b41450bb9a79fbdbcf240e1" http://192.168.3.181:35357/v3/users | python -m json.tool

curl -s -H "X-Auth-Token: ed3c98a7610d473bb2a3ceb9d62e3edd" http://192.168.3.181:8774/v2/be9bae3f0e15476f8044e9887e43decf/servers | python -m json.tool