npm与git 命令报错:SSL 或unable to verify the first certificate |
发表者:admin分类:Devops2021-11-19 11:41:48 阅读[1110] |
npm报错:unable to verify the first certificate
npm install总是报错:unable to verify the first certificate
(无法验证第一证书),查了一下发现
As of February 27, 2017, npm no longer supports its self-signed certificates.
2017年2月27日,npm不再支持自签名证书。
因为npm install走的是https协议,需要通过数字证书来保证的
解决方法1:
取消ssl验证:npm config set strict-ssl false
如果还没成功,则将npm源更换为国内镜像:
npm config set registry http://registry.cnpmjs.org/
npm config set registry http://registry.npm.taobao.org/
taobaoNPM镜像官网:https://npm.taobao.org/
解决方法2:
升级:npm install npm -g --ca=null
或者 npm config set ca=""
推荐使用方法1
npm与git 命令报错:SSL 或unable to verify the first certificate
转载请标明出处【npm与git 命令报错:SSL 或unable to verify the first certificate】。
《www.micoder.cc》
虚拟化云计算,系统运维,安全技术服务.
Tags: | [阅读全文...] |
最新评论