xiki icon indicating copy to clipboard operation
xiki copied to clipboard

Installer fails with expired SSL cert

Open henrebotha opened this issue 4 years ago • 2 comments

$ curl -L https://xiki.com/install_xsh -o ~/install_xsh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (60) SSL certificate problem: certificate has expired
More details here: https://curl.haxx.se/docs/sslcerts.html

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.

henrebotha avatar Aug 06 '19 12:08 henrebotha

workaround= you can add an -k after curl to get it to continue -k, --insecure (TLS) By default, every SSL connection curl makes is verified to be secure. This option allows curl to proceed and operate even for server connections otherwise considered insecure.

$ curl -k -L https://xiki.com/install_xsh -o ~/install_xsh

spladder87 avatar Aug 15 '19 12:08 spladder87

Doesn't work.

curl -k -L https://xiki.com/install_xsh -o ~/install_xsh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0

Geezus42 avatar Mar 04 '20 17:03 Geezus42