ubuntu - Issue with my ca-certificates.crt -
(i on ubuntu 14.10. uname -r => 3.16.0-31-generic)
apt-get update
failed fetch https://get.docker.com/ubuntu/dists/docker/main/binary-amd64/packages server certificate verification failed. cafile: /etc/ssl/certs/ca-certificates.crt crlfile: none.
git clone https://github.com/sdelements/lets-chat.git
i can't clone - fatal: unable access 'https://github.com/sdelements/lets-chat.git/': server certificate verification failed. cafile: /etc/ssl/certs/ca-certificates.crt crlfile: none.
docker run hello-world
get https://index.docker.io/v1/repositories/library/hello-world/images: x509: certificate signed unknown authority.
ls /etc/ssl/certs/ca-certificates.crt -l
-rw-r--r-- 1 root root 1964 mar 26 18:19 /etc/ssl/certs/ca-certificates.crt
any clues appreciated.
all of ca certificates missing /usr/share/ca-certificates/*
re-installing package put them back
if missing location, doing force reloading show 0 of 0:
update-ca-certificates -f
clearing symlinks in /etc/ssl/certs...done. updating certificates in /etc/ssl/certs... 0 added, 0 removed; done.
apt-get install --reinstall ca-certificates
preparing unpack .../ca-certificates_20141019ubuntu0.14.10.1_all.deb ... unpacking ca-certificates (20141019ubuntu0.14.10.1) on (20141019ubuntu0.14.10.1) ... processing triggers man-db (2.7.0.2-2) ... setting ca-certificates (20141019ubuntu0.14.10.1) ... processing triggers ca-certificates (20141019ubuntu0.14.10.1) ... updating certificates in /etc/ssl/certs... warning: skipping duplicate certificate go_daddy_class_2_ca.pem warning: skipping duplicate certificate go_daddy_class_2_ca.pem 173 added, 0 removed; done. running hooks in /etc/ca-certificates/update.d....done.
Comments
Post a Comment