MirrorNest
← Todas las guías

Keycloak

Open-source identity and access management — single sign-on (SSO), OAuth2/OIDC, and user federation for your other self-hosted apps.

Sistema: Any Docker hostSecurityIdentitySitio oficial ↗Documentación oficial ↗
Esta guía se elaboró a partir de la documentación oficial de Keycloak, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
  1. 1Run the official quickstart container

    docker run -d -p 8080:8080 -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=changeme --name keycloak quay.io/keycloak/keycloak:latest start-dev

    start-dev is for evaluation only (in-memory, no HTTPS enforcement) — the official docs' production guide covers a real database and proper TLS setup before exposing this beyond your own network.

  2. 2Open the admin console

    http://your-server-ip:8080 — log in with the admin username/password set above, then change it.