I went back one step and initialized a new, empty DB:
trytond-admin -c /etc/tryton/trytond.conf --all -d test
Traceback (most recent call last):
File "/usr/bin/trytond-admin", line 21, in <module>
admin.run(options)
File "/usr/lib/python3.4/site-packages/trytond/admin.py", line 23, in run
with Transaction().start(db_name, 0):
File "/usr/lib/python3.4/site-packages/trytond/transaction.py", line 87, in start
database = Database(database_name).connect()
File "/usr/lib/python3.4/site-packages/trytond/backend/sqlite/database.py", line 220, in connect
raise IOError('Database "%s" doesn\'t exist!' % db_filename)
OSError: Database "test.sqlite" doesn't exist!
This is indeed strange, as trytond.conf contains the entry
Did not change the prio, but you are right -> downgrade
I see now a problem regarding encryption - python3-py-bcrypt is installed:trytond-admin -c /etc/tryton/trytond.conf --all -d test
Admin Password for test:
Admin Password Confirmation:
Traceback (most recent call last):
File "/usr/bin/trytond-admin", line 21, in <module>
admin.run(options)
File "/usr/lib/python3.4/site-packages/trytond/admin.py", line 82, in run
'password': password,
File "/usr/lib/python3.4/site-packages/trytond/res/user.py", line 245, in write
super(User, cls).write(*args)
File "/usr/lib/python3.4/site-packages/trytond/model/modelsql.py", line 949, in write
field.set(cls, fname, *fargs)
File "/usr/lib/python3.4/site-packages/trytond/model/fields/function.py", line 109, in set
setter(Model.browse(ids), name, value)
File "/usr/lib/python3.4/site-packages/trytond/res/user.py", line 195, in set_password
'password_hash': cls.hash_password(value),
File "/usr/lib/python3.4/site-packages/trytond/res/user.py", line 488, in hash_password
return getattr(cls, 'hash_' + cls.hash_method())(password)
File "/usr/lib/python3.4/site-packages/trytond/res/user.py", line 521, in hash_bcrypt
hash_ = bcrypt.hashpw(password, bcrypt.gensalt()).decode('utf-8')
AttributeError: 'str' object has no attribute 'decode'
Axeladded 1 deleted label and removed 1 deleted label
The super-pwd encryption from http://doc.tryton.org/4.0/trytond/doc/topics/configuration.html#topics-configuration does not work that way with python3, and, very strange, if I run the python (2.7) command I get a different result for the same input each time I enter the admin-password....
Axeladded 1 deleted label and removed 1 deleted label