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
This issue is caused when the endpoint is not returning a JSON payload which matches with the [OpenId Connect Discovery Configuration](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig).
81
81
These are the possible causes:
82
-
- The payload returned by the endpoint is not compliant because it is empty or it is missing some critical information. To identify the root cause, open the browser's javascript console and search for one of these possible error messages:
82
+
- The payload returned by the endpoint is not compliant because it is empty or it is missing some critical information. To identify the root cause, open the browser's JavaScript console and search for one of these possible error messages:
83
83
-`Payload does not contain openid configuration` This error occurs when the payload is empty or it is not a JSON payload.
84
84
-`Missing authorization_endpoint` This error occurs when the JSON attribute `authorization_endpoint` is missing.
85
85
-`Missing token_endpoint` This error occurs when the JSON attribute `token_endpoint` is missing.
86
86
-`Missing jwks_uri` This error occurs when the JSON attribute `jwks_uri` is missing.
87
-
- The url is wrong. Check out with your administrator of your Identity Provider to get the correct url to the OpenId Connect Discovery endpoint.
87
+
- The URL is wrong. Retrieve the correct url to the OpenId Connect Discovery endpoint from your identity provider administrator.
88
88
89
89
### Not authorized {#not-authorized-error}
90
90
91
91
#### Steps to reproduce
92
92
93
-
Open the root url of the management UI in the browser, click on the button "Click here to logon" and enter the credentials requested by your Identity Provider. You are redirected back to the management UI with the following error:
93
+
Open the root URL of the management UI in the browser. Click on the button "Click here to logon" and
94
+
enter the credentials requested by the identity provider.
95
+
96
+
You are redirected back to the management UI with the following error:
94
97
95
98
```
96
99
Not authorized
@@ -106,16 +109,16 @@ This issue occurs when the token does not have enough scopes or permissions to a
106
109
*`rabbitmq.tag:policymaker`.
107
110
108
111
Follow these steps to find out which scopes or permissions are carried in the token:
109
-
1. Open your browwser's developer tool (e.g. in Chrome or Firefox, right-click on the page and click on *Inspect* menu option).
110
-
2. Go to the tab *Application*.
111
-
3. Select the option *Storage* > *Local Storage* in the left panel.
112
-
4. Click on the tree option which matches the URL of the management UI.
113
-
5. Select the Key *rabbitmq.credentials* in the right panel.
114
-
6. Copy its value.
115
-
7.Go to the url https://jwt.io.
116
-
8. Paste the value into the text field *Encoded*.
117
-
9. Look at the payload's text field *Decoded*.
118
-
10. Search for the token attribute `scope` in the tokens' payload or for the value configured in `auth_oauth2.additional_scopes_key`, if any.
112
+
1. Open your browwser's developer tool (for example, in Chrome or Firefox, right-click on the page and click on *Inspect* menu option)
113
+
2. Go to the *Application* tab
114
+
3. Select the option *Storage* > *Local Storage* in the left panel
115
+
4. Click on the tree option which matches the URL of the management UI
116
+
5. Select the Key *rabbitmq.credentials* in the right panel
117
+
6. Copy its value
118
+
7.Navigate to https://jwt.io
119
+
8. Paste the value into the text field *Encoded*
120
+
9. Look at the payload's text field *Decoded*
121
+
10. Search for the token attribute `scope` in the tokens' payload or for the value configured in `auth_oauth2.additional_scopes_key`, if any
119
122
11. Once you found the appropriate token's scope attribute, find within the attribute's value any of the scopes listed above. If [auth_oauth2.scope_prefix](./oauth2#scope-prefix) is used, it must be taken into account: the scopes will be named like `myprefix_tag:administrator`. If [scope aliases](./oauth2-examples#using-scope-aliases) are used, find the scope alias that maps to one of the scopes listed above
120
123
121
124
@@ -132,7 +135,7 @@ This issue is not necessarily specific to the management UI, it may also occur w
132
135
133
136
#### Troubleshooting
134
137
135
-
1. Access RabbitMQ logs.
136
-
2. Look for `{bad_cert,hostname_check_failed}`.
137
-
3. If you find an entry it means that RabbitMQ tried to contact the url found in `auth_oauth2.issuer` and the issuer presented a wildcard certificate.
138
-
4. To fix this issue, add the following line to your RabbitMQ configuration `auth_oauth2.https.hostname_verification = wildcard`, or `auth_oauth2.oauth_providers.<my_oauth_provider_name>.https.hostname_verification = wildcard` if you are using multiple OAuth providers.
138
+
1. Access the RabbitMQ logs
139
+
2. Look for `{bad_cert,hostname_check_failed}`
140
+
3. If you find an entry, it means that RabbitMQ tried to contact the URL found in `auth_oauth2.issuer` and the issuer presented a wildcard certificate
141
+
4. To fix this issue, add the following line to `rabbitmq.conf`: `auth_oauth2.https.hostname_verification = wildcard`, or `auth_oauth2.oauth_providers.<my_oauth_provider_name>.https.hostname_verification = wildcard` if multiple identity providers are used
This issue is caused when the endpoint is not returning a JSON payload which matches with the [OpenId Connect Discovery Configuration](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig).
81
81
These are the possible causes:
82
-
- The payload returned by the endpoint is not compliant because it is empty or it is missing some critical information. To identify the root cause, open the browser's javascript console and search for one of these possible error messages:
82
+
- The payload returned by the endpoint is not compliant because it is empty or it is missing some critical information. To identify the root cause, open the browser's JavaScript console and search for one of these possible error messages:
83
83
-`Payload does not contain openid configuration` This error occurs when the payload is empty or it is not a JSON payload.
84
84
-`Missing authorization_endpoint` This error occurs when the JSON attribute `authorization_endpoint` is missing.
85
85
-`Missing token_endpoint` This error occurs when the JSON attribute `token_endpoint` is missing.
86
86
-`Missing jwks_uri` This error occurs when the JSON attribute `jwks_uri` is missing.
87
-
- The url is wrong. Check out with your administrator of your Identity Provider to get the correct url to the OpenId Connect Discovery endpoint.
87
+
- The URL is wrong. Retrieve the correct url to the OpenId Connect Discovery endpoint from your identity provider administrator.
88
88
89
89
### Not authorized {#not-authorized-error}
90
90
91
91
#### Steps to reproduce
92
92
93
-
Open the root url of the management UI in the browser, click on the button "Click here to logon" and enter the credentials requested by your Identity Provider. You are redirected back to the management UI with the following error:
93
+
Open the root URL of the management UI in the browser. Click on the button "Click here to logon" and
94
+
enter the credentials requested by the identity provider.
95
+
96
+
You are redirected back to the management UI with the following error:
94
97
95
98
```
96
99
Not authorized
@@ -106,16 +109,16 @@ This issue occurs when the token does not have enough scopes or permissions to a
106
109
*`rabbitmq.tag:policymaker`.
107
110
108
111
Follow these steps to find out which scopes or permissions are carried in the token:
109
-
1. Open your browwser's developer tool (e.g. in Chrome or Firefox, right-click on the page and click on *Inspect* menu option).
110
-
2. Go to the tab *Application*.
111
-
3. Select the option *Storage* > *Local Storage* in the left panel.
112
-
4. Click on the tree option which matches the URL of the management UI.
113
-
5. Select the Key *rabbitmq.credentials* in the right panel.
114
-
6. Copy its value.
115
-
7.Go to the url https://jwt.io.
116
-
8. Paste the value into the text field *Encoded*.
117
-
9. Look at the payload's text field *Decoded*.
118
-
10. Search for the token attribute `scope` in the tokens' payload or for the value configured in `auth_oauth2.additional_scopes_key`, if any.
112
+
1. Open your browwser's developer tool (for example, in Chrome or Firefox, right-click on the page and click on *Inspect* menu option)
113
+
2. Go to the *Application* tab
114
+
3. Select the option *Storage* > *Local Storage* in the left panel
115
+
4. Click on the tree option which matches the URL of the management UI
116
+
5. Select the Key *rabbitmq.credentials* in the right panel
117
+
6. Copy its value
118
+
7.Navigate to https://jwt.io
119
+
8. Paste the value into the text field *Encoded*
120
+
9. Look at the payload's text field *Decoded*
121
+
10. Search for the token attribute `scope` in the tokens' payload or for the value configured in `auth_oauth2.additional_scopes_key`, if any
119
122
11. Once you found the appropriate token's scope attribute, find within the attribute's value any of the scopes listed above. If [auth_oauth2.scope_prefix](./oauth2#scope-prefix) is used, it must be taken into account: the scopes will be named like `myprefix_tag:administrator`. If [scope aliases](./oauth2-examples#using-scope-aliases) are used, find the scope alias that maps to one of the scopes listed above
120
123
121
124
@@ -132,7 +135,7 @@ This issue is not necessarily specific to the management UI, it may also occur w
132
135
133
136
#### Troubleshooting
134
137
135
-
1. Access RabbitMQ logs.
136
-
2. Look for `{bad_cert,hostname_check_failed}`.
137
-
3. If you find an entry it means that RabbitMQ tried to contact the url found in `auth_oauth2.issuer` and the issuer presented a wildcard certificate.
138
-
4. To fix this issue, add the following line to your RabbitMQ configuration `auth_oauth2.https.hostname_verification = wildcard`, or `auth_oauth2.oauth_providers.<my_oauth_provider_name>.https.hostname_verification = wildcard` if you are using multiple OAuth providers.
138
+
1. Access the RabbitMQ logs
139
+
2. Look for `{bad_cert,hostname_check_failed}`
140
+
3. If you find an entry, it means that RabbitMQ tried to contact the URL found in `auth_oauth2.issuer` and the issuer presented a wildcard certificate
141
+
4. To fix this issue, add the following line to `rabbitmq.conf`: `auth_oauth2.https.hostname_verification = wildcard`, or `auth_oauth2.oauth_providers.<my_oauth_provider_name>.https.hostname_verification = wildcard` if multiple identity providers are used
0 commit comments