@contrerasrommel, welcome to the Caynnee Community.
It looks like this is the same error as earlier in this thread, just with a different server. (updates.mydevices.com instead of cayenne.mydevices.com).
I’m still not 100% sure what causes it, but if you trust me that we have a perfectly valid certificate (you can verify by visiting https://updates.mydevices.com/ in your web browser, it will show a secure connection and valid certificate), then we can just work around this by skipping the certificate check here as well. To do this:
-
Open your
rpi_<INVITE_CODE>.sh
script in a text editor of your choice -
Locate this line:
wget -O $HOME/$PREFIX.tar.gz "https://updates.mydevices.com/raspberry/myDevices-1.0.tar.gz"
and replace it with
wget --no-check-certificate -O $HOME/$PREFIX.tar.gz "https://updates.mydevices.com/raspberry/myDevices-1.0.tar.gz"
-
Save your changes and run the script again. It should now bypass the certificate check when contacting that updates.mydevices.com server and continue on with the installation process.
Let me know if you have any trouble or questions with the above.