Having challenge accessing Dashboard for second time in Google chrome, incognito mode. When trying to login using correct credentials, get login page. Also it does not give any hint that this may be issue with cookies. This is an Usability issue.
(In reply to Veera Raghava Reddy from comment #16) > Having challenge accessing Dashboard for second time in Google chrome, > incognito mode. > When trying to login using correct credentials, get login page. > Also it does not give any hint that this may be issue with cookies. > This is an Usability issue. I was successfully able to login using magna081 cluster provided by Sunil in Chrome, incognito mode.
https://extensa003.ceph.redhat.com:8443/#/login admin/admin@123
Crome browser Version 90.0.4430.93 (Official Build) (64-bit) Just speculating, is the issue because in the same browser we have launched previous version of dashboard in the previous release?
Reproduced and debugged. The issue has to do with a malformed cookie `cmapi_cookie_privacy=permit 1 required` which contains whitespaces in the cookie-value (see RFC 6265 2.2). This is reported to Python 3.6 http.cookies SimpleCookie (https://bugs.python.org/issue31456). Reproduced: ```py >>> from http.cookies import SimpleCookie >>> SimpleCookie('cmapi_cookie_privacy=permit 1 required') <SimpleCookie: > >>> SimpleCookie('cmapi_cookie_privacy=permit 1') <SimpleCookie: > >>> SimpleCookie('cmapi_cookie_privacy=permit') <SimpleCookie: cmapi_cookie_privacy='permit'> ``` A work-around would consist on deleting that specific cookie "cmapi_cookie_privacy" or all cookies for the problematic domain.