Distro info:
Distributor ID: Ubuntu
Description: Ubuntu 20.04.5 LTS
Release: 20.04
Codename: focal
I'm using ubuntu 20.04 as server using the command:
./metashape.sh --server --control <server-ip> --dispatch <server-ip>
and two nodes running ubuntu 20.04 using commands:
./metashape.sh --node --dispatch <server-vol> --root <shared_storage_path> --platform offscreen
Then I use python script to connect to the server and send tasks to it, from the server itself.
Here are the python scripts:
client = Metashape.NetworkClient()
client.connect(socket.gethostname())
batch_id = client.createBatch(path[len(root):], network_tasks)
client.setBatchPaused(batch_id, False)
Just when this process starts the nodes start to throw error given below in infinite loop:
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
* Line 1, Column 1
Syntax error: value, object or array expected.
: Could not load the Qt platform plugin "xcb" in "" even though it was found.
Please help