PermissionError when ray.init()

110 Views Asked by At

I cloned a conda environment to new computer, and run a ray project, but face the error. I find this error occurs when ray.init(), the details codes and info are follows:

>>> import ray
>>> ray.init()
2023-11-17 17:26:16,023 INFO resource_spec.py:212 -- Starting Ray with 33.89 GiB memory available for workers and up to 16.97 GiB for objects. You can adjust these settings with ray.init(memory=<bytes>, object_store_memory=<bytes>).
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/worker.py", line 767, in init
    ray_params=ray_params)
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/node.py", line 177, in __init__
    self.start_head_processes()
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/node.py", line 649, in start_head_processes
    self.start_redis()
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/node.py", line 473, in start_redis
    fate_share=self.kernel_fate_share)
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/services.py", line 769, in start_redis
    fate_share=fate_share)
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/services.py", line 943, in _start_redis_instance
    fate_share=fate_share)
  File "/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/services.py", line 514, in start_ray_process
    preexec_fn=preexec_fn if sys.platform != "win32" else None)
  File "/root/anaconda3/envs/ncd/lib/python3.7/subprocess.py", line 800, in __init__
    restore_signals, start_new_session)
  File "/root/anaconda3/envs/ncd/lib/python3.7/subprocess.py", line 1551, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
PermissionError: [Errno 13] Permission denied: '/root/anaconda3/envs/ncd/lib/python3.7/site-packages/ray/core/src/ray/thirdparty/redis/src/redis-server'

I checked the file permission but still have no idea what's the problem is. drwxr-xr-x 12 root root 4096 Nov 17 16:53 ncd

I want to fix the Permission error.

1

There are 1 best solutions below

0
On

I use “chmod 777” command to modif all the prompted files' permissions manually. And the problem is solved.