You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2018-12-17 13:47:30.685 16987 INFO nova.compute.manager [req-7bc758de-b2e4-461b-a971-f79be6cd4703 313d1247d7b845da9c731eec53e50a26 2f693c782fa748c2baece8db95b4ba5b - default default] [instance: ead8ecc3-f473-4672-a67b-c44534c6042d] Swapping old allocation on 3e32d595-bd1f-4136-a7f4-c6703d2fbe18 held by migration 17bec61d-544d-47e0-a1c1-37f9d7385286 for instance
505
-
2018-12-17 13:47:32.450 16987 ERROR nova.volume.cinder [req-7bc758de-b2e4-461b-a971-f79be6cd4703 313d1247d7b845da9c731eec53e50a26 2f693c782fa748c2baece8db95b4ba5b - default default] Delete attachment failed for attachment 58997d5b-24f0-4073-819e-97916fb1ee19. Error: The request you have made requires authentication. (HTTP 401) Code: 401: Unauthorized: The request you have made requires authentication. (HTTP 401)
506
-
507
-
Solution
508
-
~~~~~~~~
509
-
510
-
Configure nova to use service user tokens to supplement the regular user token
511
-
used to initiate the operation. The identity service (keystone) will then
512
-
authenticate a request using the service user token if the user token has
513
-
already expired.
514
-
515
-
To use, create a service user in the identity service similar as you would when
516
-
creating the ``nova`` service user.
517
-
518
-
Then configure the :oslo.config:group:`service_user` section of the nova
519
-
configuration file, for example:
520
-
521
-
.. code-block:: ini
522
-
523
-
[service_user]
524
-
send_service_user_token = True
525
-
auth_type = password
526
-
project_domain_name = Default
527
-
project_name = service
528
-
user_domain_name = Default
529
-
password = secretservice
530
-
username = nova
531
-
auth_url = https://104.130.216.102/identity
532
-
...
533
-
534
-
And configure the other identity options as necessary for the service user,
535
-
much like you would configure nova to work with the image service (glance)
536
-
or networking service.
537
-
538
-
.. note::
539
-
540
-
Please note that the role of the :oslo.config:group:`service_user` you
541
-
configure needs to be a superset of
542
-
:oslo.config:option:`keystone_authtoken.service_token_roles` (The option
543
-
:oslo.config:option:`keystone_authtoken.service_token_roles` is configured
0 commit comments