Hitu
Hitu

Reputation: 286

Forever on ubuntu

I am working on node.js where forever is installed. I am not sure where is intalled . when i go to project directory then type command forever list then it will display no forever

Can any body tell me how to check and how to resart processes.

My website is running. it means forever may be running

Upvotes: 0

Views: 867

Answers (2)

jpk
jpk

Reputation: 189

You have to install forever with sudo.

Upvotes: 0

Kevin Labécot
Kevin Labécot

Reputation: 1995

If forever list is empty, your nodeJS app is not running.

You have to start it first by doing forever start yourApp.js

Upvotes: 1

Related Questions