Tagged Questions
Monit is a free open source utility for managing and monitoring, processes, files, directories and filesystems on a UNIX system. Monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations (http://mmonit.com/monit/).
32
votes
6answers
9k views
31
votes
12answers
12k views
How to monitor delayed_job with monit
Are there any examples on the web of how to monitor delayed_job with Monit?
Everything I can find uses God, but I refuse to use God since long running processes in Ruby generally suck. (The most ...
11
votes
3answers
2k views
Debugging monit
I find debugging monit to be a major pain. Monit's shell environment basically has nothing in it (no paths or other environment variables). Also, there is no log file that I can find.
The problem is, ...
7
votes
2answers
1k views
Is there benefit to using Monit instead of a basic Upstart setup?
I'm configuring my server to run node.js as a daemon. I've setup Upstart to handle startup and shutdown of node, which works wonderfully. The next step is to make sure that node is restarted if it ...
6
votes
5answers
1k views
Monitor ruby processes with Monit
I have a bunch of Ruby scripts which are long running, I'd like to ensure that every 30 seconds or so these are up.
I normally start the commands by simply ruby script-name.rb
How can I configure ...
4
votes
3answers
1k views
How can I keep a Passenger Standalone up even after a restart?
I have a few apps running rails 3 on ruby 1.9.2 and deployed on a Ubuntu 10.04 LTS machine using nginx + passenger. Now, I need to add a new app that runs on ruby 1.8.7 (REE) and Rails 2. I ...
3
votes
0answers
136 views
Rolling restart of process group in monit
Does anyone have any suggestions of how I might go about achieving a rolling restart of a process group using monit?
Thanks in advance,
fturtle
2
votes
1answer
61 views
Using Monit to monitor custom daemons
I have a daemon written in PHP. I use the following command to call the daemon
php dojobs.php
when I call that command, the daemon runs infinitely because the file dojobs.php has the following code
...
2
votes
2answers
147 views
Daemonized Node.js fails every 60 seconds with Monit
Gurus of SO
I am running Node.js as a daemon using monit & it turns out that it fails every 60 seconds on the dot. Here's my monit.log
root@mybox:/etc/monit# tail -f /var/log/monit.log
[UTC Sep ...
2
votes
1answer
167 views
Monit to watch over God?
We're using God to monitor our server processes, and were wondering if we should use something like Monit to make sure God gets up if something unexpected happens.
A quis custodiet ipsos custodes? ...
2
votes
3answers
558 views
Monit + RVM + Thin on OSX / Linux
After trying for hours (and also trying God and Bluepill) I decided to ask my question here because I am completely clueless how to solve this issue.
I have a Rails app. I want to use Thin as my app ...
2
votes
1answer
83 views
Ensure that certain processes are running when my Rails app loads
I want to ensure that certain processes like Sunspot Solr search and delayed_job are running when my Rails 3 app initializes or loads.
I'm somewhat of a noob and from what I can tell, I could write a ...
2
votes
3answers
1k views
Node.js (sudo) and monit
I have created an upstart script in order to daemonize juggernaut (a node.js app)
The upstart script is the following
description "juggernaut server"
author "panojsee"
start on startup
stop on ...
2
votes
1answer
366 views
Need help with monit alerts on connection of Nginx
I hope somewhere out there will be able to help me on this. I have my production evironment as follows:
Rails 2.3.5
Passenger 2.2.11
Nginx
Monit
It seems that everything is working as it's supposed ...
2
votes
1answer
366 views
Workling processes multiplying uncontrolably
We have a rails app running on passenger and we background process some tasks using a combination of RabbitMQ and Workling. The workling's worker process is started using the script/workling_client ...
1
vote
0answers
58 views
how to monitor gearmand daemon by Monit?
So the configuration file for monitoring gearman server is:
set logfile /var/log/monit.log
check process gearmand with pidfile /var/run/gearmand.pid
start program = "sudo gearmand ...
1
vote
2answers
108 views
Java wrapper as daemon
I am using this YAJSW to run Java Daemon on my Centos 5.5 machines. The think it runs well but out of suddent I notice I get this sort of error and then it just goes down. Any help what must I do to ...
1
vote
1answer
44 views
Monit - stop service and stay stopped?
I have a daemon which runs via the usual init.d/service scripts.
I have monit running which ensures these daemons are restarted if they crash.
I have a request that 'service foo stop' should stop ...
1
vote
1answer
109 views
How to erb'up a monitrc configuration file
Below is my delayed_job monitrc file, i wanted to use it as an erb template so that i can dynamically set the RAILS_ENV variable. Does anyone know how to do it?
set daemon 120
check process ...
1
vote
0answers
50 views
Have monit execute a recover command quickly once, but then have a long wait before doing it again
When my server gets into high load, a graceful restart of Apache seems to bring things back under control. So I set up monit, with this configuration:
set daemon 10
check system localhost
if ...
1
vote
2answers
149 views
Monitor Coldfusion on linux with monit?
We are trying to use monit to monitor services on our unbuntu machine. I have successfully setup a host url check to make sure that coldfusion can render web pages and it there is an error to restart ...
1
vote
1answer
542 views
passing :rails_env in capistrano to chef/cookbook/monit/mongrel.conf
How do we pass the :rails_env vairable so that it recognizes what version we are into i.e. staging, production, demo
We are trying to get the :rails_env from the deploy.rb in capistrano to pass to ...
1
vote
0answers
127 views
How to throttle log alerting in monit
Hey there,
We have a setup in monit whereby we monitor a whole lot of log files for the string "Exception". When monit sees this string, we get an email alert.
There are times when we get spammed ...
1
vote
1answer
865 views
Monit Daemon: Apache-Status connection failure
I'm setting up a cluster of servers for the company I work at, and I'm using Monit to monitor that all server processes are running and working as they should.
For Apache monitoring, I wanna use the ...
0
votes
0answers
40 views
Bluepill vs monit
I currently use monit to monitor processes but for a new project I am using unicorn instead of passenger and stumbled across bluepill and wondered if anyone has some experiences good/bad ?
One of ...
0
votes
1answer
55 views
set up Delayed_job with monit monitoring tool
I am deploying Rubyonrails web app with ruby 1.9.2p280, rubyonrails 3.07 with apache passenger and delayed_job as background job.
I would like to monitor my passenger as well as delayed_job ...
0
votes
0answers
31 views
Monit with delayed_job in rails 3
I have found many article after googling for "Monit with delayed_job". I tried but no positive result.
I am new to Monit and delayed_job.
Step by step guidance would be highly appreciated.
Thanks
0
votes
0answers
18 views
How to determine when to scale up/down my servers using Monit/CollectD
I use Ubuntu Natty.
I'm in the process of installing Monit as my basis for server monitoring. I'm also looking at using CollectD as an alternative or partner. I just discovered these two tools using ...
0
votes
0answers
124 views
PHP-FPM, Monit, ping/status pages, Apache
I'm trying to monitor my FPM daemon with Monit, and I'm assuming that the following is not the best technique due to respawning and the PID changing?
check process php5-fpm with pidfile ...
0
votes
0answers
38 views
Monit service name error
So I have the following in my monitrc file:
check process apache with pidfile /usr/local/apache/logs/httpd.pid
group apache
start program = "/etc/init.d/httpd start"
stop program = "/etc/init.d/httpd ...
0
votes
2answers
249 views
MySQL restarting every 30 minutes on Ubuntu 11.04
I'm having an issue where MySQL 5.1.54 is restarting every 30 minutes on Ubuntu 11.04. When this occurs, the following appears in the MySQL log:
111030 12:01:52 [Note] /usr/sbin/mysqld: Normal ...
0
votes
1answer
60 views
Monit failing to start process
I have a simple script that I'm trying to get Monit to monitor. After some digging around I found this little nugget: start program = "su - myuser -c '/home/user/myscript.rb start' " which I believe ...
0
votes
1answer
286 views
Monit configuration for php-fpm
I'm struggling to find a monit config for php-fpm that works.
This is what I've tried:
### Monitoring php-fpm: the parent process.
check process php-fpm with pidfile /var/run/php-fpm/php-fpm.pid
...
0
votes
0answers
13 views
Does monit support plugins?
I really like monit, the only thing that bothers me - I could not find any extensions/plugins support neither in the docs, nor in the source.
0
votes
1answer
277 views
running delayed_job under monit with ubuntu
I'm struggling to get delayed_job working under rails 3.0.9 (ruby 1.9.2). The only way I have succeeded to run is to tape manualy the command rake jobs:work.
But I want that to be automatically ...
0
votes
0answers
95 views
why configuring node.js application by monit restart the server every two minutes
I have configure monit by following lines but it is restarting the server after every two minutes what should i do ?
check host myapp1 with address myserverurl.net
start "/sbin/start myapp"
...
0
votes
1answer
65 views
What is the syntax for sending Jabber/Gtalk notifications in Monit
I noticed in the release log (http://mmonit.com/wiki/MMonit/Release2-1) Monit supports Jabber/GTalk messages but I can't find the proper syntax in any of the documentation. I'm trying to send out an ...
0
votes
0answers
56 views
monit problems with log files and executing an external script
i have installed monit and have configured it so that i am able to watch a remote server (i will call this the primary server) that has a postgresql database located on it. earlier, i was able to see ...
0
votes
1answer
140 views
Running monit as a restricted user and making it watch a process that needs root privileges
I have a specific script written in Ruby that needs root privileges. Most of the other processes don't need that and so were easy to setup in Monit. Not this one.
The server needs to listen at 386, ...
0
votes
0answers
59 views
how to restart the process when process killed in monit?
I'm using monit to monitor my process, I need make one process is runnng again when it stops(process killed),
I'm using:
check process server-daemon with pidfile ...
0
votes
1answer
131 views
How do I use Monit to keep an R script running?
I have an R script that I want to have running continuously on Ubuntu 10.10. I'm trying to setup Monit to ensure that it doesn't go down. As the script starts, it creates a pid file with the lines:
...
0
votes
0answers
160 views
monit fails to start the process in the first attempt, and is successful in subsequent attempts
I am using monit to monitor the delayed_job daemon process. During deployment(using capistrano) of my rails app, I follow the sequence:
* monit stop delayed_job
* other deployment steps
* monit ...
0
votes
2answers
608 views
rvm monit delayed_job
I am trying to run delayed_job using monit, but its failing to run as rvm's paths (local rvm installation per user basis) are not available to the command. My application is a rails2 app with bundler. ...
0
votes
0answers
334 views
monit over apache reverse proxy and remote proxy
I need to setup monit to communicate over a proxy to a mmonit host with ssl:
mmonit => http://mmonit.com/
monit => http://mmonit.com/monit/
the mmonit host only accepts https requests with HTTP ...
0
votes
2answers
553 views
Kill hung unicorn worker processes?
I am currently running a large rails application on a virtual server. My setup uses Unicorn to serve the Rails App with nginx as the proxy server in front.
Occasionally I get notifications that My ...
0
votes
1answer
519 views
monitoring multiple delayed job workers with monit
I have read a lot about monitoring delayed_job with monit. The implementation is pretty easy and straight forward. But When one worker is not enough how do I setup monit to ensure that, let's say, 10 ...
0
votes
1answer
748 views
Monit on CentOS causes httpd.pid not to be created
After installing Monit on CentOS, and setting an alert for the Apache (httpd) service, the service no longer creates the /var/run/httpd.pid file.
The httpd service IS running properly.
On top of it, ...
0
votes
0answers
132 views
running Juggernaut in production
So far I've just been running Juggernaut from the command line. How can I go about setting it up for production use? I use Monit for keeping alive other server processes, but I'm not sure where to ...
0
votes
4answers
637 views
Any tools to monitor IIS and application performance
I have a web-service application that exposes lot of web-methods ( internally calling internal APIs or external web-services). I would like to have a tool to monitor this whole application running ...
0
votes
1answer
174 views
rake aborted! with monit
I'm using monit 0.4.1 in ubuntu 9.04. I tried to create a simple rake task just to start the monit service, but it turns out with rake aborted!. Here is my rake script:
namespace :monit do
desc ...