I made a dump of an odoo database with pgdump, retored that dump file into a new database and wonder now hoe do I tell odoo that is shoud list that new databse in the login window.
sudo su – postgres -s /bin/bash
pg_dump [database name] [dump_name]
createdb [new_database]
pgsl [new_database] > [dump_name]
is what I did. I can see that there is a new databse (psql -l) and the restore procedure was sucessfull I think. I restarted the odoo-server but can't choose my new database in the login window. may I have to restart odoo in any arguments in order to get the connection running?
A simple refresh of your webpage should be enough. (A hard refresh)
how do I hard refresh my webpage? I have tried F5, deleting the cache. Did not do the trick. I noted another thing though ... psgl -l show my new databse being owned by postgres while another database I made from the odoo interface is being owned by odoo. Maybe that could be the reason ... just how do I change ownership. I guess there must be a postgres command of some sort that does that