How to connect to the same Tryton server with two clients on the same computer

Sometimes I would like to use two Tryton clients in parallel for looking up and comparison.
But as the client documentation stats, “the client will try to find already running client that could handle it [the connection] and send to this one to open”. So it is not possible to connect to the same connection with more than one client.

I found the following solution, I simply use different hosts. E.g. Host 1: localhost:8000 and Host 2: *:8000 and Host 3: 127.0.0.1:8000

Unfortunately this works only in case there is no web server in front of the Tryton server which handles the connection based on a host name.

1 Like

good to know.
have you tried a sudo su user2 -c tryton ? or something of this kind ?