Quick Setup¶
Follow the steps given below to set up and install MWARE IAM on your computer in quick time.
Info
For detailed instructions on other installation options and deployments, see the installation guide.
Install MWARE IAM¶
Follow the steps given below.
-
Download and install Java SE Development Kit (JDK) version 11 or 17.
Info
Learn more about JDK compatibility in MWARE IAM 6.1.0.
-
Go to the MWARE IAM website and click Get Started.
-
Install MWARE IAM by downloading the LATEST BINARY RELEASE.
Info
The installation location of MWARE IAM is referred to as
<IS_HOME>
.
Configure the server¶
Open the deployment.toml
file (stored in the <IS_HOME>/repository/conf
folder) and add the following configuration to enable CORS:
[cors]
allow_generic_http_requests = true
allow_any_origin = true
supported_methods = [
"POST",
"HEAD",
"OPTIONS"
]
supports_credentials = false
max_age = 3600
tag_requests = false
Start MWARE IAM¶
To start MWARE IAM, open a terminal, navigate to the <IS_HOME>/bin
folder, and execute one of the following commands:
-
On Linux/MacOS
sh wso2server.sh
-
On Windows
wso2server.bat
Note that the following log appears in the command prompt when the server starts:
Shutting down the server
To shut down the server, press Ctrl + C
.
Note that the following log appears in the command prompt on server shutdown.
What's next?¶
Try out the sample IAM scenarios to get familiar with MWARE IAM and its capabilities.
Top