Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Correct typos and add Group=docker in systemd files #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/docs/cluster/setup/controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,7 @@ Requires=docker.service

[Service]
User=drove
Group=docker
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker pull ghcr.io/phonepe/drove-controller:latest
Expand Down Expand Up @@ -434,7 +435,7 @@ systemctl enable drove.controller
systemctl start drove.controller
```

You can tail the logs at `/var/logs/drove/controller/drove-controller.log`.
You can tail the logs at `/var/log/drove/controller/drove-controller.log`.

The console would be available at `http://<ip>:10000` and admin functionality will be available on `http://<ip>:10001` according to the above config.

Expand Down
3 changes: 2 additions & 1 deletion docs/docs/cluster/setup/executor-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ Requires=docker.service

[Service]
User=drove
Group=docker
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker pull ghcr.io/phonepe/drove-executor:latest
Expand Down Expand Up @@ -489,6 +490,6 @@ systemctl enable drove.executor
systemctl start drove.executor
```

You can tail the logs at `/var/logs/drove/executor/drove-executor.log`.
You can tail the logs at `/var/log/drove/executor/drove-executor.log`.

The executor should now show up on the Drove Console.
1 change: 1 addition & 0 deletions docs/docs/cluster/setup/gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ Requires=docker.service

[Service]
User=drove
Group=docker
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker pull ghcr.io/phonepe/drove-gateway:latest
Expand Down
1 change: 1 addition & 0 deletions docs/docs/cluster/setup/zookeeper.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ Requires=docker.service

[Service]
User=drove
Group=docker
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker pull zookeeper:3.8
Expand Down