Hi all,
i have dumped postgres database on one server and moved dump to another server and restored it.
tryton application code is same in both servers. But after restoring the database i am not able to login to the application.
following are the steps i did:
1. dump database d1 from server A
pg_dump d1 > db.sql
2. move db.sql to server B and create database(d1) in server B
CREATE DATABASE d1 WITH TEMPLATE template0; ( this i have done from psql console).
3. restore the dump on server B
psql -d d1 -f db.sql
4. updated trytond
./trytond -d d1 --all
Everything is successful. But after i open url and trying to give credentials to login to the application then i could not login.
Could anyone please Help me?
PS: i am using tryton3.4, postgresql 9.1
Thanks
--Appu