mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 21:53:18 +08:00
c5b8840193
Remove legacy-ray-related stuff from this script, and update temp file locations.
7 lines
168 B
Bash
Executable File
7 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
|