Sailpoint IdentityIQ Installlation Error

When I am trying to using these command ./iiq console -j as part of Sailpoint IdentityIQ Installation, I am getting below mentioned error

WARN main springframework.context.support.ClassPathXmlApplicationContext:559 - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanInitializationException: Could not process key ‘{“textColorIndex”’ in PropertyOverrideConfigurer; nested exception is org.springframework.beans.factory.BeanInitializationException: Invalid key ‘{“textColorIndex”’: expected ‘beanName.property’

Hi @manikandaprabhu_cg,
Check your iiq.properties in connection to database. Something is wrong in the connection parameters for the database connection.

check the DB connection in iiq.properties, those are the example of connection for each db type:

##### MySQL/Aurora (SSL) #####
dataSource.url=jdbc:mysql://<host_name>:<port>/<dbname>?useServerPrepStmts=true&tinyInt1isBit=true&characterEncoding=UTF-8&serverTimezone=UTC
##### MySQL/Aurora (without SSL)  #####
dataSource.url=jdbc:mysql://<host_name>:<port>/<dbname>?useServerPrepStmts=true&tinyInt1isBit=true&useSSL=false&characterEncoding=UTF-8&characterEncoding=UTF-8&serverTimezone=UTC
##### MSSQL Server #####
dataSource.url=jdbc:sqlserver://[serverName[\instanceName][:portNumber]][;property=value[;property=value]]
##### Oracle #####
dataSource.url=jdbc:oracle:<drivertype>:<username/password>@<database>:<port>:<sid>

for MSSQL you can add this at the end of the url, if you dont use a secure connection:

encrypt=false;trustServerCertificate=false;

PS check if the version of the library is correct for your DB

PPS which version are you installing?

Hi @manikandaprabhu_cg,

is this resolved?, most probably this look to be the connection properties issue in IIQ.Properties file.

Hello,
Check the .properties file which contains a key-value pairs for configuration.
Ensure property entries might look like textColorIndex=5

Verify that the PropertyOverrideConfigurer xml file is correctly configured
ie. <prop key="myBean.textColorIndex">5</prop>

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.