Advertisement
zmatt

DST Root CA X3 expiration fix

Dec 12th, 2021
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. ### PROBLEM ###
  2. # debian@beaglebone:~$ sudo /opt/scripts/tools/update_kernel.sh
  3. # [sudo] password for debian:
  4. # info: checking archive
  5. # ERROR: The certificate of ‘rcn-ee.com’ is not trusted.
  6. # ERROR: The certificate of ‘rcn-ee.com’ has expired.
  7.  
  8.  
  9. #### ROOT CAUSE ###
  10. # https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
  11.  
  12.  
  13. ### SOLUTION 1: remove the expired root certificate ###
  14. sudo sed -i -e 's:^mozilla/DST_Root_CA_X3:!&:' /etc/ca-certificates.conf
  15. sudo update-ca-certificates
  16.  
  17.  
  18. ### SOLUTION 2: update the misbehaving SSL libraries ###
  19. sudo apt update
  20. sudo apt install --upgrade --yes libssl1.1 libgnutls30
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement