mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00

* Attempt to start web UI when starting Ray. * Add instructions for using web UI to cluster documentation. * Don't check if port 8080 is open. * Remove print statement.
15 lines
526 B
Bash
Executable file
15 lines
526 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
killall global_scheduler plasma_store plasma_manager photon_scheduler
|
|
|
|
# Find the PID of the Redis process and kill it.
|
|
kill $(ps aux | grep redis-server | awk '{ print $2 }') 2> /dev/null
|
|
|
|
# Find the PIDs of the worker processes and kill them.
|
|
kill $(ps aux | grep default_worker.py | awk '{ print $2 }') 2> /dev/null
|
|
|
|
# Kill the processes related to the web UI.
|
|
killall polymer
|
|
|
|
# Find the PID of the Ray UI backend process and kill it.
|
|
kill $(ps aux | grep ray_ui.py | awk '{ print $2 }') 2> /dev/null
|