ffmpeg git-pull: "server certificate verification failed"

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
peter_b
Chatterbox
Posts: 370
Joined: Tue Nov 12, 2013 2:05 am

ffmpeg git-pull: "server certificate verification failed"

Post by peter_b »

[PROBLEM]
I wanted to update (=git pull) an older copy of ffmpeg's source to its most recent state. This setup always worked, but now I got the following error message:
fatal: unable to access 'https://git.ffmpeg.org/ffmpeg.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

[SOLUTION]
The CA-certificates were outdated and needed to be updated.
So simply update the "ca-certificates" package (eg on Ubuntu/Debian based distros).

You can use a GUI, but here's the simple commandline version:

Code: Select all

$ apt update && apt install ca-certificates
Afterwards, "git pull" worked again - as usual.
Post Reply