{"id":2634,"date":"2018-10-09T12:04:39","date_gmt":"2018-10-09T06:34:39","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2634"},"modified":"2018-10-12T15:46:25","modified_gmt":"2018-10-12T10:16:25","slug":"nagios-remote-host-monitoring","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/","title":{"rendered":"Nagios Remote Host Monitoring"},"content":{"rendered":"<h3><strong>Nagios Remote Host Monitoring<\/strong><br \/>\nDated on :05\/10\/2018<\/h3>\n<h4><strong>On Remote Host<\/strong><\/h4>\n<p>Step 1: Install the compiler gcc,glibc<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum install -y gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel<br \/>\n<\/code><\/p>\n<p>Step 2: Add the user for the nagios using<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">useradd nagios<\/code><\/p>\n<p>Note: If already exist skip this.<\/p>\n<p>Step 3: Add the password for created user<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">passwd nagios<\/code><\/p>\n<p>Note: Then give the New password and then confirm the new password<\/p>\n<p>Step 4: Create Directory using<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">mkdir \/root\/nagios<\/code><\/p>\n<p>Step 5: Go to the created directory<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">cd \/root\/nagios<\/code><\/p>\n<p>Step 6: Install the Nagios Plugins<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">wget https:\/\/www.nagios-plugins.org\/download\/nagios-plugins-2.2.1.tar.gz<\/code><\/p>\n<p>Note : choose the file name upto your choice . If you want the latest version find the path and give the path.<\/p>\n<p>Step 7: Extract nagios plugin using tar command<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">tar -xvf nagios-plugins-2.2.1.tar.gz<\/code><\/p>\n<p>Step 8: Check whether the folder appear in the directory<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ls \u2013l<\/code><\/p>\n<p>Step 9: Compile and install nagios using<\/p>\n<p>Step 9.1: Go to <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">cd nagios-plugins-2.2.1<\/code><\/p>\n<p>Step 9.2: User editor to edit the\u00a0 <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">.\/configure<\/code><\/p>\n<p>Step 9.3: Add make and make all<\/p>\n<p>Step 10: Set the permission on the plugin directory<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">chown nagios.nagios \/usr\/local\/nagios<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">chown -R nagios.nagios \/usr\/local\/nagios\/libexec<\/code><\/p>\n<p>Step 11: install xinetd service using<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">yum install xinetd<\/code><\/p>\n<p>Step 12: install NRPE plugin on the remote host machine<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">wget http:\/\/liquidtelecom.dl.sourceforge.net\/project\/nagios\/nrpe-3.x\/nrpe-3.1.1\/nrpe-3.1.1.tar.gz<\/code><\/p>\n<p>NOTE: choose the latest version if you wish<\/p>\n<p>Step 13: unpack NRPE source file using tar command<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">tar xzf nrpe-3.1.1.tar.gz<\/code><\/p>\n<p>Compile and install the NRPE addon<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n<p>Step 14: Go to<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">cd nrpe-3.1.1<\/code><\/p>\n<p>Step 15: edit the file using editor<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">.\/configure<\/code><\/p>\n<p>Step 16: Add make all<\/p>\n<p>install the NRPE plugin daemon, and sample daemon config file<\/p>\n<p>Step 17: Install plugin<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">make install-plugin<\/code><\/p>\n<p>Step 18: Install daemon<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">make install-daemon<\/code><\/p>\n<p>Step 19: make install-daemon-config<\/p>\n<p>Install the NRPE daemon under xinetd as a service<\/p>\n<p>Step 20: <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">make install-xinetd<br \/>\nOR<br \/>\nmake install-inetd<\/code><\/p>\n<p>Now open <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\/etc\/xinetd.d\/nrpe\u00a0<\/code>file and add the localhost and IP address of the Nagios Monitoring Server.<\/p>\n<p>Step 21: only_from = 127.0.0.1 &lt;nagios_ip_address&gt;<\/p>\n<p>Step 22: Next, open \/etc\/services file add the following entry for the NRPE daemon at the bottom of the file.<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"> nrpe 5666\/tcp NRPE\u00a0<\/code><\/p>\n<p>Step 23:Restart the xinetd service<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">service xinetd restart<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>Step 24:Verify NRPE Daemon Locally<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">netstat -at | grep nrpe<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>Step 25:\u00a0Run the \u201ccheck_nrpe\u201d command<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\/usr\/local\/nagios\/libexec\/check_nrpe -H &lt;localhost IP ex:127.0.0.1&gt;<\/code><\/p>\n<p>Note: you will the output as NRPE v3.2.1. Version will change it belongs the tar file which you downloaded.<br \/>\nConfigure Firewall Rules<\/p>\n<p>Step 26: &#8212;&#8212;&#8212;&#8212;&#8211; On RHEL\/CentOS 6\/5 and Fedora &#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">iptables -A INPUT -p tcp -m tcp --dport 5666 -j ACCEPT<\/code><\/p>\n<p>&#8212;&#8212;&#8212;- On RHEL\/CentOS 7 and Fedora 19 Onwards &#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">firewall-cmd --permanent --zone=public --add-port=5666\/tcp<\/code><\/p>\n<p>Run the following command to Save the new iptables rule<\/p>\n<p>Step 27: &#8212;&#8212;&#8212;&#8212;&#8211; On RHEL\/CentOS 6\/5 and Fedora &#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\n<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">service iptables save<\/code><\/p>\n<p>&nbsp;<\/p>\n<p><strong>On Nagios Monitoring Server<\/strong><\/p>\n<p>Step 1: Go to<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">cd \/root\/nagios<\/code><\/p>\n<p>Step 2: Get the software<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">wget http:\/\/liquidtelecom.dl.sourceforge.net\/project\/nagios\/nrpe-3.x\/nrpe-3.1.1\/nrpe-3.1.1.tar.gz<\/code><\/p>\n<p>Step 3: Unpack the NRPE source code tarball.<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">tar xzf nrpe-3.1.1.tar.gz<\/code><\/p>\n<p>Step 4: Go to cd nrpe-3.0<\/p>\n<p>Compile and install the NRPE addon.<\/p>\n<p>Step 5: .\/configure<\/p>\n<p>Step 6: make all<\/p>\n<p>Step 7: make install-daemon<br \/>\nVerify NRPE Daemon Remotely<\/p>\n<p>Step 8: Go to the location<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\/usr\/local\/nagios\/libexec\/check_nrpe -H &lt;remote_linux_ip_address&gt;<\/code><\/p>\n<p>Step 9: Edit using vi editor<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">vi \/usr\/local\/nagios\/etc\/servers\/hostname.cfg<\/code><\/p>\n<p>Note: you have a different host name so change the hostname in the config file.<\/p>\n<p>Step 10: Define the host name and the service in the config file<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">define host {\r\nuse linux-server\r\nhost_name example_01\r\nalias example_01\r\naddress xxx.xxx.xxx.xxx\r\nmax_check_attempts 5\r\ncheck_period 24x7\r\nnotification_interval 30\r\nnotification_period 24x7\r\n}\r\ndefine service {\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description PING\r\ncheck_command check_ping!100.0,20%!500.0,60%\r\n}\r\ndefine service {\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description SSH\r\ncheck_command check_ssh\r\nnotifications_enabled 0\r\n}\r\n\r\ndefine service {\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Nginx\r\ncheck_command check_tcp!80\r\n}\r\n\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Load\r\ncheck_command check_nrpe!check_load\r\n}\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Disk\r\ncheck_command check_nrpe!check_disk\r\n}\r\n\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Processes\r\ncheck_command check_nrpe!check_procs\r\n}\r\n\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Uptime\r\ncheck_command check_nrpe!check_uptime\r\n}\r\n\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description Memory\r\ncheck_command check_nrpe!check_mem\r\n}\r\n\r\ndefine service{\r\nuse generic-service,nagiosgraph\r\nhost_name example_01\r\nservice_description uWSGI\r\ncheck_command check_nrpe!check_uwsgi\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nagios Remote Host Monitoring Dated on :05\/10\/2018 On Remote Host Step 1: Install the compiler gcc,glibc yum install -y gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel Step 2: Add the user for the nagios using useradd nagios Note: If already exist skip this. Step 3: Add the password for&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Nagios Remote Host Monitoring<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[284,225,222,345,309,282],"tags":[433,432],"class_list":{"0":"post-2634","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-linux","8":"category-linux-commandsscripts","9":"category-nagios","10":"category-redhat","11":"category-ubuntu","12":"tag-nagios-monitoring","13":"tag-server-monitoring","14":"h-entry","16":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Nagios Remote Host Monitoring Dated on :05\/10\/2018 On Remote Host Step 1: Install the compiler gcc,glibc yum install -y gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel Step 2: Add the user for the nagios using useradd nagios Note: If already exist skip this. Step 3: Add the password for&hellip; Continue Reading Nagios Remote Host Monitoring\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-09T06:34:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-12T10:16:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Nagios Remote Host Monitoring\",\"datePublished\":\"2018-10-09T06:34:39+00:00\",\"dateModified\":\"2018-10-12T10:16:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/\"},\"wordCount\":410,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Nagios monitoring\",\"Server monitoring\"],\"articleSection\":[\"Centos\",\"Linux\",\"Linux Commands\\\/Scripts\",\"Nagios\",\"Redhat\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-09T06:34:39+00:00\",\"dateModified\":\"2018-10-12T10:16:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/nagios-remote-host-monitoring\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nagios Remote Host Monitoring\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Nagios Remote Host Monitoring Dated on :05\/10\/2018 On Remote Host Step 1: Install the compiler gcc,glibc yum install -y gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel Step 2: Add the user for the nagios using useradd nagios Note: If already exist skip this. Step 3: Add the password for&hellip; Continue Reading Nagios Remote Host Monitoring","og_url":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-09T06:34:39+00:00","article_modified_time":"2018-10-12T10:16:25+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Nagios Remote Host Monitoring","datePublished":"2018-10-09T06:34:39+00:00","dateModified":"2018-10-12T10:16:25+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/"},"wordCount":410,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Nagios monitoring","Server monitoring"],"articleSection":["Centos","Linux","Linux Commands\/Scripts","Nagios","Redhat","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/","url":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-10-09T06:34:39+00:00","dateModified":"2018-10-12T10:16:25+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/nagios-remote-host-monitoring\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Nagios Remote Host Monitoring"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-Gu","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2634","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2634"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2634\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}