ADA 11.2 - 500 errors after trying to login
search cancel

ADA 11.2 - 500 errors after trying to login

book

Article ID: 279673

calendar_today

Updated On:

Products

CA Application Delivery Analysis (NetQoS / ADA)

Issue/Introduction

After installing ADA 11.2 and importing your ADA 11.1 database, you may run into an issue to where if you try to enter your LDAP / AD credentials to the ADA SSO page that it returns a 500 error. 

Environment

ADA 11.2

Resolution

We need to get the encrypted LDAP Connection Password value from the NetOps Portal NetQoS Portal Database and manually insert it into the ADA database.  Each of the mysql commands below will prompt you for the mysql root user password.

  1. First start on the NetOps Portal Server and run the below query with the proper credentials. This will return the <encryptedvalue>.

    mysql -P3308 -D super -uroot -p -t -e "select PropValue from performance_center_properties where propname='LDAPConnectionPassword' and priority = (select max(priority) from performance_center_properties where propname='LDAPConnectionPassword' and deleted='N');"

  2. Next run this command from the NFA Console and observe the returned data:

    mysql -P3308 -D super -uroot -p -t -e "select * from performance_center_properties where propname='LdapConnectionPassword' and priority=2;"

  3. If the above command in step 2 returns a value, run the below command and substitute the <encryptedvalue> with the value returned in step 1:

    mysql -P3308 -D super -uroot -p -t -e "update performance_center_properties set propvalue='<encryptedvalue>',deleted='N' where propname='LdapConnectionPassword' and priority > 1;"

  4. If no value was returned, then run the below query and substitute the <encryptedvalue> with the value returned from step 1:

    mysql -P3308 -D super -uroot -p  -t -e "INSERT INTO performance_center_properties ( PropName, Priority, PropValue, Deleted, UpdatedOn ) VALUES( 'LdapConnectionPassword', '2', '<encryptedvalue>', 'N', unix_timestamp() );"

  5. Now you can restart the ADA Consoles "Performance Center SSO Service" (it may be named CA Performance Center SSO Service on your server).

  6. You should now be able to log in.