I have upgraded CABI successfully, however, the superuser cannot log in. It simply returns to the log in screen. No error message.
This issue can happen if the superuser is disabled
1. Try loggin in with the superuser one more time. If it still fails:
2. Run the following query on your UIM DB:
select * from jiuser where username = 'superuser'
3. and verify that the enabled field is equal to 1. If it's equal to 0 the superuser won't be able to log in.
4. Run the following query to enable the superuser.
UPDATE jiuser set enabled=1 where username ='superuser'