Skip to content
Discussion options

You must be logged in to vote

@JonDoe224
The error you're seeing indicates a TLS/SSL certificate verification failure when trying to download Node.js from https://deb.nodesource.com.

This typically means that your system’s trusted certificate authorities (CAs) or certificate revocation data (CRLs/OCSP) are outdated or broken.

How to Fix It

  1. Update Certificate Authorities
    Make sure your system has the latest trusted certificates:
sudo apt-get update
sudo apt-get install --reinstall ca-certificates
  1. Update Your System’s Time
    Incorrect system time can cause certificate verification to fail:
timedatectl status
sudo timedatectl set-ntp true

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@JonDoe224
Comment options

@trofim24
Comment options

Answer selected by catbasilio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants