Статьи

Ошибка Docker «Тайм-аут сети»

Одна из самых страшных ошибок, замеченных на семинарах Docker по всему миру:

1
Network timed out while trying to connect to https://index.docker.io/v1/repositories/library/couchbase/images. You may want to check your internet connection or if you are behind a proxy.

Как известно, перезапуск Docker Machine устраняет эту проблему. Допустим, ваша машина называется couchbase-javaee . Машина может быть перезапущена как:

1
2
docker-machine restart couchbase-javaee
Restarted machines may have new IP addresses. You may need to re-run the `docker-machine env` command.

Настройка среды Docker может работать:

1
eval $(docker-machine env couchbase-javaee)

Но определенные времена это дает ошибку:

1
2
3
Error running connection boilerplate: Error checking and/or regenerating the certs: There was an error validating certificates for host "192.168.99.106:2376": dial tcp 192.168.99.106:2376: i/o timeout
You can attempt to regenerate them using 'docker-machine regenerate-certs name'.
Be advised that this will trigger a Docker daemon restart which will stop running containers.

Поэтому вам необходимо восстановить сертификаты. Успешное выполнение даст результат как:

1
2
3
4
5
6
docker-machine regenerate-certs couchbase-javaee
Regenerate TLS machine certs?  Warning: this is irreversible. (y/n): y
Regenerating TLS certificates
Copying certs to the local machine directory...
Copying certs to the remote machine...
Setting Docker configuration on the remote daemon...

И иногда даже эта команда приходит в бешенство и дает вывод:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
docker-machine regenerate-certs couchbase-javaee
Regenerate TLS machine certs?  Warning: this is irreversible. (y/n): y
Regenerating TLS certificates
Copying certs to the local machine directory...
Copying certs to the remote machine...
Setting Docker configuration on the remote daemon...
WARNING >>>
This machine has been allocated an IP address, but Docker Machine could not
reach it successfully.
  
SSH for the machine should still work, but connecting to exposed ports, such as
the Docker daemon port (usually <ip>:2376), may not work properly.
  
You may need to add the route manually, or use another related workaround.
  
This could be due to a VPN, proxy, or host file configuration issue.
  
You also might want to clear any VirtualBox host only interfaces you are not using.

В любом случае, настройка среды Docker:

1
eval $(docker-machine env couchbase-javaee)

настраивает среду правильно.

Ссылка: Ошибка Docker в сети истекла от нашего партнера JCG Аруна Гупты в блоге Miles to go 2.0… .