Reputation: 394
We have installed node & strongloop on the server. We have also installed strong-pm. But we are not able to graceful restart. If node goes down it does not restart automatically by strong pm. Is there any log file generated where I can see the error.
command we run to install strongloop is as follow.
yum install nodejs npm
npm install -g strongloop
slc loopback
npm install
slc pm-install --upstart 0.6
/sbin/initctl start strong-pm
slc arc&
Upvotes: 0
Views: 433
Reputation: 8229
In this configuration strong-pm's logs will be directed to syslog, so they will show up somewhere like /var/log/messages
or /var/log/syslog
Upvotes: 1