keycloak-scim/authorization_services/topics/getting-started/overview.adoc

25 lines
1.3 KiB
Text
Raw Normal View History

2016-11-29 15:30:53 +00:00
[[_getting_started_overview]]
2016-06-17 00:14:05 +00:00
== Getting Started
2017-08-28 12:50:14 +00:00
Before you can use this tutorial, you need to complete the installation of {project_name} and create the initial admin user as shown in the link:{gettingstarted_link}[{gettingstarted_name}] tutorial.
2017-09-05 07:49:24 +00:00
There is one caveat to this. You have to run a separate {appserver_name} instance on the same machine as {project_name} Server. This separate instance will run your Java Servlet application. Because of this you will have to run the {project_name} under a different port so that there are no port conflicts when running on the same machine. Use the `jboss.socket.binding.port-offset` system property on the command line. The value of this property is a number that will be added to the base value of every port opened by {project_name} Server.
2016-06-17 00:14:05 +00:00
2017-08-28 12:50:14 +00:00
To boot {project_name} Server:
2016-06-17 00:14:05 +00:00
.Linux/Unix
[source]
----
2017-03-31 17:34:16 +00:00
$ .../bin/standalone.sh -Djboss.socket.binding.port-offset=100
----
2016-06-17 00:14:05 +00:00
.Windows
[source]
----
2017-03-31 17:34:16 +00:00
> ...\bin\standalone.bat -Djboss.socket.binding.port-offset=100
----
2016-06-17 00:14:05 +00:00
2017-09-05 07:49:24 +00:00
For more details about how to install and configure a {appserver_name}, please follow the steps on the link:{adapterguide_link}[{adapterguide_name}] tutorial.
2016-06-17 00:14:05 +00:00
2017-09-05 07:49:24 +00:00
After installing and booting both servers you should be able to access {project_name} Admin Console at http://localhost:8180/auth/admin/ and also the {appserver_name} instance at
http://localhost:8080.