-1

I have a server running on Centos 6.2 , I want to install monit in it , please help me to install monit step by step.

Thanks in advance.

Muhammad
  • 11
  • 1
  • 3
    Unfortunately this question is not a good fit for this site. If you get stuck on a particular step please update your question. From cursory [search](https://www.google.com/search?hl=en&safe=active&q=Installing+monit+on+centos&oq=Installing+monit+on+centos&gs_l=serp.3..0.24968.27614.0.27798.9.7.0.2.2.0.171.648.5j2.7.0...0.0.iOFMgluEQIY) that are plenty of guides on how to do this. –  Jul 05 '12 at 22:01
  • Agreed, you can simply search online for multiple guides such as http://www.howtoforge.com/server-monitoring-with-munin-and-monit-on-centos-5.2-p2 – TheCleaner Jul 05 '12 at 22:02

1 Answers1

2

Monit is available via the Repoforge/RPMForge repository. It's a single package with no real dependencies, so you can either download it separately, or as part of a configured repo. If you enable the repo, installation is simply yum install monit. If you just want the lone package:

wget ftp://ftp.pbone.net/mirror/apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/monit-5.2.3-1.el6.rf.x86_64.rpm

or even install directly with:

rpm -ivh ftp://ftp.pbone.net/mirror/apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/monit-5.2.3-1.el6.rf.x86_64.rpm

  • Profit!

(of course, then you'll actually need to configure Monit... That take a bit more work, but the helpful setup examples and detailed documentation will be good resources.)

ewwhite
  • 197,159
  • 92
  • 443
  • 809