In this second day of the Keycloak Advent Calendar, we'll walk you through the steps to set up Keycloak for a trial. It does not mention complicated settings. It's easy, so if you're interested, give it a try: slight_smile:
The setup procedure is as follows.
In addition to this, this page also touches on how to Japaneseize and uninstall Keycloak.
For more information, please refer to Keycloak Guides. Japanese translation of the guide is also available on NRI OpenStandia (translated as of December).
The requirements for launching Keycloak are as follows:
--OS that can execute Java
This section describes the procedure from starting the Keycloak server, setting the administrator user, and logging in to the management console.
Download the Keycloak compressed file from the Keycloak Download Page.
After downloading, unzip it to a suitable directory. Running standalone.sh
or standalone.bat
in the bin
directory will start the Keycloak server.
--For Linux / Unix:
$ unzip keycloak-3.3.0.CR2.zip
$ ./bin/standalone.sh
--For Windows:
> unzip keycloak-3.3.0.CR2.zip
> bin\standalone.bat
In addition, "Wildfly" (Java EE container developed mainly by Red Hat) is included in the compressed file of Keycloak. Keycloak runs on top of this Wildfly.
: warning: By default, Keycloak does not allow access from remote hosts. This is due to WildFly's default specifications. To cancel this, add the IP address of the host allowed by the -b option to the startup script. If it is "0.0.0.0", all hosts are allowed. $ ./bin/standalone.sh -b = 0.0.0.0 code> td> tr> table>
|