Archive

Posts Tagged ‘redmine’

http monitoring with God

August 26th, 2010 No comments

A few more line to the monitoring of yesterday

[...]
    w.restart_if do |restart|
      restart.condition(:http_response_code) do |c|
        c.host = 'localhost'
        c.port = port
        c.path = '/'
        c.code_is_not = 200
        c.timeout = 3.seconds
        c.times = [2, 5]
      end
[...]
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

still this performance issue

August 26th, 2010 No comments

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

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

redmine on nginx with mongrel_cluster performace

August 25th, 2010 No comments

I have seen some serious performance and some error messages with and _.
Read more…

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

redmine on nginx with mongrel_cluster

June 10th, 2010 No comments

The webrick of has couple of performance , so I was looking for an alternative solution to avoid the use of and its features. As already I use 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…

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Redmine 0.9.3

February 7th, 2010 No comments

After upgrading couple of new plug-ins are installed.

Here is a basic start up script for

$!/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 $?
}
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...