{"id":3724,"date":"2019-03-06T22:32:59","date_gmt":"2019-03-06T17:02:59","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=3724"},"modified":"2019-03-06T22:45:52","modified_gmt":"2019-03-06T17:15:52","slug":"how-to-set-up-a-monit-to-monitoring-server","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/","title":{"rendered":"How to set up a monit to monitoring server"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">How to set up a monit to monitoring server<\/h4>\n\n\n\n<p><strong>Date : 06\/03\/2019<\/strong><\/p>\n\n\n\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p><strong>Monit<\/strong> is an open source monitoring tool. monit is also used to manage files, programs directories, and even devices to check timestamp changes, size changes, checksum changes, TCP\/IP change, protocol changes, etc. so make use of it your server and get benifit from it.<\/p>\n\n\n\n<p><strong>Usage :<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>system logs monitor.<\/li><li>Health Monitoring on  hardware  such as (hard disk, motherboard, etc) <\/li><li>sshd monitoring.<\/li><li>Check system load, SWAP, RAM usage. <\/li><li>Check server status (offline\/online)<\/li><\/ol>\n\n\n\n<ul class=\"wp-block-gallery columns-1 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"250\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png\" alt=\"\" data-id=\"3728\" data-link=\"https:\/\/blog.pheonixsolutions.com\/?attachment_id=3728\" class=\"wp-image-3728\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/03\/monitoring2.png 250w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/03\/monitoring2-150x150.png 150w\" sizes=\"auto, (max-width: 250px) 100vw, 250px\" \/><\/figure><\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>\ufeffStep by step procedure as follows:<\/strong><\/h4>\n\n\n\n<p><strong>1. Download Monit<\/strong><br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># sudo rpm -ivh https: \/\/dl.fedoraproject .org\/pub\/epel\/epel-release-latest-7.noarch.rpm<\/code><\/pre>\n\n\n\n<p><strong>2. Install Monit<\/strong><\/p>\n\n\n\n<p>Download and then install it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># yum install monit<\/code><\/pre>\n\n\n\n<p><strong>3. Enable and start Monit<\/strong><\/p>\n\n\n\n<p>After installed  then  enable and start it, because it is the foremost step <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl enable monit\n\n# sytemctl start monit\ufeff<\/code><\/pre>\n\n\n\n<p><strong>4. Check status<\/strong><\/p>\n\n\n\n<p>Then check the status, whether it is started properly or not.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># monit status<\/code><\/pre>\n\n\n\n<p><strong>5. Configuring Monit<\/strong><br>By default, Monit is configured to <strong>check a server every 30 seconds<\/strong>. We can alter this to any interval of time required. <br><br>In the example below, I have set it to <strong> 60 seconds.<\/strong><\/p>\n\n\n\n<p>To edit  the Monit config file go  to <em>\/etc\/monit.conf<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/etc\/monitrc\n\nset daemon 60\ufeff<\/code><\/pre>\n\n\n\n<p>Now let\u2019s setup Monit to work on port 2812:<\/p>\n\n\n\n<p>First open the configuration file at \/etc\/monit.conf<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vi \/etc\/monit.conf\ufeff<\/code><\/pre>\n\n\n\n<p><strong>Next, from the existing settings:<\/strong><br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>set httpd port 2812\nuse address localhost\nallow localhost\n\nallow admin:monit\nallow @monit\n\nallow @users readonly<\/code><\/pre>\n\n\n\n<p><strong>Change to your own usage settings:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>set httpd port 2812\nallow 0.0.0.0\/0.0.0.0\nallow admin:monit<\/code><\/pre>\n\n\n\n<p>Here, username is&nbsp;<em>admin<\/em>&nbsp;and password is&nbsp;<em>monit<\/em>. After you change to settings above, Monit will listen to port 2812. The admin user can access the web interface via any network.<\/p>\n\n\n\n<p>Finally <strong>restart<\/strong> Monit to make changes effective:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># restart monit.service\ufeff<\/code><\/pre>\n\n\n\n<p>Then, open your web browser and type in http:\/\/your-ip-address:2812 to access web interface in your desired browser.<\/p>\n\n\n\n<p><strong>6. Monitor Apache with Monit<\/strong><br>We can also add other services to the monitoring system. As usual, edit the configuration file is located at<strong> \/etc\/monit.conf<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>check process apache with pidfile \/var\/run\/httpd.pid\nstart program = \u201c\/etc\/init.d\/httpd start\u201d with timeout 66 seconds\nstop program = \u201c\/etc\/init.d\/httpd stop\u201d<\/code><\/pre>\n\n\n\n<p>Example of adding apache:<br><\/p>\n\n\n\n<p>Then restart monit. <\/p>\n\n\n\n<p>You can then check monit\u2019s summary by typing the command&nbsp;<em><strong>monit summary<\/strong><\/em>&nbsp;and you will see a process called \u2018<strong>apache\u2019 running.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># monit summary<\/code><\/pre>\n\n\n\n<p>7.<strong> Add monitoring for syslog.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>check process syslogd with pidfile \/var\/run\/syslogd.pid\nstart program = \"\/usr\/bin\/systemctl start rsyslog.service\u201d\nstop program = \"\/usr\/bin\/systemctl stop rsyslog.service\u201d<\/code><\/pre>\n\n\n\n<p>Reload Monit to  see the changes quick and effective<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># monit reload<\/code><\/pre>\n\n\n\n<p>Thanks for using pheonix solutions.<\/p>\n\n\n\n<p>You find this tutorial helpful? Share with your friends to keep it alive.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to set up a monit to monitoring server Date : 06\/03\/2019 Introduction Monit is an open source monitoring tool. monit is also used to manage files, programs directories, and even devices to check timestamp changes, size changes, checksum changes, TCP\/IP change, protocol changes, etc. so make use of it&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to set up a monit to monitoring server<\/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,303,224],"tags":[571,573,574,575,572],"class_list":{"0":"post-3724","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-devops","8":"category-server-hardening","9":"tag-monit","10":"tag-monitor-database-server","11":"tag-monitor-syslog","12":"tag-monitor-system-performance","13":"tag-monitor-webserver","14":"h-entry","16":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - 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\/how-to-set-up-a-monit-to-monitoring-server\/\" \/>\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=\"How to set up a monit to monitoring server Date : 06\/03\/2019 Introduction Monit is an open source monitoring tool. monit is also used to manage files, programs directories, and even devices to check timestamp changes, size changes, checksum changes, TCP\/IP change, protocol changes, etc. so make use of it&hellip; Continue Reading How to set up a monit to monitoring server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/\" \/>\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=\"2019-03-06T17:02:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-06T17:15:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to set up a monit to monitoring server\",\"datePublished\":\"2019-03-06T17:02:59+00:00\",\"dateModified\":\"2019-03-06T17:15:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/\"},\"wordCount\":356,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/monitoring2.png\",\"keywords\":[\"Monit\",\"monitor database server\",\"monitor syslog\",\"monitor system performance\",\"Monitor webserver\"],\"articleSection\":[\"Centos\",\"Devops\",\"Server Hardening\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/monitoring2.png\",\"datePublished\":\"2019-03-06T17:02:59+00:00\",\"dateModified\":\"2019-03-06T17:15:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/monitoring2.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/monitoring2.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-set-up-a-monit-to-monitoring-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up a monit to monitoring server\"}]},{\"@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\/how-to-set-up-a-monit-to-monitoring-server\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to set up a monit to monitoring server Date : 06\/03\/2019 Introduction Monit is an open source monitoring tool. monit is also used to manage files, programs directories, and even devices to check timestamp changes, size changes, checksum changes, TCP\/IP change, protocol changes, etc. so make use of it&hellip; Continue Reading How to set up a monit to monitoring server","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2019-03-06T17:02:59+00:00","article_modified_time":"2019-03-06T17:15:52+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to set up a monit to monitoring server","datePublished":"2019-03-06T17:02:59+00:00","dateModified":"2019-03-06T17:15:52+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/"},"wordCount":356,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png","keywords":["Monit","monitor database server","monitor syslog","monitor system performance","Monitor webserver"],"articleSection":["Centos","Devops","Server Hardening"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png","datePublished":"2019-03-06T17:02:59+00:00","dateModified":"2019-03-06T17:15:52+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/03\/monitoring2.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-set-up-a-monit-to-monitoring-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set up a monit to monitoring server"}]},{"@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-Y4","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3724","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=3724"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3724\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=3724"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=3724"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=3724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}