Initial Credentials and Database Location
Credential retrieval depends on deployment mode.
Mode A: fnOS Native App
Credentials
During installation, the wizard asks for initial admin credentials. If forgotten, check logs.
Database Path
/volX/@appshare/leelaa.reader/leelaa.db
Logs
/volX/@appdata/leelaa.reader/info.log
Mode B: Docker
Database Path
- In-container:
/data/leelaa.db - Host path: based on your volume mount
Initial Password
If password is not preset, system may generate one on first boot:
- Default admin username is
admin. - If
DEFAULT_ADMIN_PASSWORDis set, it is used only on first boot with an empty database. - If
DEFAULT_ADMIN_PASSWORDis not set, a random password is generated and written to/data/password.txt.
Check the generated password:
bash
docker exec leelaa-reader cat /data/password.txtYou can also check logs:
bash
docker logs leelaa-readerNotes
- Bootstrap credential files are generated only on first startup with empty DB.
- Changing
DEFAULT_ADMIN_PASSWORDlater does not reset an existing account. - After first login, rotate password and remove
password.txtfrom the mounted data directory.
