|
|
|
|
|
今天在一臺VPS上安裝PHP,結(jié)果執(zhí)行wget命令下載PHP安裝包時提示有錯,錯誤信息如下:
ERROR: cannot verify xxx's certificate, issued by '/C-PL/0-Unizeto Technologies S.A./OU-Certun Certification Authorrity/CN-Certun Domain Validation CA SHA2':
Unable to locally verify the issuer's authority.
To connect to xxx insecurely, use '--no-check-certificate'.
按照提示,在wget
命令后加上--no-check-certificate
參數(shù):
wget --no-check-certificate https域名網(wǎng)址
結(jié)果命令成功執(zhí)行。
--no-check-certificate
是什么意思呢,這里簡單說一說。
wget --no-check-certificate
這個參數(shù)會讓你在 wget
進行對 https 站點的請求時不再檢查證書。
如果缺少這個參數(shù),那么命令適用于http的網(wǎng)站域名。