This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
It sounds like that your
nodejs
user does not have access to the/root
directory.I’ve just tested running the project with the
root
user directly and it works well:What you could do is:
pm2
as the root usernodejs
user, andgit clone
the project into thenodejs
user’s home directory, that way thenmodejs
user will be the owner of the files and would not have that permissions problemLet me know how it goes!
Best,
Bobby
Hi @henriavo,
This sounds like a permissions/ownership issue. See if your have set some weird permissions most of all. Usually, and I believe the express app has the same permissions, they need to be 755 for folders nad 644 for files. You can do that for a faster outcome:
Where /path/to/express/app should be the real path.