2015-04-30 12:33 GMT+02:00 Oscar Tark <[email protected]>: > It seems to be for the like of me a problem with either the syntax. I try > commenting the field and using the default tryton password but it tells me > it is wrong. I did use it before to create a DB and everything was fine. Now > it won't accept a password by: > > super_pwd = pwd > > or the admin pwd.
Password in trytond conf file is crypt. Run this command and copy password into trytond conf file in super_pwd value # python -c 'import getpass,crypt,random,string; print crypt.crypt(getpass.getpass(), "".join(random.sample(string.ascii_letters + string.digits, 8)))' Raimon
