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

Update runner-install.md #1597

Open
wants to merge 1 commit into
base: 4.0.x
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Once you have [created and downloaded a Runner](/administration/runner/runner-in
- The operating systems that we officially support for the Runner are listed [here](/administration/install/system-requirements.md).
- Note that the Runner can be installed on a *different* operating system than the self-hosted cluster.
- Java 11 is required to run the Runner JAR file.
- Runner User: This user (Default: rundeck) will run the Runner service with the necessary permissions.
- The Runner binary size is 164MB.

#### Resource Allocation
Expand Down Expand Up @@ -56,7 +57,13 @@ Restart=on-failure
WantedBy=multi-user.target
```

1. Run the following shell commands to enable and start the service.
2. Create the Runner folder (e.g. /opt/apps/runner ) and set the permissions for the rundeck user and group.
```
sudo mkdir -p /opt/apps/runner
sudo chown rundeck:rundeck /opt/apps/runner
```

3. Run the following shell commands to enable and start the service.
```
# sudo systemctl daemon-reload
# sudo systemctl enable runner
Expand Down
Loading