I like redmine and use it for many project - private and professional as well.
Some time ago I became a happy owner of
I chose Synology DS111 so one of the next steps
was to install redmine on it :-).
I did this few months ago, so I hope I remember all steps well ;-)
Perhaps there is an easier way to do it, however I did it as follows:
actionmailer (2.3.5) actionpack (2.3.5) activerecord (2.3.5) activeresource (2.3.5) activesupport (2.3.5) i18n (0.4.2) rack (1.0.1) rails (2.3.5) rake (0.8.7) ruby-mysql (2.9.4)
#! /bin/sh
REDMINE=/volume1/homes/redmine/redmine
export LD_LIBRARY_PATH=/usr/lib:/lib/:/opt/lib
export PATH=/opt/sbin:/opt/bin:/sbin:/bin:/usr/sbin:/usr/bin
case "$1" in
start)
echo -n "Starting redmine server: "
if [ ! -d $REDMINE ]
then
echo "Directory $REDMINE does not exist"
exit 1
fi
su redmine -c "cd $REDMINE && ./script/server -d -e production"
echo "done."
;;
stop)
echo -n "Stopping redmine : "
killall -SIGINT ruby
echo "done."
;;
restart)
echo -n "Restarting redmine server: "
$0 stop
sleep 2
$0 start
echo "done."
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0
As you can see it is not a very efficient way - since it uses redmine's own web server which should actually be used for development only. However it works great for my needs so I'm happy with this solution.
I hope this description can be helpful for some other redmine AND synology lovers ;-)