9

I have deployed keycloak on my EKS cluster and able to access dashboard successfully and created a new realm already.

So I thought of testing my keycloak, and went to https://www.keycloak.org/app/ for testing.

I have created a client with the root URL "https://www.keycloak.org/app/" and created one User also. I have tested successfully my user using account login of my realm.

then I went to https://www.keycloak.org/app/ entered my keycloak URL as https://keycloak.test.nip.io , the realm as Test(same name of my realm), and then client name as a portal(same name client created on keycloak).

When I hit Sign in, it redirects to my keycloak URL but shown We are Sorry... Page not found

Anyone knows why I am receiving this error and how can I avoid that.

Prashant Gupta
  • 153
  • 1
  • 2
  • 11

2 Answers2

13

I too had this error. I followed instructions somewhere for configuring the keycloak client application's url, realm, and clientId properties. In the instructions it said to configure the url to http://localhost:8080/auth. I think this must have changed somewhere along the way.

Changing the url property to http://localhost:8080 fixed the error :)

Datum Geek
  • 1,358
  • 18
  • 23
6

Issue fixed. So there is a catch My realm name was Test. So I was entering the same and it was not working and then I tried writing in lowercase as a test. Boom It worked.

TIP: No matter what case your realm name is there, if facing this issue try in Lowercase it solved for me and hope for others also it should work.

Thanks, guys...

Prashant Gupta
  • 153
  • 1
  • 2
  • 11
  • 1
    I had the same issue. The error was that the realm was not created in keycloack. After creating the realm, the error has gone. – florins Mar 30 '22 at 08:57
  • 1
    really weird, I tried almost everything. I checked typo, convert everything to lovercase and use underscore instead of dash. But it wont work. I just share [my Github poject](https://github.com/kasir-barati/you-say) for those who come later see it. Maybe in the future I resolve it :smile: – Kasir Barati Mar 26 '23 at 19:11
  • This was my issue. My realm and client actually have the same names but the realm name is capitalized. That fixed it. – Harlin Apr 26 '23 at 22:25