It has a wide variety of plugins in existence, but when there's no plugin available it is quite simple to integrate one's own programs and scripts.
Systems Engineer at a tech services company with 501-1,000 employees
It has somewhat helped improved the workflow and technical processes with regards to response times. A better multi-tenant environment would be ideal.
What is most valuable?
How has it helped my organization?
It has somewhat helped improved the workflow and technical processes with regards to response times, and identify the frequent point of failures so as to architect alternative solutions. Plus all the stuff about SLA is an area that for me that is hard to quantify, but there's a team of accountant types who are dedicated to pulling numbers out of their hats.
What needs improvement?
It would be nice to have a better, or alternative, dashboard, à la Thruk, to see business process groupings, rather than just host and services. Tis might give a better visual representation of how the company is performing, and the availability of mission critical services etc.
A better multi-tenant environment would be ideal where certain users have limited visibility instead of just limited functionality.
For how long have I used the solution?
I've been using it for about six or seven years. We currently have v3.4.1 in production and are currently developing and testing v4.1.1 prior to implementation. Currently, we use various plug-ins including NRPE, NSCA, NagiosQL 3.2.0, PNP4Nagios 0.6.24, NSclient++ 0.3.9, and nagios-plugins 2.1.1.
Buyer's Guide
Nagios XI
May 2025

Learn what your peers think about Nagios XI. Get advice and tips from experienced pros sharing their opinions. Updated: May 2025.
851,823 professionals have used our research since 2012.
What was my experience with deployment of the solution?
We have had no issues with the deployment.
What do I think about the stability of the solution?
We're still experiencing stability issues with regards to collecting performance graphs.
What do I think about the scalability of the solution?
It's been able to scale for our needs.
Which solution did I use previously and why did I switch?
We migrated away from being Windows centric. Their prodcut, although quite powerful, it was Windows centric and as our fleet of Linux servers increased an alternative was needed to suport multiple operating systems.
How was the initial setup?
The installation and configuration was straightforward and not complex, but rather time consuming as there was no easy method to centrally deploy plugins or agents to hundreds of remote clients. The only complexity that we encountered was in the network configurations for our firewalls and routing.
What about the implementation team?
All work is done in-house, and over the years it seems easier to Google for a solution to a given problem, but often enough a problem will crop up where no-one has yet found a solution. You need to learn to take notes and document everything that you. This may seem time consuming, but it will certainly save a lot more time and work in the future.
What other advice do I have?
It gets the job done, but there's a lot of room for improvement. Make sure that you clearly identify which are the mission critical services and which aren't so as to avoid cluttering the dashboard and overwhelming IT staff with too much information.
Disclosure: I am a real user, and this review is based on my own experience and opinions.
IT Administrator at a tech services company with 51-200 employees
What is Nagios: An Introduction to enterprise level server monitoring
Any internet based service company like for example web hosting, DNS hosting, Email-hosting, Cloud architectures, and even CDN networks have server's ranging from several hundreds to thousands. There might be different roles that are played by different servers that are geographically isolated from each other. As a whole these geographically separated servers might be providing a combined service to the end customer. A particular issue or problem on any of the server should not affect the customer service, and must be found and fixed before the outage happens.
Let's take two examples which will explain the need for a 24 x 7 monitoring of these servers. Suppose that you get a call from your technical support team saying that several customers are complaining about their websites being inaccessible. Such complaints without any other details are very difficult to troubleshoot, if you do not have a 24 x 7 server monitoring in place. During crisis, you cant waste time by checking the basic below mentioned things.
- Server Disk Space
- Swap and memory utilization
- Processes and its status
- Load on the server
- RAID array status
- File system mount status
- Web server status
Because its quite normal to miss some or the other, by manually looking for basic issues on the server. What if the issue that was causing the problem was simply due to a RAID drive failure, due to which one of the disks were inaccessible( which contains the document root for some websites hosted ).
Such problems can be monitored for and can be warned before a complete failure occurs. Another funny example would be to find that a customer facing service was not working as desired for hours, simply due to a lag in time from a Network Time Server.
It is not at all feasible for a system administrator to look each and every log, and service settings, and other configurations round the clock. There needs to have some automated tool to continuously keep on monitoring these required services and settings on the server, and inform the concerned people in case of an issue. A good server and infrastructure monitoring tool must have the following characteristics.
- Must have a web interface which clearly outlines the issues that a particular host/server has.
- Must inform different concerned people in case of an issue.
- Must send pagers, mails, and text messages to the developers and system administrators concerned with a particular service failure.
- The tool must have the capability to take actions such as restarting a service, based on the current status.
What is Nagios
Although there are many proprietary monitoring tools out there to select from depending upon the requirement, no proprietary tool can provide the peer review, source code modification, and version iterations that an open source tool provides.
Nagios is an open source network monitoring tool that provides all those capabilities we discussed above in one package. Nagios monitors the servers and network devices(in fact i must say any network device which is accessible with an IP address can be monitored using Nagios) and alerts you when a particular service that's being monitored goes wrong, and also will alert you when the service comes back to normal required state. Nagios is capable of doing the following things.
- Monitoring of different services on a server, such as SMTP, HTTP, POP, IMAP, PROXY, and the list goes on. In fact you can make nagios to monitor anything on the server(You just need to make a custom script according to your requirement)
- 24 x 7 monitoring of server resources like CPU, Memory, Swap, Load
- A nice web interface which indicates the status of the services by three methods OK, Warning, Critical
- Maintaining a different set of contact groups(which will contain email addresses of different concerned people), based on the service
In this tutorial, we will be having a look at the major components of Nagios, which helps nagios to complete its task of maintaining a good monitoring infrastructure.
Let's begin this tutorial by understanding how a nagios server checks the status of a remote service on a remote server, and accurately report the output to you. In the world of nagios you will too often hear a term called plugins, which are readily available binary or small script based program, that checks the status of your required service or program.
Nagios checks the status of a remote service or program in multiple ways. Let's understand them one by one.
(1) Directly monitor services through network
In this first method the nagios server will execute a plugin on the nagios server itself, which will basically try to connect to a network service on the target server. Lets understand this through the following diagram.
In the above shown diagram, we have tried to depict how nagios process execute an example check(which is also sometimes called plugin), on the nagios server itself, which will connect to the http port 80 on the target server, and will record the response time.
Nagios server will execute the check at regular interval(as configured), to check the availability of the service. In the above shown example, the plugin is placed inside the nagios server, and no changes are done at the client side. You cant monitor all properties of a client that counts, through this method. This method can be used only to monitor, services that are available publicly. The main reason behind this is that, you need to login inside the client server, in order to monitor stuff like memory usage, process status, cpu load, and other stuff.
Hence this kind of plugins are very limited in its capability, but you can surely achieve a considerable amount of good 24x7 monitoring using this method, for publicly available services like SMTP, HTTP, DNS, FTP, PORT availability check, Remote MySQL & MSSQL etc.
(2) Nagios monitoring through SSH and NRPE
As mentioned in the previous method, without getting a login to the remote machine, the level of monitoring you can achieve is very limited, and also you cannot monitor all the services using that method.
You can achieve a 24 x 7 monitoring of the things that cannot be monitored directly through network with the help of two different methods, they are as mentioned below.
- Check the status of a remote service by executing a plugin, that will be placed on the remote client, by loging inside the client with the help of SSH.
Related: Working of SSH explained
- NRPE (Nagios Remote Plugin Executor), is a daemon that's installed as a stand alone or an inetd daemon that waits for requests from the nagios server on port 5666, to execute commands that are defined in its configuration file.
Let's frst undersand monitoring a remote host using SSH method. In this method, a user is made on all the client machines, which allows ssh login from the nagios server with the help of a predifined ssh key and execute a requred plugin to monior a required service.
This method of executing remote plugins on remote client with the help of SSH is a secure way to monitor. As a normal user logs in the remote client, the nagios server will be able to run any command that the normal user will be able to run(when i say run, i mean execute).
the plugins that reside in the remote client are sometimes called as local plugins as they are local to the remote host. to run local plugins on remote host,nagios uses a ready made command called check_by_ssh(we will be discussing the complete command usage of this plugin in a dedicated post of its own).
of cource you will not be sitting and entering passwords each and every time the check is executed by the nagios daemon. Login and execution of the remote plugin on the remote server using ssh must be seamless and also must be password less login. For this, you need to set up public key authentication of the user, which will be loging inside the remote server for executing the plugins.
Now let's see the another method of executing remote plugins.
Another method that is commonly used to achieve the successful execution of a remote plugin is NRPE. NRPE stands for Nagios Remote Plugin Executor. NRPE is a package that will be installed on all the remote hosts, that needs to be monitored. Mostly NRPE is installed as Xinetd service on the remote host, and by default it listens on the tcp port 5666.
Suppose the nrpe daemon receives a query from the nagios server, to execute a command on the local server, nrpe daemon looks inside the nrpe configuration files, for a command with the same name what nagios asked to run. Unlike ssh method, nrpe cannot run any command that the nagios server asks to run. Commands first need to be defined inside the nrpe configuration file. And only those commands can be run from the nagios server. Deploying ssh based nagios checks are much easier compared to nrpe method, because in nrpe method, you need to first install nrpe package on all the client servers that requires to be monitored.
Above diagram depicts the nrpe method of executing remote checks on a remote client with nagios. Nagios server has a check_nrpe plugin (which is very similar to the plugin check_by_ssh used in ssh method), which connects to the remote client on the port 5666, and executes the command, which is given as an argument to check_nrpe plugin(the command given as argument to check_nrpe plugin on the nagios server must also be defined in nrpe configuration files on the client, where the command will be executed.)
Nrpe method of monitoring remote host, by executing plugins on the remote machine is limited to the commands defined inside the nrpe configuration files on the client. Which means the command which you require to run on the remote machine, must be predefined in the nrpe configuration files on the client.
But check_by_ssh can be used to run any command, with executable permission to the user used to login to the remote machine.
Let's go ahead and understand the remaining two methods that can be used to monitor a remote host in nagios monitoring.
(3) Monitoring remote host with the help of SNMP in nagios
SNMP can be used to fetch the current value of different properties of a network device or any SNMP aware device. if you have SNMP daemon installed on your remote host, which needs to be monitored, then you can monitor hard drive, load, etc with the help of SNMP daemon.
Advantage behind using SNMP to monitor is because it is supported by a wide variety of devices like network switches, routers, UPS devices etc.
We will be doing a couple of posts on SNMP, for getting a better overview of the protocol and its usage. We will also be doing a dedicated post for monitoring devices with nagios and SNMP.
Above case of monitoring with snmp places the plugin inside the nagios server itself, which will be a generic snmp plugin that will be used to monitor all snmap related services, with different arguments given to it.
(4) Nagios Passive monitoring or NSCA (Nagios Service Check Acceptor)
Until now we have seen around 4 different methods, used to monitor a remote server using nagios. All of them worked by either a plugin placed on the nagios server or a plugin placed on the client, or by simple monitoring or publicly available service. In all the above mentioned method, the plugin execution or say command execution was initiated by the nagios server.
Let's now see a method, in which the client will execute a required plugin at a regular interval, and report the output of the execution to the nagios server. This is achieved with the help of a daemon called NSCA.
NSCA stands for Nagios Service Check Acceptor. This is installed as a daemon on the nagios server itself, and it will wait for the command result from the client.
This kind of nagios monitoring is called as passive monitoring, because nagios server is not the one that initates the checks on the client, but the client will execute the plugins specified, at regular interval with the help of a cron and report the output to the nsca daemon on the nagios server.
While reporting the output, the client will also send details like the service name, hostname, the output of the command executed to the nsca daemon, so that the nagios server can report the output exactly in the same way active checks are executed(active checks are those checks in which the command execution is initiated by the nagios server. Examples are check by ssh, nrpe etc.)
There are couple of things that needs to be understood, from the above shown diagram. NSCA is a daemon on the nagios server that waits for the command result from the client.
Send_nsca is a program that can be used to send a command result to the nagios server. The hostname, the service name, and other related details will be included in the command result send using send_nsca to the nagios server.
Disclosure: I am a real user, and this review is based on my own experience and opinions.
Buyer's Guide
Nagios XI
May 2025

Learn what your peers think about Nagios XI. Get advice and tips from experienced pros sharing their opinions. Updated: May 2025.
851,823 professionals have used our research since 2012.
Software Test Engineer at a comms service provider with 501-1,000 employees
The monitoring and notification when an issue arises are the most valuable features.
Valuable Features
The monitoring and notification when an issue arises.
Improvements to My Organization
It was essential we had to have live monitoring as we were trial-ing a real-time communications application on a live site.
Room for Improvement
While the UI is functional, I have always thought there was room for improvement here. It is at times assumptive for the not so technical, rather than informative.
Use of Solution
I've been using it for 12 to 18 months. Presently I work as a software test engineer and my employer has been using Nagios for approximately ten years now. I first used Nagios in January 2014. I was in a small startup company based in the TSSG called Kodacall, it was based around WebRTC. I implemented in order that we could monitor our network as we had some clients who very kindly were letting us test our product on their live site. I really found Nagios a perfect fit for us and a good product to work with. As the saying goes “It does exactly as it says on the tin”. I hope what I have given might be of some small help.
Deployment Issues
It was deployed as a stand alone tool and is also integrated with Docker.
Stability Issues
It was deployed as a stand alone tool and is also integrated with Docker.
Scalability Issues
It was deployed as a stand alone tool and is also integrated with Docker.
Customer Service and Technical Support
I didn’t require any service as the documentation is good and most questions are answered on any number of forums.
Initial Setup
Setup ran pretty smooth. It's not overly difficult but it does require patience and some experience would make it easier. Like everything it is easier the second time around.
Implementation Team
We implemented it in-house.
Other Solutions Considered
Although we did look at other tools, we felt Nagios was a good fit for us.
Other Advice
I would have no hesitation in recommending it.
Disclosure: I am a real user, and this review is based on my own experience and opinions.
IP/MPLS Engineer at a comms service provider with 1,001-5,000 employees
It's helpful for seeing where we're having problems with the network, but the display could be more intuitive
Pros and Cons
- "The installation is no problem. I've installed Nagios several times."
- "The way Nagios displays information isn't easy for a new user to understand. It's not intuitive enough. You need to read some tutorials or be trained to understand what it's displaying. Also, I think it needs more features to improve network visibility because there are some things you can't detect."
What is our primary use case?
We use Nagios XI for monitoring and seeing where we're having problems with the network.
What needs improvement?
The way Nagios displays information isn't easy for a new user to understand. It's not intuitive enough. You need to read some tutorials or be trained to understand what it's displaying. Also, I think it needs more features to improve network visibility because there are some things you can't detect.
For how long have I used the solution?
I've been using Nagios for more than five years.
What do I think about the stability of the solution?
Nagios is stable.
What do I think about the scalability of the solution?
Nagios has good scalability.
How was the initial setup?
The installation is no problem. I've installed Nagios several times.
What other advice do I have?
I rate Nagios XI six out of 10. It's one of several network monitoring systems we have, and it has some features we can't get from other platforms.
Which deployment model are you using for this solution?
On-premises
Disclosure: I am a real user, and this review is based on my own experience and opinions.
R&D Support & Monitoring, IT Production at a tech vendor with 51-200 employees
Enables us to monitor servers but the visibility needs improvement
Pros and Cons
- "The features I've found the most useful are the plug-ins, the fact that you can connect almost everything to it. That's very useful."
- "There's room for improvement in the visibility, and in the ability to extract information. Stuff like this should be more simple."
What is our primary use case?
We primarily use this solution to monitor servers and services.
What is most valuable?
The features I've found the most useful are the plug-ins, the fact that you can connect almost everything to it. That's very useful.
What needs improvement?
There's room for improvement in the visibility, and in the ability to extract information. Stuff like this should be more simple. Going over the data and the information is complicated at the moment. The management of the commands is also a little complicated.
For how long have I used the solution?
I have been using this solution for about half a year.
What do I think about the stability of the solution?
It's stable.
How are customer service and technical support?
I haven't had any experience with technical support.
How was the initial setup?
The initial setup was straightforward.
What other advice do I have?
In regards to the interface, obviously it can always get even better but at the moment it's functional. It's a good tool. It's very easy to use, very straightforward, and I would recommend it. I would rate this solution a seven out of 10. I like it but of course, it could be better. The product detail should look better, and again, being able to find information on the search is not good enough. I think to change that would improve it very much.
Disclosure: I am a real user, and this review is based on my own experience and opinions.
Lead Solution Consultant at a tech services company with 51-200 employees
Scalable product with an easy setup process
Pros and Cons
- "It is an open-source platform with valuable features for performance and stability."
- "The product's stability could be even better."
What is our primary use case?
We use Nagios XI for server monitoring.
What is most valuable?
It is an open-source platform with valuable features for performance and stability.
What needs improvement?
The product's stability could be even better.
For how long have I used the solution?
We have been using Nagios XI for five years.
What do I think about the stability of the solution?
I rate the product's stability a nine out of ten. There is room for improvement.
What do I think about the scalability of the solution?
I rate the product's scalability a nine out of ten.
How was the initial setup?
The initial setup is easy. It requires a team of ten engineers to execute the process.
What about the implementation team?
Our employees implement the product with the help of third-party vendors.
What other advice do I have?
I rate Nagios XI a nine out of ten.
Which deployment model are you using for this solution?
On-premises
Disclosure: I am a real user, and this review is based on my own experience and opinions.
Senior Systems / DevOps Engineer with 1,001-5,000 employees
It's easy to customize through scripts. The user interface needs to be improved.
Valuable Features:
In my experience with Nagios, I've found that the most valuable features are the scalability and extensibility through using scripts. It's easy to customize, and Nagios makes it easy to use languages you're already familiar with such as Bash/Python
Improvements to My Organization:
It's helped us improve as we now have the ability to customize the solution. By doing this through scripting, we are now able to monitor every layer of our stack from infrastructure to applications.
Room for Improvement:
I feel that the maturity and user interface needs to be improved. I think this is handled through its integration with OpsView.
Deployment Issues:
We have had no issues with the deployment.
Stability Issues:
There have been no performance issues.
Scalability Issues:
It's been able to scale for our needs.
Initial Setup:
If you plan ahead of time and thoroughly test the final solution you want to implement, it should be straightforward.
Other Advice:
Plan ahead and take your time through staging the installation and take your time testing your customized scripts before doing the production installation.
Disclosure: I am a real user, and this review is based on my own experience and opinions.
Systems Administrator at a cloud solution provider with 501-1,000 employees
I've used both Nagios and SolarWinds- different enviorments have different preferences
I've used both Nagios and SolarWinds, although I haven't messed with nagios as much as
solarwinds. Solarwinds had some nice features for monitoring and I
learned a lot about it in the short time that I actually worked with it.
Nagios just seems to work and when a server is down, I investigate.
Solarwinds seemed to have more issues but that could have been because
it was running on a server 2003 box and possibly old hardware where as
the company I'm working at now runs nagios on a linux box with some
decent hardware. Again, I haven't delved deep into Nagios and it's
possible that what I'm looking at is just a webpage front end to nagios
that not everybody uses but it's still pretty nice regardless.
Not sure if different environments have different prefferences but the
company I was working at that used solarwinds was an ISP. The company
that uses nagios is a web hosting company. I've also seen a linux admin
at a previous job use nagios so it may be that nagios is more popular
among linux if not servers altogether.
Disclosure: I am a real user, and this review is based on my own experience and opinions.

Buyer's Guide
Download our free Nagios XI Report and get advice and tips from experienced pros
sharing their opinions.
Updated: May 2025
Product Categories
IT Infrastructure Monitoring Network Monitoring Software Server Monitoring Cloud Monitoring SoftwarePopular Comparisons
Veeam Data Platform
Datadog
Zabbix
New Relic
Microsoft Configuration Manager
Elastic Observability
Tanium
SolarWinds NPM
PRTG Network Monitor
Cisco DNA Center
ThousandEyes
Cisco Secure Network Analytics
NinjaOne
ServiceNow IT Operations Management
Buyer's Guide
Download our free Nagios XI Report and get advice and tips from experienced pros
sharing their opinions.
Quick Links
Learn More: Questions:
- Should we choose Nagios or PRTG?
- Which network monitoring tool is more customizable: Nagios or Zabbix?
- Can PRTG be used to monitor Oracle SOA suite components or should we choose Nagios instead?
- What are pros and cons of Nagios XI vs alternative NPM tools?
- What is the biggest difference between Nagios Core and Nagios XI?
- Any experience with Event & Incident Analytic engines like Moogsoft?
- Windows 10 - what are your main concerns about upgrading?
- When evaluating IT Infrastructure Monitoring, what aspect do you think is the most important to look for?
- What advice would you give to others looking into implementing a mid-market monitoring solution?
- Zabbix vs. Groundwork vs. other IT Infrastructure Monitoring tools
Can we use Solarwinds to monitor linux as well as solaris operating systesm?