mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
6 lines
168 B
Bash
Executable file
6 lines
168 B
Bash
Executable file
# Stop backend processes
|
|
ray stop
|
|
# Kill Java workers
|
|
ps aux | grep DefaultWorker | grep -v grep | awk '{print $2}' | xargs kill -9
|
|
# Remove temp files
|
|
rm -rf /tmp/ray
|