I've got a service set up to start at boot but it's not doing so and I don't know where to look (e.g. logs) to troubleshoot it.
I've verified the run level:
$ grep default /etc/inittab
id:3:initdefault:
And the symlinks are there:
$ find /etc -name *beans*
/etc/rc.d/rc6.d/K47beanstalkd
/etc/rc.d/rc1.d/K47beanstalkd
/etc/rc.d/rc0.d/K47beanstalkd
/etc/rc.d/rc2.d/K47beanstalkd
/etc/rc.d/rc4.d/K47beanstalkd
/etc/rc.d/rc3.d/K47beanstalkd
/etc/rc.d/rc5.d/K47beanstalkd
/etc/rc.d/init.d/beanstalkd
And when I start it manually (via "sudo /etc/init.d/beanstalkd start") it works fine.
Where do I start troubleshooting this? Where might the boot sequence be logged that I can grep for issues? This is a CentOS box if that matters.
Thanks.