Skip to content

Commit 0735041

Browse files
grenadehubwriter
andauthored
example for self-hosted runners in the wild (#9015)
* example for self-hosted runners in the wild there are probably no examples of self-hosted runners whose service name is `actions.runner.octo-org-octo-repo.runner01.service` outside of octo-org. this change includes a command example that works in the wild. * fixed more references * fixed more references * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md * Update content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md Co-authored-by: hubwriter <hubwriter@github.com>
1 parent 175a816 commit 0735041

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service
5555
actions.runner.octo-org-octo-repo.runner01.service
5656
```
5757

58+
If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command:
59+
60+
```shell
61+
$ systemctl --type=service | grep actions.runner
62+
actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname)
63+
```
64+
5865
You can use `journalctl` to monitor the real-time activity of the self-hosted runner:
5966

6067
```shell

0 commit comments

Comments
 (0)