Attempt to start web UI when starting Ray. (#269)

* 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.
This commit is contained in:
Robert Nishihara
2017-02-12 15:17:58 -08:00
committed by Philipp Moritz
parent f6ce9dfa6c
commit cb7f6ca9b5
11 changed files with 301 additions and 9 deletions
+6
View File
@@ -7,3 +7,9 @@ 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