On 2015-12-15 10:17, appu wrote: > 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?
I think it is not linked to the database restore but to a correct installation on your new server. You should try to create a new database on it first to check if it works. -- Cédric Krier - B2CK SPRL Email/Jabber: [email protected] Tel: +32 472 54 46 59 Website: http://www.b2ck.com/ -- You received this message because you are subscribed to the Google Groups "tryton" group. To view this discussion on the web visit https://groups.google.com/d/msgid/tryton/20151215185326.GB30672%40tetsuo.wifi.b2ck.com.
