Subsonic uses HSQL. However everytime Subsonic stops running it puts some information /path/to/subsonic/install/db/subsonic.script
When Subsonic is started again that file is used to recreate some of the database.
If search that file you'll find a line similar to this
- Code: Select all
INSERT INTO USER VALUES('admin','enc:61646d696e4',0,0,0,FALSE)
Passwords are hex encoded ('enc:' indicates this which is not part of the password).
Hope that helps