mirror of
https://github.com/wassname/ray.git
synced 2026-07-14 11:17:54 +08:00
Start WebUI by default. (#6493)
This commit is contained in:
committed by
Philipp Moritz
parent
088ce2d1e1
commit
8724e5ffd5
@@ -547,7 +547,7 @@ def init(address=None,
|
||||
redis_password=ray_constants.REDIS_DEFAULT_PASSWORD,
|
||||
plasma_directory=None,
|
||||
huge_pages=False,
|
||||
include_webui=False,
|
||||
include_webui=None,
|
||||
webui_host="127.0.0.1",
|
||||
job_id=None,
|
||||
configure_logging=True,
|
||||
@@ -627,7 +627,9 @@ def init(address=None,
|
||||
huge_pages: Boolean flag indicating whether to start the Object
|
||||
Store with hugetlbfs support. Requires plasma_directory.
|
||||
include_webui: Boolean flag indicating whether to start the web
|
||||
UI, which displays the status of the Ray cluster.
|
||||
UI, which displays the status of the Ray cluster. If this argument
|
||||
is None, then the UI will be started if the relevant dependencies
|
||||
are present.
|
||||
webui_host: The host to bind the web UI server to. Can either be
|
||||
127.0.0.1 (localhost) or 0.0.0.0 (available from all interfaces).
|
||||
By default, this is set to 127.0.0.1 to prevent access from
|
||||
|
||||
Reference in New Issue
Block a user