-
Notifications
You must be signed in to change notification settings - Fork 945
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"No forever processes running" when run it in rc.local on Ubuntu #713
Comments
I'm experiencing the same issue. I have a startup script which calls forever and starts a node.js app. When manually executing the script, I guess this is something related to the OS, as |
I had the same issue but I don't think it's actually a bug. Forever, as it stands, is intentionally on a per-user basis. Look at issue #544 for more details. What you're seeing is a difference between running as the root user and running as sudo. They are similar, but not the same. When So, what you can do, is in your export FOREVER_ROOT=/home/myusername/.forever
forever start myscript.js It sounds like there are talks of moving the forever root to a system-wide folder like |
I know this an old issue but I was having problems with this and the solution by @mattdodge didn't work for me so I wanted to add my $0.02. Be careful with your file path in the To get around the issue this was causing I used No need to set |
In order to start the server on system start,I create a server.sh file
then I link the file in my rc.local
Now I want to restart my app with
It wont work,so,I checked
It shows me "No forever processes running"
In my case,how cant I restart my app?
The text was updated successfully, but these errors were encountered: