mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
9 lines
217 B
Bash
Executable file
9 lines
217 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Stop backend processes
|
|
ray stop
|
|
# Kill Java workers
|
|
# shellcheck disable=SC2009
|
|
ps aux | grep DefaultWorker | grep -v grep | awk '{print $2}' | xargs kill -9
|
|
# Remove temp files
|
|
rm -rf /tmp/ray
|