I'm new to nodejs and npm. I'm trying to install log4js and this is the command for the install:
npm install log4js
I'm running this from Windows Command Line and I after a while of a marker spinning I get the following error:
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "log4js"
npm ERR! node v0.12.0
npm ERR! npm v2.5.1
npm ERR! code SELF_SIGNED_CERT_IN_CHAIN
npm ERR! self signed certificate in certificate chain
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <http://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! C:\srv\npm-debug.log
I tried doing npm config set ca=""
like suggested here: http://blog.npmjs.org/post/78085451721/npms-self-signed-certificate-is-no-more but I'm still getting this error.
How can I solve this and install NPMs ?
I had the same problem on windows 10.
open windows powerShell and enter the following command:
Then you can use:
I'm new to npm as well. Besides the commands mentioned in your link I tried the following and it resolved my issues:
Reference: Npm SELF_SIGNED_CERT_IN_CHAIN on Azure
In my case, I had installed Fiddler, which has a self signed certificate which made the npm install go crazy.
See here how to remove the self signed Fiddler certificate How do you remove the root CA certificate that Fiddler installs
Did you also tried settings
cafile
accommodating all pems in one file? npm add root CAIf you use proxy in your
.npmrc
file, I will suggest to setno_proxy
environment variable with value of your<server IP address>
In CentOS and other Linux distros you need to configure NPM to use your Certificate Authorities file:
Obviously check the file exists and contains all CA Roots you may encounter (e.g. corporate proxy).
As metioned by Akshay Vijay Jain above,
TURNING OFF SSL BEFORE INSTALLING THE LATEST VERSION
Then install the latest version
INSTALL SUCCESS!!
See the screenshots added for clarity.