[整理] Skip SSL / Certificate

古哥
ycku
Published in
1 min readDec 11, 2018

有些系統環境不方便使用 SSL 認證時,可以使用下列方式來跳過。

wget

wget --no-check-certificate https://example.com/some.tar.gz

yum

Edit /etc/yum.conf, and Add a line:

sslverify=false

curl

curl -k https://example.com/some.tar.gz

apt-get

新增一個檔案 /etc/apt/apt.conf.d/skipssl.conf
內容:

Acquire::https {
Verify-Peer "false";
Verify-Host "false";
}

python

pip 有時候會有其他網址,視實際執行情況增加 trusted-host

pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org sqlalchemyPYTHONHTTPSVERIFY=0 python mypython.py

--

--

古哥
ycku
Editor for

解決不了問題,就解決提出問題的人