qkitgroup / qkit

Qkit framework
GNU General Public License v2.0
43 stars 46 forks source link

starting more qkit instances on the same pc #31

Closed TimWolz closed 6 years ago

TimWolz commented 6 years ago

It is only possible to open one qkit instance, i.e., qkit.start(), at the same time on the same pc. Otherwise a zmq error is prompted "address already in use". This is a problem for loading data via store.Data() if one works with several notebooks during data evaluation.

rotzinger commented 6 years ago

Two or more services open network ports, which can only be open once. FIX: A second instance of QKIT is now trying to open the ports, but if this fails, it is not starting the service. Cheers, Hannes