From 9bd51ef27eace06c909d5ef195d8ac10e5d3b142 Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Fri, 23 Jul 2021 09:58:07 +0200 Subject: [PATCH] Add how to solve local certificate issuer error on Windows --- source/windows.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/source/windows.md b/source/windows.md index b576296d8..1ffee7ceb 100644 --- a/source/windows.md +++ b/source/windows.md @@ -23,3 +23,21 @@ Starting from MongoDB 4.4.4 we started to use Visual Studio 2019. Until MongoDB 4.2 [this](https://www.microsoft.com/en-us/download/confirmation.aspx?id=48145) was the usually the right version to be installed. After installing `vc_redist.x64` you should be able to run Meteor and MongoDB server without problems. + +

Unable to get local issuer certificate

+ +When installing Meteor via +```shell +npm install -g meteor --force +``` + +you encounter +```shell +Error: unable to get local issuer certificate +``` + +You can overcome this by setting: + +```shell +export NODE_TLS_REJECT_UNAUTHORIZED=0 +```