Migration / update problem new SSD

Please don’t be scared with the details below …

  1. Do you have a running PosgreSQL database-server?
    • check with sudo systemctl status postgresql is should output some information and saying that it’s active
    • If not, install it with apt-get, initialize it and see if it’s running
    • Create a tryton-user with password in PostgreSQL
    • Create an empty database which will be filled by Tryton (createdb -O <tryton-user> tryton_test
    • Update your trytond.conf and add the tryton-user and password in the database uri like `uri = postgresql://<tryton-user>:<password>@localhost:5432/
  2. If you cannot connect to the database-server change /var/lib/pgsql/data/pg_hba.conf and change the word ident to md5
  3. Use the desktop-client first before using the webclient. The webclient needs to be installed separately. Using the desktop-client makes sure that Tryton-server is running properly. Then you can move to the next step.