How to completely disable the password when accessing via web ui?
Every time I run octoprint on the server I have to look up the username for an hour and then reset the password which is just not serious. The password is not needed, it would be useful to have an option in docker compose so that the user can disable the password completely.
How do I make it so that no passwords ever appear again when I want to print?
Hi @p6002, software must adhere to universal security principles, including authentication and authorization controls.
OctoPrint is no exception and requires a password because, otherwise, a malicious actor could destroy your printer or set your house on fire by overheating the nozzle.
Disabling the password in OctoPrint is not a good idea. After all, I don’t think you’d expect to access any website or your online banking without entering a password.
The best solution to your issue—forgetting passwords—is to use a password manager (like Bitwarden or KeePassXC) or save passwords in your browser.
That said, if you really want to, OctoPrint already allows you to set up (not recommended anyway) an allowlist of local networks in the configuration file, enabling autologin without a password.
You can find the documentation here: Access Control — OctoPrint master documentation and a tutorial here: How to set up OctoPrint to autologin a single user when connecting from the internal network.
Best regards.