Skip to content

Commit

Permalink
[Documentation:Developer] stop shipper & worker jobs (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcutler authored Jun 20, 2024
1 parent c10c914 commit 6e4c0c0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions _docs/developer/development_instructions/automated_grading.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@ To do this:
sudo systemctl stop submitty_autograding_worker
```

You can confirm that these jobs are no longer running:
```
ps -ef | grep submitty_auto
```

If the jobs did not all stop, you can run:
```
ps -ef | grep submitty_auto | grep -v grep | awk '{print $2}' | xargs kill -9
```

2. Now, as the `submitty_daemon` user, from the primary machine, run the
shipper manager and watch the output.

Expand Down

0 comments on commit 6e4c0c0

Please sign in to comment.