Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

yarn error "EACCESS: permission denied, scandir '/home/ubuntu/.config/yarn/link'"

Whenever I try something with yarn on Ubuntu 16.04 server.

It gives an error.

I am currently using nodejs v8.10.0

yarn install v1.5.1 error An unexpected error occurred: "EACCES: permission denied, scandir '/home/ubuntu/.config/yarn/link'". info If you think this is a bug, please open a bug report with the information provided in "/home/ubuntu/yarn-error.log". info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. 

Anyone know why this is happening?

like image 724
Astro Lee Avatar asked Mar 28 '18 08:03

Astro Lee


2 Answers

It's likely a unix permission related problem. There is a solution posted on the dev's github page. Try to run the following command

sudo chown -R $USER:$GROUP ~/.npm sudo chown -R $USER:$GROUP ~/.config 

Reference: EACCES: permission denied .config/configstore/bower-github.json #2262

like image 63
James Wong Avatar answered Sep 17 '22 11:09

James Wong


I had this problem as well, I found on another thread that my config folder was owned by root, which created several permissions issues.. I changed owner to my user and this error went away.

See top answer on this thread Unable to access 'git/attributes'

like image 38
MrVerticalStack Avatar answered Sep 17 '22 11:09

MrVerticalStack