Skip to content

Commit

Permalink
[CE-46] Added changes to install.md
Browse files Browse the repository at this point in the history
Change-Id: I9c2772ea7dee77df9b80e9b0394de135e7068b8c
Signed-off-by: Nikhil Chawla <chawlanikhil24@gmail.com>
  • Loading branch information
chawlanikhil24 committed May 15, 2017
1 parent d5abd13 commit 56edb7b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ $ sudo systemctl daemon-reload
$ sudo systemctl restart docker.service
```

### Alternatively (for all Linux distro):
This will run the docker-daemon on port 2375 as long as the system is restarted or docker-daemon is killed.

```sh
$ sudo systemctl stop docker.service
$ sudo dockerd -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --api-cors-header='*' --default-ulimit=nofile=8192:16384 --default-ulimit=nproc=8192:16384 -D &
```

At last, run the follow test at Master node and get OK response, to make sure it can access Worker node successfully.

```sh
Expand Down

0 comments on commit 56edb7b

Please sign in to comment.