Unfortunately my
previous solution was only temporary, after a while I mentioned that mongrels are eating the memory and hanging.
Read more…

Loading ...
I have seen some serious performance
issues and some error messages with
nginx and
mongrel_
cluster.
Read more…

Loading ...
The webrick of
redmine has couple of performance
issues, so I was looking for an alternative solution to avoid the use of
Apache and its
proxy features. As already I use
nginx it was clear to use it. The proxy is working perfectly with proxy_pass to the webrick, but this still have the performance issues.
Read more…

Loading ...
After upgrading couple of new plug-ins are installed.
Here is a basic start up script for gentoo
$!/sbin/runscript
depend() {
need net
}
start() {
ebegin "Starting redmine"
start-stop-daemon --start --make-pidfile --chuid apache:apache --quiet --name redmine --pidfile /opt/redmine/redmine.pid \
--exec /usr/bin/ruby /opt/redmine/script/server webrick -- -e production -d
eend $?
}
stop() {
ebegin "Stopping redmine"
start-stop-daemon --stop --quiet --pidfile /opt/redmine/redmine.pid
eend $?
}
Categories: Gentoo, Internet, IT, Linux
Tags: apache, forum, Gentoo, issues, project, proxy, redmine, ticketing, wiki

Loading ...