If you have lost your local admin account, you can recover it using the following procedure.
First, login to Unomaly using SSH and run the following command:
unomaly postgres
To see the username for the first admin user, write the following in the prompt above:
select username from unlogauth_users where user_id = 1;
If you don't have an email address associated with the user, you have to reset the password in the database, otherwise just follow the "forgot password?" instructions on the login page. To set the password to "unomaly" for that user, write the following query:
update unlogauth_users set password = 'JGFyZ29uMmlkJHY9MTkkbT02NTUzNix0PTIscD0xJFExcFBsbmQyaGgrSDFZbGxpZDlrQlEkZE85QXd4UzdmRjYzSnBocmhUekZIWm8rOVBONnhSeHczZ2ZaeHgvaFF3NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=' where user_id = 1;
You can now login with your username and the password "unomaly".