···11+# Sysadmin Tips
22+33+Watch the millipds logs:
44+55+```sh
66+sudo journalctl -u millipds.service -f
77+```
88+99+Directly access the sqlite db:
1010+1111+```sh
1212+sudo -u millipds /opt/millipds/.venv/bin/apsw /opt/millipds/data/millipds.sqlite3
1313+```
1414+1515+This is useful because APSW likely ships a more bleeding-edge sqlite3 than the one supplied by your distro - accessing it like so will guarantee compatibility. If you're going to mess with the DB, I hope you know what you're doing!