Open jclsn opened 1 year ago
I found when I only provided script/run --host <IP> --token <TOKEN>
, I got the same error message.
For me, the issue was that I didn't read the full README file.
My server has https certificates in front of it, so (per the README) I needed to add --protocol https
.
Furthermore, because the https cert is validated against the hostname, the --host <IP>
had to be updated to be a <HOSTNAME>
instead of an IP address.
After these two additions, I got passed this error message.
The final command for me was:
script/run --protocol https --host <HOSTNAME> --token <TOKEN>
Getting the following error
The IP and token are definitely correct. Any ideas?