linux下wget时报certificate common错误:
本人在执行一下:wget https://nodejs.org/dist/v4.2.1/node-v4.2.1.tar.gz时,报错:
ERROR: certificate common name “*.nodejs.org” doesn’t match requested host name “nodejs.org”. To connect to nodejs.org insecurely, use ‘--no-check-certificate’.use‘--no-check-certificate’
出现错误时,系统本身也会提示需要怎么做,用--no-check-certificate:
解决方法:wget --no-check-certificate https://nodejs.org/dist/v4.2.1/node-v4.2.1.tar.gz
如果系统没有提示,我们可以用man命令查询对应的命令的使用方法。
针对FTP需要帐号和密码时,可以在wget 命令后面追加–ftp-user=username and –ftp-password=password参数
命令如下:
--user=user
--password=password
Specify
the
username
user
and
password
password
for
both
FTP
and
HTTP
file
retrieval. These
parameters
can
be
overridden
using
the
--ftp-user
and
--ftp-password
options
for
FTP
connections
and
the
--http-user
and
--http-password
options
for
HTTP
connections.
本文介绍在Linux环境下使用wget命令下载文件时遇到的证书common name不匹配错误及其解决方法,并提供了如何指定FTP用户名和密码的方式。
1092

被折叠的 条评论
为什么被折叠?



