How to Reset your Administrator password?

In some cases you might have forgotten the Administrator account and then only way is to reset the password. Follow the steps below to reset the password :-

Run the following queries on your database :

  • First you need to find the ID of your company. Run the following query to find the vdb_id of your company :-
                    select vdb_id, company_code, name from db_company

  •  Now run the below query to change the password :

                        update db_person set pwd = 'Y2Vsb3hpczE=' where login_name = 'administrator' and vdb_id = 'enter the vdb_id of the company you got from the above query'

           This query will change the password of administrator 'celoxis1' (without quotes).