Tôi vẫn có cùng một vấn đề. Không có câu trả lời nào ở trên dường như giải quyết được nó. Tôi có ubuntu 16.04 và tôi làm theo các bước được mô tả trong https://docs.docker.com/install/linux/docker-ce/ubuntu/
Tôi nghi ngờ nó có liên quan đến một apt-get
lỗi liên quan đến https. Thông tin được in bởi apt-get
là loại gây hiểu lầm.
Tôi nghĩ điều đó Failed to fetch..
cũng có thể được dịch là:problem accessing resource from within an https connection
Làm thế nào tôi đi đến kết luận này:
Trước hết, tôi đứng sau proxy công ty nên tôi đã đặt cấu hình sau:
/etc/apt/apt.conf
Acquire::http::proxy "http://squidproxy:8080/";
Acquire::https::proxy "http://squidproxy:8080/";
Acquire::ftp::proxy "ftp://squidproxy:8080/";
Acquire::https::CaInfo "/etc/ssl/certs/ca-certificates.pem";
/etc/apt/apt.conf.d/99proxy
Acquire::http::Proxy {
localhost DIRECT;
localhost:9020 DIRECT;
localhost:9021 DIRECT;
};
Tôi đã thực hiện các bài kiểm tra sau với các mục nhập khác nhau trong sources.list
mục kiểm tra 1:
deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable
sudo apt-get update
W: The repository 'https://download.docker.com/linux/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch https://download.docker.com/linux/ubuntu/dists/xenial/stable/binary-amd64/Packages
E: Some index files failed to download. They have been ignored, or old ones used instead.
Sự thất bại
bài kiểm tra đầu vào 2:
deb [arch=amd64] http://localhost:9020/linux/ubuntu xenial stable
/etc/apache2/sites-enabled/apt-proxy.conf
# http to https reverse proxy configuration.
Listen 9020
<VirtualHost *:9020>
SSLProxyEngine On
# pass from squid proxy
ProxyRemote https://download.docker.com/ http://squidproxy:8080
ProxyPass / https://download.docker.com/
ProxyPassReverse / https://download.docker.com/
ErrorLog ${APACHE_LOG_DIR}/apt-proxy-error.log
CustomLog ${APACHE_LOG_DIR}/apt-proxy-access.log combined
</VirtualHost>
sudo apt-get update
Hit:1 ..
Hit:2 ..
...
Hit:7 http://localhost:9020/linux/ubuntu xenial InRelease
Get:8 ...
Fetched 323 kB in 0s (419 kB/s)
Reading package lists... Done
Sự thành công
mục kiểm tra 3:
deb [arch=amd64] https://localhost:9021/linux/ubuntu xenial stable
/etc/apache2/sites-enabled/apt-proxy.conf
# https to https revere proxy
Listen 9021
<VirtualHost *:9021>
# serve on https
SSLEngine on
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
SSLProxyEngine On
# pass from squid proxy
ProxyRemote https://download.docker.com/ http://squidproxy:8080
ProxyPass / https://download.docker.com/
ProxyPassReverse / https://download.docker.com/
ErrorLog ${APACHE_LOG_DIR}/apt-proxy-error.log
CustomLog ${APACHE_LOG_DIR}/apt-proxy-access.log combined
</VirtualHost>
sudo apt-get update
W: The repository 'https://localhost:9021/linux/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch https://localhost:9021/linux/ubuntu/dists/xenial/stable/binary-amd64/Packages
E: Some index files failed to download. They have been ignored, or old ones used instead.
Sự thất bại
Trong các trường hợp trên, url mà apt-get Failed to fetch
và cả Release
tệp, thực sự có thể truy cập được từ browser
/ wget
/ curl
bằng cách sử dụng cùng một cấu hình proxy.
Thực tế apt-get
chỉ hoạt động với url proxy ngược http, ngụ ý rằng có một số vấn đề khi truy cập tài nguyên từ bên trong kết nối https .
Tôi không biết vấn đề này là gì nhưng apt-get
sẽ hiển thị một thông báo nhiều thông tin hơn ( apt
thậm chí ít dài dòng hơn).
Lưu ý: trường hợp 1 wireharking cho thấy proxy CONNECT
đã thành công và không có RST nào được gửi đi, nhưng tất nhiên không thể đọc tệp.