aws-samples / sagemaker-studio-lifecycle-config-examples

MIT No Attribution
78 stars 51 forks source link

/root/.aws-credential-helper.py: Permission denied #27

Closed pnipinto closed 1 year ago

pnipinto commented 1 year ago

Hi,

I've created the LCC for SM Studio on starting the Jupyter Server however I am getting this error when I try to push changes to my repo. Checked the git config and there don't seem to be any issues there. Any suggestions?

Screen Shot 2022-12-20 at 4 50 07 pm

rvben commented 1 year ago

Hi @pnipinto,

An error like this typically is a result of directly calling a file that is not executable. You can make /root/.aws-credential-helper.py executable by running:

sudo chmod +x /root/.aws-credential-helper.py

Does that resolve your issue?

pnipinto commented 1 year ago

Yes thank you!