내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

AIO RDE Certificate issue error

Avatar

Level 2

Hi I am unable to install aio rde plugin due to the following error:

aio plugins:install @Deleted Account/aio-cli-plugin-aem-rdeaio plugins:install @Deleted Account/aio-cli-plugin-aem-rde
(node:24648) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
Installing plugin @Deleted Account/aio-cli-plugin-aem-rdeaio... - info No lockfile found.
(node:26376) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
Installing plugin @Deleted Account/aio-cli-plugin-aem-rdeaio... \ [1/4] Resolving packages...
error Error: unable to get local issuer certificate
at TLSSocket.onConnectSecure (node:_tls_wrap:1674:34)
at TLSSocket.emit (node:events:519:28)
at TLSSocket._finishInit (node:_tls_wrap:1085:8)
Installing plugin @Deleted Account/aio-cli-plugin-aem-rdeaio... failed
Error: yarn add @Deleted Account/aio-cli-plugin-aem-rdeaio@latest --non-interactive
--mutex=file:C:\Users\F805PR8\AppData\Local\@adobe\aio-cli\yarn.lock
--preferred-cache-folder=C:\Users\F805PR8\AppData\Local\@adobe\aio-cli\yarn --check-files
exited with code 1

 

Any way to bypass certificate issues or to get the local issuer certificate?

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

3 답변 개

Avatar

Community Advisor

Avatar

Level 2

I have updated as per the solution link shared, but it is still not working

Avatar

Community Advisor

Please refer to https://techrevelhub.wordpress.com/2024/02/14/empowering-teams-the-rde-advantage-in-aem-development/...

 

If you encounter the “unable to load certificates openssl” error while using status/install commands, you can apply the following quick fixes:

  • Temporarily disable SSL certificate verification:
npm config set strict-ssl false

Alternatively, you can bypass certificate verification by setting an environment variable:

export NODE_TLS_REJECT_UNAUTHORIZED=0
SET NODE_TLS_REJECT_UNAUTHORIZED=0       //For Windows command line

Please note that both commands pose a security risk as they bypass certificate verification, so they should only be used temporarily.


Aanchal Sikka