Expand my Community achievements bar.

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

AIO Plugin unable to push code to RDE environment or use any commands

Avatar

Level 2

I'm unable to push code or use any commands like aio aem:rde:status.

 

I've used the following command also to disable SSL checking and still the error is being thrown.

Used the 

export NODE_TLS_REJECT_UNAUTHORIZED=0 

npm config set strict-ssl false   

commands also, I have selected my org but through aio aem:rde:setup command and it was showing as setup complete. Please find the screenshots attached for reference.

1 Accepted Solution

Avatar

Correct answer by
Level 10

hi @vashishth47,

commands like export NODE_TLS_REJECT_UNAUTHORIZED=0 and npm config set strict-ssl false only influence client-side certificate validation and do not affect issues where the negotiated TLS version is unsupported or when the server expects a higher protocol version than your client is using.

The error seems to suggest that your Node.js or system’s OpenSSL library does not support the TLS version required by Adobe’s endpoints:

  • Ensure your Node.js is recent (at least v18.x or v20.x)

  • Update your system’s OpenSSL to a recent version that supports TLS 1.2 or TLS 1.3

Another issue could be related to corporate networks or VPNs, which sometimes intercept SSL traffic and downgrade or block certain TLS versions:

  • Test by connecting from another network (e.g., mobile hotspot)
  • Temporarily disable VPN/proxy and retry.

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

hi @vashishth47,

commands like export NODE_TLS_REJECT_UNAUTHORIZED=0 and npm config set strict-ssl false only influence client-side certificate validation and do not affect issues where the negotiated TLS version is unsupported or when the server expects a higher protocol version than your client is using.

The error seems to suggest that your Node.js or system’s OpenSSL library does not support the TLS version required by Adobe’s endpoints:

  • Ensure your Node.js is recent (at least v18.x or v20.x)

  • Update your system’s OpenSSL to a recent version that supports TLS 1.2 or TLS 1.3

Another issue could be related to corporate networks or VPNs, which sometimes intercept SSL traffic and downgrade or block certain TLS versions:

  • Test by connecting from another network (e.g., mobile hotspot)
  • Temporarily disable VPN/proxy and retry.

Avatar

Level 2

Hi @giuseppebag ,

The issue was related to the VPN only. It worked after using the mobile hotspot and disabling the VPN together.