Below is the error that is displayed while trying to login to the RSA via L&G. It is happening in version 7.0.
The aveksa security application must be initialized first by the System Operations Node(SON).
See documentation regarding server nodes and deployment".
IMG is unable to start and the following error occurs:
"Unable to initialize security model. com.aveksa.server.core.DuplicateNameException: Aveksa ADC
The aveksa security application must be initialized first by the System Operations Node(SON).
See documentation regarding server nodes and deployment".
Already checked the below article, which didn't help.
When you say the article didn't help, do you mean you executed the steps and it did not resolve the issue? What was the output of the SQL updates? Did it say a row was updated or did it return an ORA error?
Can you run this query?
select ta.id as application_id, ta.name as application_name, ta.is_deleted as app_is_deleted,
tdc.id as collector_id, tdc.name as collector_name, tdc.is_deleted as col_is_deleted
from t_av_account_data_collectors taadc, t_data_collectors tdc, t_applications ta
where taadc.id=tdc.id and
taadc.resource_id=ta.id and
tdc.name='Aveksa ADC';
It should return one row with application_name='Aveksa', collector_name='Aveksa ADC', and the is_deleted flags as 'FALSE'.
If that doesn't return anything, how about this:
select id, name, is_deleted from t_data_collectors where name='Aveksa ADC';