Laravel - chmod(storage/oauth-private.key): Operation failed: Operation not permitted

July 25, 2017 | Category : Laravel PHP

It's always make us mud less when we got strange issue or error. Same thing here describe. i got following error when i did work with git repository. I pushed my code and my friend pull that code and when he run he got following error:

"chmod(storage/oauth-private.key): Operation failed: Operation not permitted"

I google and try to run bellow command:

php artisan passport:install

But i got same error, i though what will be issue, finally i found issue was on permission. So i found solution by following command:

Command:

sudo chown www-data:www-data storage/oauth-*.key

sudo chmod 600 storage/oauth-*.key

I hope you found your best....