SailPoint Identity IQ (IIQ) 8.4 Installation Guide
3 min read
1 year ago
Published on Aug 05, 2024
This response is partially generated with the help of AI. It may contain inaccuracies.
Table of Contents
Introduction
This tutorial provides a step-by-step guide on installing SailPoint Identity IQ (IIQ) version 8.4. It covers all necessary software requirements, installation procedures, and configuration steps to help you set up Identity IQ effectively.
Step 1: Download Required Software
Before beginning the installation, ensure you have the following software downloaded:
- Identity IQ 8.4: Download from the SailPoint Compass portal.
- JDK 11: Available at Oracle.
- Apache Tomcat 9.0: Download from Apache Tomcat.
- MySQL 8.0: Download from MySQL.
- IdentityIQ WAR file: Obtain it from SailPoint Community.
Optional software for easier manipulation:
- Notepad++: Download here
- DBeaver: Download here
- 7zip: Download here
Step 2: Prepare the Installation Environment
- Extract the Identity IQ zip file to a convenient directory on your system.
- Open the directory to locate the
identityiq.war
file.
Step 3: Install Identity IQ on Apache Tomcat
- Check if Apache Tomcat is running:
- If it is running, shut it down using the command:
shutdown.bat
- If it is running, shut it down using the command:
- Copy the WAR file:
- Place the
identityiq.war
file in thewebapps
folder of your Apache Tomcat installation.
- Place the
- Extract the WAR file:
- You can use the command line or 7zip:
jar -xvf identityiq.war
- This will create a folder with the same name as the WAR file.
- You can use the command line or 7zip:
Step 4: Set Up MySQL Database
- Create the Database:
- Open MySQL and run the following command to create the required databases:
CREATE DATABASE identityiq; CREATE DATABASE identityiq_plugin; CREATE DATABASE identityiq_h;
- Open MySQL and run the following command to create the required databases:
- Initialize the Database:
- Locate the
init.xml
file in theconfig
folder of the Identity IQ installation. - Use the MySQL command to import the database schema:
SOURCE /path/to/init.xml;
- Locate the
Step 5: Configure Database Connection
- Locate the properties file:
- Navigate to the
WEB-INF/classes
folder in the Identity IQ directory and open theidentityiq.properties
file.
- Navigate to the
- Update Database Connection Details:
- Modify the database connection URLs to include your MySQL port (default is 3306, change to 3307 if needed):
jdbc:mysql://localhost:3307/identityiq
- Ensure all three databases have the correct URLs configured.
- Modify the database connection URLs to include your MySQL port (default is 3306, change to 3307 if needed):
Step 6: Initialize SailPoint Objects
- Run the Identity IQ Console:
- Open a command prompt in the Identity IQ
bin
folder and run:iiq console
- Open a command prompt in the Identity IQ
- Import the initial configuration:
- Execute the following command in the console:
import init.xml
- For LCM, run:
import init-lcm.xml
- Execute the following command in the console:
Step 7: Start Apache Tomcat
- Start Tomcat:
- Navigate to the
bin
folder of Apache Tomcat and run:startup.bat
- Navigate to the
- Access Identity IQ:
- Open a web browser and navigate to the default URL for Identity IQ.
- Log in using the credentials:
- Username:
spadmin
- Password:
admin
- Username:
Conclusion
You have now successfully installed SailPoint Identity IQ 8.4. You should verify the installation by checking the version and confirming the default identities in the system. For further customization or advanced configurations, refer to the official documentation or community forums for additional guidance.