Dear comunity,
Looking at sandbox.properties to enable lcm and rapidsetup this should change for false to true, but do i need to also add something in init.xml?? where is it?
Path of init.xml is, considering IIQ is deployed in tomcat server
<tomcat_home>/webapps/identityiq/WEB-INF/init.xml
Hi @fugitiva,
No changes are required in the init.xml file from your end. If your setup includes LCM you can set usingLcm to true.This will ensure that the init-lcm.xml file is included in the init.xml, or is imported if the target import-lcm is called directly or indirectly.
init.xml is located under
config
<tomcat_home>/webapps/identityiq/WEB-INF/config/init.xml
Yes, to include the LCM to the build it is required. SSB modifies the init.xml to import all content including default object, LCM objects, custom objects etc. The modified init.xml will look something like the below.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE sailpoint PUBLIC 'sailpoint.dtd' 'sailpoint.dtd'>
<sailpoint>
<ImportAction name='include' value='init-default_org.xml'/>
<ImportAction name='include' value='init-lcm.xml'/>
<ImportAction name='include' value='init-pam.xml'/>
<ImportAction name='include' value='init-rapidsetup.xml'/>
<ImportAction name='include' value='patch/identityiq-8.2p5-objects.xml'/>
<ImportAction name='include' value='patch/identityiq-8.2p5.xml'/>
<ImportAction name='include' value='patch/identityiq-lcm-8.2p5-objects.xml'/>
<ImportAction name='include' value='patch/identityiq-lcm-8.2p5.xml'/>
<ImportAction name='include' value='sp.init-custom.xml'/>
</sailpoint>
I see this a version 8.2 did you enable to true rapidsetup?? me version is 8.3 and as far as i see rapidsetup is already enable *(when you do a normal installation wihtout ssd)
so should is set to true?or leave a false
usingRapidSetup=false
If your implementation includes Rapid Setup, you can ensure that it is included in your project build by setting the usingRapidSetup property to true. This will ensure that the init- rapidsetup.xml file is included in the init.xml, or is imported if the target import-rs is called directly or indirectly.
For you this means: set usingRapidSetup to true
– Remold
@Remold thank you for answer, I have a question, beside is set to false i can see the rapid setup in the menu, why is that?
These SSB/SSD configuration settings (usingLcm, usingRapidSetup, usingPAM, usingFAM, usingCAM & usingAI) only defines what will be imported during a deployment via SSB.
Once the artifacts of LCM, RapidSetup, etc are imported into the database , they will stay in the database.
Since you have, at least once, imported the init-rapidsetup.xml RapidSetup is enabled in your environment.
– Remold