2023-10-12 21:33:25 +00:00
<#import "/templates/profile.adoc" as profile>
2023-02-13 07:40:02 +00:00
== Start Keycloak
2023-02-09 09:29:41 +00:00
2023-02-20 12:58:57 +00:00
. From a terminal, open the keycloak-{version} directory.
. Enter the following command:
2023-10-12 21:33:25 +00:00
<@profile.ifProduct>
+
[source,bash,subs="attributes+"]
----
bin/kc.sh start-dev
----
</@profile.ifProduct>
<@profile.ifCommunity>
2023-02-20 12:58:57 +00:00
* On Linux, run:
+
2023-02-09 09:29:41 +00:00
[source,bash,subs="attributes+"]
----
bin/kc.sh start-dev
----
2023-02-20 12:58:57 +00:00
* On Windows, run:
+
2023-02-09 09:29:41 +00:00
[source,bash,subs="attributes+"]
----
2023-09-13 07:50:42 +00:00
bin\kc.bat start-dev
2023-02-09 09:29:41 +00:00
----
2023-10-12 21:33:25 +00:00
</@profile.ifCommunity>
Using the `start-dev` option, you are starting Keycloak development mode. In this mode, you can try out Keycloak for the first time to get it up and running quickly. This mode offers convenient defaults for developers, such as for developing a new Keycloak theme.