{"id":1437,"date":"2021-04-07T12:03:00","date_gmt":"2021-04-07T17:03:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1437"},"modified":"2021-04-01T12:04:03","modified_gmt":"2021-04-01T17:04:03","slug":"how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/","title":{"rendered":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04"},"content":{"rendered":"\n<p>Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications from the central location. It is based on client-server architecture. So you will need to install the Nagios agent on the client system and add it to the Nagios server for monitoring. If you are looking for a monitoring solution then Nagios is an essential tool for any production server environment.<\/p>\n\n\n\n<p>In this tutorial, we will show you how to install Nagios 4 and monitor your server on Ubuntu 20.04.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Two Ubuntu 20.04 VPS one for Nagios server and one for Nagios client.<\/li><li>Access to the root user account (or access to an admin account with root privileges)<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Log in to the Server &amp; Update the Server OS Packages<\/h2>\n\n\n\n<p>First, log in to your Ubuntu 20.04 server via SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n\n\n\n<p>You will need to replace \u2018IP_Address\u2019 and \u2018Port_number\u2019 with your server\u2019s respective IP address and SSH port number. Additionally, replace \u2018root\u2019 with the username of the admin account if necessary.<\/p>\n\n\n\n<p>Before starting, you have to make sure that all Ubuntu OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt-get update -y\napt-get upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install Required Dependencies<\/h2>\n\n\n\n<p>Before starting, you will need to install some dependencies required to install Nagios in your system. You can install all of them with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt-get install autoconf bc gawk dc build-essential gcc libc6 make wget unzip apache2 php libapache2-mod-php libgd-dev libmcrypt-dev make libssl-dev snmp libnet-snmp-perl gettext -y<\/pre>\n\n\n\n<p>Once all the dependencies are installed, you can proceed to download the Nagios 4 core.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Download and Install Nagios 4<\/h2>\n\n\n\n<p>First, download the latest version of Nagios 4 from its official website using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget https:\/\/assets.nagios.com\/downloads\/nagioscore\/releases\/nagios-4.4.6.tar.gz<\/pre>\n\n\n\n<p>Once the download is completed, extract the downloaded file with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -xvzf nagios-4.4.6.tar.gz<\/pre>\n\n\n\n<p>Next, change the directory to the extracted directory and configure it with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd nagios-4.4.6\n.\/configure --with-httpd-conf=\/etc\/apache2\/sites-enabled<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">        Nagios user\/group:  nagios,nagios\n       Command user\/group:  nagios,nagios\n             Event Broker:  yes\n        Install ${prefix}:  \/usr\/local\/nagios\n    Install ${includedir}:  \/usr\/local\/nagios\/include\/nagios\n                Lock file:  \/run\/nagios.lock\n   Check result directory:  \/usr\/local\/nagios\/var\/spool\/checkresults\n           Init directory:  \/lib\/systemd\/system\n  Apache conf.d directory:  \/etc\/apache2\/sites-enabled\n             Mail program:  \/bin\/mail\n                  Host OS:  linux-gnu\n          IOBroker Method:  epoll\n\n Web Interface Options:\n ------------------------\n                 HTML URL:  http:\/\/localhost\/nagios\/\n                  CGI URL:  http:\/\/localhost\/nagios\/cgi-bin\/\n Traceroute (used by WAP):  \n\n\nReview the options above for accuracy.  If they look okay,\ntype &#039;make all&#039; to compile the main program and CGIs.\n<\/pre>\n\n\n\n<p>Next, build the Nagios with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make all<\/pre>\n\n\n\n<p>Next, create a Nagios user and group and add it to the www-data group with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make install-groups-users\nusermod -a -G nagios www-data<\/pre>\n\n\n\n<p>Next, run the following command to install Nagios binaries, daemon and command mode:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make install\nmake install-daemoninit\nmake install-commandmode<\/pre>\n\n\n\n<p>Next, install sample script config and Apache web configuration using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make install-config\nmake install-webconf<\/pre>\n\n\n\n<p>Next, enable the rewrite and cgi module with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">a2enmod rewrite cgi<\/pre>\n\n\n\n<p>Next, restart the Apache service to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Create a Nagios Admin User<\/h2>\n\n\n\n<p>Next, you will need to create a Nagios user to access the Nagios web interface. You can create it with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">htpasswd -c \/usr\/local\/nagios\/etc\/htpasswd.users nagiosadmin<\/pre>\n\n\n\n<p>You will be asked to set a password as shown below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">New password: \nRe-type new password: \nAdding password for user nagiosadmin\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Configure Nagios<\/h2>\n\n\n\n<p>Before configuring Nagios, you will need to install the Nagios Plugins and NRPE Plugins. You can install them with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt-get install monitoring-plugins nagios-nrpe-plugin -y<\/pre>\n\n\n\n<p>Once all the packages are installed, create a directory to store all configuration:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir -p \/usr\/local\/nagios\/etc\/servers<\/pre>\n\n\n\n<p>Next, edit the Nagios configuration file and define the server directory:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/usr\/local\/nagios\/etc\/nagios.cfg<\/pre>\n\n\n\n<p>Change the following line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cfg_dir=\/usr\/local\/nagios\/etc\/servers\n<\/pre>\n\n\n\n<p>Next, edit the Nagios resource.cfg and define the Nagios plugins path:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/usr\/local\/nagios\/etc\/resource.cfg<\/pre>\n\n\n\n<p>Change the following line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$USER1$=\/usr\/lib\/nagios\/plugins\n<\/pre>\n\n\n\n<p>Save and close the file then edit the contacts.cfg and define your contact name and email address:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/usr\/local\/nagios\/etc\/objects\/contacts.cfg<\/pre>\n\n\n\n<p>Change the following lines as per your needs:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">define contact {\n\n    contact_name            nagiosadmin             ; Short name of user\n    use                     generic-contact         ; Inherit default values from generic-contact template (defined above)\n    alias                   Nagios Admin            ; Full name of user\n    email                   nagios@localhost ; &lt;&lt;***** CHANGE THIS TO YOUR EMAIL ADDRESS ******\n}\n<\/pre>\n\n\n\n<p>Save and close the file then edit the commands.cfg and define the nrpe check commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/usr\/local\/nagios\/etc\/objects\/commands.cfg <\/pre>\n\n\n\n<p>Add the following lines at the end of the file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">define command{\n        command_name check_nrpe\n        command_line $USER1$\/check_nrpe -H $HOSTADDRESS$ -c $ARG1$\n}\n<\/pre>\n\n\n\n<p>Save and close the file then start the Nagios service and enable it to start at system reboot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start nagios\nsystemctl enable nagios<\/pre>\n\n\n\n<p>You can also verify the status of Nagios service with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status nagios<\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\u25cf nagios.service - Nagios Core 4.4.6\n     Loaded: loaded (\/lib\/systemd\/system\/nagios.service; enabled; vendor preset: enabled)\n     Active: active (running) since Sat 2021-02-06 13:37:33 UTC; 19s ago\n       Docs: https:\/\/www.nagios.org\/documentation\n   Main PID: 25820 (nagios)\n      Tasks: 6 (limit: 2353)\n     Memory: 2.7M\n     CGroup: \/system.slice\/nagios.service\n             \u251c\u250025820 \/usr\/local\/nagios\/bin\/nagios -d \/usr\/local\/nagios\/etc\/nagios.cfg\n             \u251c\u250025821 \/usr\/local\/nagios\/bin\/nagios --worker \/usr\/local\/nagios\/var\/rw\/nagios.qh\n             \u251c\u250025822 \/usr\/local\/nagios\/bin\/nagios --worker \/usr\/local\/nagios\/var\/rw\/nagios.qh\n             \u251c\u250025823 \/usr\/local\/nagios\/bin\/nagios --worker \/usr\/local\/nagios\/var\/rw\/nagios.qh\n             \u251c\u250025824 \/usr\/local\/nagios\/bin\/nagios --worker \/usr\/local\/nagios\/var\/rw\/nagios.qh\n             \u2514\u250025840 \/usr\/local\/nagios\/bin\/nagios -d \/usr\/local\/nagios\/etc\/nagios.cfg\n\nFeb 06 13:37:33 nagiosserver nagios[25820]: qh: Socket &#039;\/usr\/local\/nagios\/var\/rw\/nagios.qh&#039; successfully init\n<\/pre>\n\n\n\n<p>Finally, restart the Apache service to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Access Nagios Web UI<\/h2>\n\n\n\n<p>Now, open your web browser and access the Nagios web interface using the URL http:\/\/nagios-server-ip\/nagios\/. You will be asked to provide an admin username and password as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04.png\"><img decoding=\"async\" width=\"970\" height=\"302\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04-970x302.png\" alt=\"install nagios 4 and monitor your servers on ubuntu 20.04\" class=\"wp-image-1442\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04-970x302.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04-470x146.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04-768x239.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-your-servers-on-ubuntu-20.04.png 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n\n\n\n<p>Provide your Nagios admin username, password and click on the <strong>Sign<\/strong> <strong>In<\/strong> button. You should see the Nagios dashboard in the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04.png\"><img decoding=\"async\" width=\"970\" height=\"505\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04-970x505.png\" alt=\"monitor your server with nagios 4 on ubuntu 20.04\" class=\"wp-image-1443\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04-970x505.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04-470x245.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04-768x400.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-server-with-nagios-4-on-ubuntu-20.04.png 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n\n\n\n<p>Click on the <strong>services<\/strong> in the left pane, you should see all services in the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04.png\"><img decoding=\"async\" width=\"970\" height=\"501\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04-970x501.png\" alt=\"\" class=\"wp-image-1444\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04-970x501.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04-470x243.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04-768x397.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/nagios-4-on-ubuntu-20.04.png 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Add Monitoring Hosts to Nagios Server<\/h2>\n\n\n\n<p>Next, you will need to install the Nagios agent on the client system and add it to the Nagios server.<\/p>\n\n\n\n<p>First, install the Nagios and NRPE package on the client system with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt-get install nagios-nrpe-server monitoring-plugins -y<\/pre>\n\n\n\n<p>Once installed, edit the nrpe.cfg file and define your Nagios server IP and CLient IP:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/nagios\/nrpe.cfg<\/pre>\n\n\n\n<p>Change the following lines that match your server and client IP:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">server_address=client-ip-address\nallowed_hosts=127.0.0.1,::1,server-ip-address\n<\/pre>\n\n\n\n<p>Save and close the file. Then edit the nrpe_local.cfg:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/nagios\/nrpe_local.cfg<\/pre>\n\n\n\n<p>Add or change the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">command[check_root]=\/usr\/lib\/nagios\/plugins\/check_disk -w 20% -c 10% -p \/\ncommand[check_ping]=\/usr\/lib\/nagios\/plugins\/check_ping -H client-ip-address -w 100.0,20% -c 500.0,60% -p 5\ncommand[check_http]=\/usr\/lib\/nagios\/plugins\/check_http -I client-ip-address\ncommand[check_ssh]=\/usr\/lib\/nagios\/plugins\/check_ssh -4 client-ip-address\n<\/pre>\n\n\n\n<p>Save and close the file then restart the Nagios NRPE service and enable it to start at system reboot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart nagios-nrpe-server\nsystemctl enable nagios-nrpe-server<\/pre>\n\n\n\n<p>You can check the status of the service with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status nagios-nrpe-server<\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\u25cf nagios-nrpe-server.service - Nagios Remote Plugin Executor\n     Loaded: loaded (\/lib\/systemd\/system\/nagios-nrpe-server.service; enabled; vendor preset: enabled)\n     Active: active (running) since Sat 2021-02-06 13:51:40 UTC; 16s ago\n       Docs: http:\/\/www.nagios.org\/documentation\n   Main PID: 5966 (nrpe)\n      Tasks: 1 (limit: 1145)\n     Memory: 688.0K\n     CGroup: \/system.slice\/nagios-nrpe-server.service\n             \u2514\u25005966 \/usr\/sbin\/nrpe -c \/etc\/nagios\/nrpe.cfg -f\n\nFeb 06 13:51:40 nagiosclient systemd[1]: Started Nagios Remote Plugin Executor.\nFeb 06 13:51:40 nagiosclient nrpe[5966]: Starting up daemon\nFeb 06 13:51:40 nagiosclient nrpe[5966]: Server listening on 104.245.33.71 port 5666.\nFeb 06 13:51:40 nagiosclient nrpe[5966]: Listening for connections on port 5666\nFeb 06 13:51:40 nagiosclient nrpe[5966]: Allowing connections from: 127.0.0.1,::1,nagios-server-ip\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Add Client Hosts to the Nagios Server<\/h2>\n\n\n\n<p>Next, you will need to add client host to the Nagios server and define the service that you want to monitor.<\/p>\n\n\n\n<p>On the Nagios server, create a new file named nagiosclient.cfg:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/usr\/local\/nagios\/etc\/servers\/nagiosclient.cfg<\/pre>\n\n\n\n<p>Add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">define host {\n        use                          linux-server\n        host_name                    nagiosclient\n        alias                        Ubuntu Host\n        address                      client-ip-address\n        register                     1\n}\n\ndefine service {\n      host_name                       nagiosclient\n      service_description             PING\n      check_command                   check_nrpe!check_ping\n      max_check_attempts              2\n      check_interval                  2\n      retry_interval                  2\n      check_period                    24x7\n      check_freshness                 1\n      contact_groups                  admins\n      notification_interval           2\n      notification_period             24x7\n      notifications_enabled           1\n      register                        1\n}\n\ndefine service {\n      host_name                       nagiosclient\n      service_description             Check Users\n      check_command                   check_nrpe!check_users\n      max_check_attempts              2\n      check_interval                  2\n      retry_interval                  2\n      check_period                    24x7\n      check_freshness                 1\n      contact_groups                  admins\n      notification_interval           2\n      notification_period             24x7\n      notifications_enabled           1\n      register                        1\n}\n\ndefine service {\n      host_name                       nagiosclient\n      service_description             Check SSH\n      check_command                   check_nrpe!check_ssh\n      max_check_attempts              2\n      check_interval                  2\n      retry_interval                  2\n      check_period                    24x7\n      check_freshness                 1\n      contact_groups                  admins\n      notification_interval           2\n      notification_period             24x7\n      notifications_enabled           1\n      register                        1\n}\n\ndefine service {\n      host_name                       nagiosclient\n      service_description             Check Root \/ Disk\n      check_command                   check_nrpe!check_root\n      max_check_attempts              2\n      check_interval                  2\n      retry_interval                  2\n      check_period                    24x7\n      check_freshness                 1\n      contact_groups                  admins\n      notification_interval           2\n      notification_period             24x7\n      notifications_enabled           1\n      register                        1\n}\n\ndefine service {\n      host_name                       nagiosclient\n      service_description             Check HTTP\n      check_command                   check_nrpe!check_http\n      max_check_attempts              2\n      check_interval                  2\n      retry_interval                  2\n      check_period                    24x7\n      check_freshness                 1\n      contact_groups                  admins\n      notification_interval           2\n      notification_period             24x7\n      notifications_enabled           1\n      register                        1\n}\n<\/pre>\n\n\n\n<p>Save and close the file then restart the Nagios service to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart nagios<\/pre>\n\n\n\n<p>At this point, Nagios server and client are installed and configured.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 9: Verify Nagios<\/h2>\n\n\n\n<p>Now, go back to Nagios web interface and click on the hosts in the left pane, you should see all newly added client host in the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04.png\"><img decoding=\"async\" width=\"970\" height=\"502\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04-970x502.png\" alt=\"install nagios 4 ubuntu 20.04\" class=\"wp-image-1445\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04-970x502.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04-470x243.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04-768x398.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-ubuntu-20.04.png 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n\n\n\n<p>Now, click on the <strong>service<\/strong> tab in the left pane, you should see all services in the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04.png\"><img decoding=\"async\" width=\"970\" height=\"501\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04-970x501.png\" alt=\"monitor your servers with nagios 4 on ubuntu 20.04\" class=\"wp-image-1446\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04-970x501.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04-470x243.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04-768x397.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/monitor-your-servers-with-nagios-4-on-ubuntu-20.04.png 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n\n\n\n<p>Of course, you don\u2019t have to install Nagios on Ubuntu if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/\">Managed Hosting services<\/a>, in which case you can simply ask our expert Linux admins to install Nagios on Ubuntu, for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n\n\n\n<p>PS. If you liked this post on how to install Nagios on Ubuntu, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications from the central location. It is based on client-server architecture. So you will need to install the Nagios agent on the client system and add it to the Nagios server for monitoring. If &#8230; <a title=\"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/\" aria-label=\"More on How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1448,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[165,47],"class_list":["post-1437","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-nagios","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-07T17:03:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04\",\"datePublished\":\"2021-04-07T17:03:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/\"},\"wordCount\":985,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg\",\"keywords\":[\"nagios\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/\",\"name\":\"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg\",\"datePublished\":\"2021-04-07T17:03:00+00:00\",\"description\":\"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg\",\"width\":742,\"height\":372,\"caption\":\"install nagios 4 and monitor servers on ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog","description":"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog","og_description":"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2021-04-07T17:03:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04","datePublished":"2021-04-07T17:03:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/"},"wordCount":985,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg","keywords":["nagios","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/","name":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg","datePublished":"2021-04-07T17:03:00+00:00","description":"Nagios is a free, open-source and powerful monitoring tool that helps you to monitor your entire IT infrastructure, servers, services and applications","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2021\/03\/install-nagios-4-and-monitor-servers-on-ubuntu-20.04.jpg","width":742,"height":372,"caption":"install nagios 4 and monitor servers on ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nagios-4-and-monitor-your-servers-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Install Nagios 4 and Monitor Your Servers on Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1437","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1437"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1437\/revisions"}],"predecessor-version":[{"id":1476,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1437\/revisions\/1476"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1448"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1437"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1437"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1437"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}