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.
Solved! Go to Solution.
Views
Replies
Total Likes
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:
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:
Hi @giuseppebag ,
The issue was related to the VPN only. It worked after using the mobile hotspot and disabling the VPN together.
Views
Replies
Total Likes
Views
Likes
Replies