Github permission denied: ssh add agent has no identities

This is my first time accessing GitHub and I’m not experienced using a console. I am on a MacBook using Bash. When I try to access GitHub, I get this: git clone [email protected]:dhulihan/league-of-legends-data-scraper.git Cloning into ‘league-of-legends-data-scraper’… Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights … Read more

How to fix Error: laravel.log could not be opened?

I’m pretty new at laravel, in fact and I’m trying to create my very first project. for some reason I keep getting this error (I haven’t even started coding yet) Error in exception handler: The stream or file “/var/www/laravel/app/storage/logs/laravel.log” could not be opened: failed to open stream: Permission denied in /var/www/laravel/bootstrap/compiled.php:8423 I’ve read this has … Read more

Node.js EACCES error when listening on most ports

I’m testing out an app (hopefully to run on heroku, but am having issues locally as well). It’s giving me an EACCES error when it runs http.Server.listen() – but it only occurs on some ports. So, locally I’m running: joe@joebuntu:~$ node > var h = require(‘http’).createServer(); > h.listen(900); Error: EACCES, Permission denied at Server._doListen (net.js:1062:5) … Read more

Permission denied on accessing host directory in Docker

I am trying to mount a host directory in Docker, but then I cannot access it from within the container, even if the access permissions look good. I am doing sudo docker run -i -v /data1/Downloads:/Downloads ubuntu bash and then ls -al It gives me: total 8892 drwxr-xr-x. 23 root root 4096 Jun 18 14:34 … Read more

Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules’

What might be causing the error Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules’? npm ERR! path /usr/local/lib/node_modules npm ERR! code EACCES npm ERR! errno -13 npm ERR! syscall access npm ERR! Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules’ npm ERR! { Error: EACCES: permission denied, access ‘/usr/local/lib/node_modules’ npm ERR! errno: -13, npm ERR! code: ‘EACCES’, npm ERR! … Read more