https://www.orchest.io/ logo
#announcements
Title
# announcements
k

Kay Kayyy

10/01/2021, 9:27 PM
when running the quickstart step 1...
Copy code
PermissionError: [Errno 13] Permission denied: '/data/cal_housing.tgz'
where is that dir? it's not on the local machine
r

Rick Lamers

10/01/2021, 9:31 PM
The
/data
dir is always mounted in containers running user code. On the host it lives in
orchest/userdir/data
. You can check the permissions of that folder.
k

Kay Kayyy

10/01/2021, 9:32 PM
thanks! i did a
chmod -R 777 data
and it fixed. who is the user your service is running as? i.e output of
whoami
?
r

Rick Lamers

10/01/2021, 9:34 PM
Inside the default included environment we follow Jupyter Stacks default: that means the user is
jovyan
which can escalate to root user using
sudo
(inside the container).
Some more information about the default container runtime
You can always run:
!whoami
in the notebook cell
k

Kay Kayyy

10/01/2021, 9:38 PM
understood, so it seems like the application orchest itself doesn't have a service user but rather defer to the underling image being used
🙌 1