I can't configure thin to start at system boot, I am new to Linux
I have CentOS 5.7
Thin gem was installed and thin was installed too.
sudo gem install thin
sudo thin install
and when I try to configure thin to start at system boot I get an error
sudo /sbin/chkconfig --level 345 thin on
error reading information on service thin: No such file or directory
Anybody have an idea why I get this error? Thanks,
thin install
, as the message after installation says, the script 'thin' is installed into/etc/rc.d
. And if we wantthin
to be installed as a service, the script must be put intoinit.d
. Maybe you can read the scripts underinit.d
for more information. Sorry for my pool English:) – 光源凪 Jan 02 '12 at 15:36