web-dev-qa-db-ja.com

ファイル/etc/docker/daemon.jsonでDockerデーモンを構成できません:EOF

私はドッカーに不慣れで、これらのエラーを理解できません。そのため、さらに情報が必要な場合はお知らせください。

`$ docker --version`
Docker version 1.12.6, build 88a4867/1.12.6

`$ docker info`
 Cannot connect to the Docker daemon. Is the docker daemon running on this host?

`$Sudo dockerd`

FATA[0000] unable to configure the Docker daemon with file /etc/docker/daemon.json: EOF

`$Sudo systemctl start docker`

Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

`$Sudo systemctl status docker.service -l`

● docker.service - Docker Application Container Engine
   Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
   Active: failed (Result: exit-code) since Wed 2017-07-26 14:30:21 EDT; 8min ago
  Docs: http://docs.docker.com

  Process: 5835 ExecStart=/usr/bin/dockerd-current --add-runtime docker-runc=/usr/libexec/docker/docker-runc-current --default-runtime=docker-runc --authorization-plugin=rhel-Push-plugin --exec-opt native.cgroupdriver=systemd --userland-proxy-path=/usr/libexec/docker/docker-proxy-current $OPTIONS $DOCKER_STORAGE_OPTIONS $DOCKER_NETWORK_OPTIONS $ADD_REGISTRY $BLOCK_REGISTRY $INSECURE_REGISTRY (code=exited, status=1/FAILURE)
 Main PID: 5835 (code=exited, status=1/FAILURE)

Jul 26 14:30:21: Starting Docker Application Container Engine...
Jul 26 14:30:21 dockerd-current[5835]: time="2017-07-26T14:30:21-04:00" level=fatal msg="unable to configure the Docker daemon with file /etc/docker/daemon.json: EOF\n"
Jul 26 14:30:21 systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE
Jul 26 14:30:21 systemd[1]: Failed to start Docker Application Container Engine.
Jul 26 14:30:21 systemd[1]: Unit docker.service entered failed state.
Jul 26 14:30:21 systemd[1]: docker.service failed.

他に確認する必要がある場合はお知らせください。

5
Aki

ファイル /etc/docker/daemon.jsonは存在しないか、存在する場合は有効なJSONオブジェクトが必要です。空のファイルはエラーになります。ファイルを削除するか、空のファイルが必要な場合は、以下の内容のファイルを用意してください

{
}

これは空のjsonオブジェクトを作成します

16
Tarun Lalwani

同じ問題があります。しかし、ファイル/etc/docker/daemon.jsonを編集して、いくつかのオプションを追加しました。オプション付きの文字列が最後でない場合は、コンマ文字(、)で終わる必要があります。

0
PRIHLOP