Port conflict for moses

I am trying to run VScode extension on Linux mint, but i keep getting the following error.

"The terminal process “/home/fahad/.vscode/extensions/toradex.torizon-early-access-1.6.5/moses-linux/moses ‘–port’, ‘5000’” terminated with exit code: 255.

it seems like there is a port conflict for port 5000, both moses and docker-registry use the same port.


how do i change port for moses.

Hi @fahads ,

One possible cause for this error message could be due to OpenSSL 1.1 not being installed on the system. Can you try downloading and installing libssl1.1:

wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
sudo apt install ./libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb

After running the commands above check if the VSCode extension runs correctly.

EDIT: Updated link. If this new link eventually fails try going to Index of /ubuntu/pool/main/o/openssl and download the lib manually.

Best regards,
Lucas Akira

Hi @fahads !

Do you have any updates regarding this topic?

Did you manage to solve it?

Best regards,

yes, it worked by installing openssl v1.1

Hi @fahads !

Thanks for the feedback!

Best regards,

Hi Toradex,

I’m trying the “openssl” solution for the same error message, but it seems the deb file is renamed. Any better solution?

$ wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb

--2023-02-09 10:53:24--  http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb
Resolving security.ubuntu.com (security.ubuntu.com)... 185.125.190.39, 185.125.190.36, 91.189.91.39, ...
Connecting to security.ubuntu.com (security.ubuntu.com)|185.125.190.39|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2023-02-09 10:53:25 ERROR 404: Not Found.

Hi @jeffreyx ,

You’re right, the link is outdated, can you try this one instead:

wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
sudo apt install ./libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb

I’ll update my original answer with this new link as well.

Try that and see if it works for you.

Best regards,
Lucas Akira