forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_ray_start.txt
More file actions
34 lines (23 loc) · 925 Bytes
/
Copy pathtest_ray_start.txt
File metadata and controls
34 lines (23 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Local node IP: .+
--------------------
Ray runtime started.
--------------------
Next steps
Note: The following commands are intended for use on
the head node or within the cluster network\.
To add another node to this Ray cluster, run
ray start --address='.+'
To connect to this Ray cluster:
import ray
ray\.init\(\)
To submit a Ray job using the Ray Jobs CLI:
RAY_API_SERVER_ADDRESS='http://.+:8265' ray job submit --working-dir \. -- python my_script\.py
See https://docs\.ray\.io/en/latest/cluster/running-applications/job-submission/index\.html
for more information on submitting Ray jobs to the Ray cluster.
To terminate the Ray runtime, run
ray stop
To view the status of the cluster, use
ray status
To monitor and debug Ray, view the dashboard at
127.0.0.1:8265
If connection to the dashboard fails, check your firewall settings and network configuration.