2017-08-11 104 views
0

我試圖安裝依賴項ursa包。但我得到這個錯誤:Node.js依賴項安裝給出「證書鏈中的自簽名證書」

self signed certificate in certificate chain 

任何想法如何解決這個問題?

我已經設置了正確的代理設置,並且能夠下載「節點騎士」依賴關係。

任何輸入將不勝感激。提前致謝。

>node --version 
v6.9.1 
>npm install ursa 
...\node_modules\ursa>if not defined npm_config_node_gyp (node "C:\Users 
\xxxxxxxxxxx\AppData\Roaming\npm\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild) else (node "" rebuild) 
gyp WARN install got an error, rolling back install 
gyp ERR! configure error 
gyp ERR! stack Error: self signed certificate in certificate chain 
gyp ERR! stack  at Error (native) 
gyp ERR! stack  at TLSSocket.<anonymous> (_tls_wrap.js:1062:38) 
gyp ERR! stack  at emitNone (events.js:86:13) 
gyp ERR! stack  at TLSSocket.emit (events.js:185:7) 
gyp ERR! stack  at TLSSocket._finishInit (_tls_wrap.js:586:8) 
gyp ERR! stack  at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:416:38) 
gyp ERR! System Windows_NT 6.1.7601 
gyp ERR! command "C:\\\\software\\node.exe" "C:\\Users\\xxxxxxxxxxx\\AppData\\Roaming\\npm\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" 
gyp ERR! cwd C:\xxxxxxxxxxx\git\source_code_\ursa 
gyp ERR! node -v v6.9.1 
gyp ERR! node-gyp -v v3.6.2 
gyp ERR! not ok 
npm WARN [email protected] No description 
npm WARN [email protected] No repository field. 
+0

有可能MITM'ing你的連接,可能是一個代理或類似的東西? – mscdex

+0

是的。有一家公司的proxy.But我也在npmrc文件中設置了代理網址。也設置了strict-ssl = false。但是我得到這個錯誤。 –

回答

1

此問題的解決方法是設置在如以下的環境變量,

NODE_TLS_REJECT_UNAUTHORIZED = 0

感謝。