Start script for Debian
Added by Andreas Jung over 15 years ago
I am looking for Debian start/stop script for Redmine 0.8.X
(using Webbrick).
Any pointer?
Replies (1)
RE: Start script for Debian - Added by Hans Kazan over 15 years ago
The steps I take are:
- copy an existing start/stop script from /etc/init.d
- modify it to my needs
I presume the commands to start/stop are known by you.
Note: we started to use mongrel, which is easier and more scalable.
See: http://ubuntuforums.org/showthread.php?t=674598&highlight=redmine
There is a port on the init.d script in this HowTo:cd /etc/init.d
sudo cp /var/lib/gems/1.8/gems/mongrel_cluster-1.0.5/resources/mongrel_cluster /etc/init.d/
sudo chmod +x /etc/init.d/mongrel_cluster
HTH