When setting up your Odoo environment, you may or may not notice the “Manage databases” link on the login screen. While the link does require login to perform any operations, it’s best to hide that prompt and keep your database information hidden a bit better.
1: Modify /etc/odoo/odoo.conf
sudo nano /etc/odoo/odoo.conf
2: Add the following line (or modify the value)
list_db = False
After making the change, save the file.
3: Restart Odoo
sudo systemctl restart odoo
Now that you’ve modified the configuration file and restarted Odoo, you’ll notice the login screen has been modified.
While it is possible to modify the login screen the same way as mentioned in the Change Login Screen guide, that method is not the best for this use case, as the change has the potential to be overwritten when the system is updated.