2017-07-26 49 views
0

我是新來泊塢窗和無法理解這些錯誤。所以,請讓我知道是否需要任何更多的信息。無法配置多克爾守護程序文件/etc/docker/daemon.json: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. 

請讓我知道如果我需要檢查其他東西。

+0

你創建daemon.json有它,如果是是空白? –

+0

是的,它是空白。我想我是用vim創建的。 – Aki

回答

1

文件/etc/docker/daemon.json不應存在,或者如果它存在,則它應該有一個有效的JSON對象。一個空白文件會產生一個錯誤。無論是刪除文件,或者如果你想有一個空白的文件,那麼下面的內容

{ 
} 

這將創建一個空的JSON對象

相關問題