Installing OSIAM on macOS
OSIAM is an open source identity and access management system. Here's how to install it on a macOS machine.
Prerequisites
Before we begin, ensure that the following prerequisites are met:
- You have a macOS machine.
- You have Java 8 or higher installed.
Installation
Open Terminal on your macOS machine.
Clone the OSIAM repository by running the following command:
git clone https://github.com/osiam/osiam.gitMove into the
osiamdirectory by running the following:cd osiamBuild the project by running the following command:
./mvnw clean install -DskipTestsOnce the build process is complete, navigate to the
bindirectory by running:cd binStart the OSIAM server by running the following command:
./osiam-server.sh -e /etc/osiam/application.yaml -Djavax.net.ssl.trustStore=/path/to/truststoreReplace
/path/to/truststorewith the path to the Java truststore file.Access the OSIAM server by navigating to
https://localhost:8443/osiam. You can access the server with the default credentials:- Username:
marissa - Password:
koala
These can be changed in the
application.yamlfile.- Username:
Congratulations, you have successfully installed OSIAM on your macOS machine!