I installed new relic according to their quick install instructions.
If I start the daemon manually after boot with /etc/init.d/newrelic-daemon restart
it works, but it doesn't run automatically after boot. How can I find out why?
The servers are Scalr/AWS PHP/5.3.2-1ubuntu4.15
I'd try running this manually with debug setting, as you know the argument to the program will be 'start'. Using 'restart' may execute a path that works.
I'd first try:
And go through the output and see if it is working right.
Then you can do through and to the chkconfig.
As there are other newer startup processes, you should describe which Linux you are running. This can usually be done by executing the command
Try searching through dmesg, /var/log/messages and /var/log/syslog whyc is it happening so but there is a workaround:
1) Try running
chkconfig newrelic-daemon on
2) If (1) doesn't help, try forcing the start by adding
/etc/init.d/newrelic-daemon restart
to /etc/rc.local, this should be placed there before anyexit
statement in /etc/rc.localIf in Ubuntu, at least: try running
sudo update-rc.d newrelic-daemon defaults
to create symlinks for /etc/init.d/newrelic-daemon (it has to exist first for the command to succeed).