{"id":396,"date":"2020-07-16T09:17:33","date_gmt":"2020-07-16T09:17:33","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=396"},"modified":"2026-04-17T04:59:59","modified_gmt":"2026-04-17T04:59:59","slug":"how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/","title":{"rendered":"How to Install Nagios Plugins and NRPE Agent on CentOS 7"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Nagios is a powerful monitoring tool used to track system performance, services, and network resources. By installing Nagios Plugins and the NRPE (Nagios Remote Plugin Executor) agent on CentOS 7, you can monitor remote Linux servers efficiently. NRPE allows the Nagios server to execute plugins on remote hosts and collect system metrics such as CPU load, memory usage, disk space, and running processes.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before starting the installation, ensure the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running <strong>CentOS 7<\/strong><\/li>\n\n\n\n<li>Root or sudo access<\/li>\n\n\n\n<li>Internet connectivity to download packages<\/li>\n\n\n\n<li>EPEL repository enabled (required for NRPE and plugins)<\/li>\n\n\n\n<li>Firewall access to allow NRPE port (<strong>5666<\/strong>)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Implementation<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Install EPEL Repository<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install epel-release -y<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Install NRPE Agent<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install nrpe -y<\/pre>\n\n\n\n<p>Verify installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nrpe -V<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Install Nagios Plugins<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">yum install nagios-plugins{load,http,users,procs,disk,swap,nrpe,uptime} -y<\/pre>\n\n\n\n<p>Check installed plugins:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ls \/usr\/lib64\/nagios\/plugins\/<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: (Optional) Install check_mem Plugin<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">chmod +x \/usr\/lib64\/nagios\/plugins\/check_mem<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Configure NRPE<\/strong><\/h3>\n\n\n\n<p>Edit configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">vim \/etc\/nagios\/nrpe.cfg<\/pre>\n\n\n\n<p>Add\/verify:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">command[check_users]=\/usr\/lib64\/nagios\/plugins\/check_users -w 5 -c 10<br>command[check_load]=\/usr\/lib64\/nagios\/plugins\/check_load -r -w 8.0,7.5,7.0 -c 11.0,10.0,9.0<br>command[check_disk]=\/usr\/lib64\/nagios\/plugins\/check_disk -w 15% -c 10% \/<br>command[check_mem]=\/usr\/lib64\/nagios\/plugins\/check_mem -w 75% -c 90%<br>command[check_total_procs]=\/usr\/lib64\/nagios\/plugins\/check_procs -w 300 -c 400<br>command[check_swap]=\/usr\/lib64\/nagios\/plugins\/check_swap -w 10 -c 5<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 6: Configure Firewall<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --add-service=nrpe --permanent<br>firewall-cmd --reload<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 7: Start and Enable NRPE<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start nrpe<br>systemctl enable nrpe<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 8: Verify NRPE Port<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">ss -altn | grep 5666<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 9: Test NRPE Commands<\/strong><\/h3>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/lib64\/nagios\/plugins\/check_nrpe -H 127.0.0.1 -c check_load<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>By completing the above steps, Nagios Plugins and the NRPE agent are successfully installed and configured on CentOS 7. This setup enables remote monitoring of critical system metrics such as CPU load, memory usage, disk space, and processes. With NRPE properly configured, your Nagios server can efficiently monitor and manage the health and performance of remote systems.<audio autoplay=\"\"><\/audio><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Nagios is a powerful monitoring tool used to track system performance, services, and network resources. By installing Nagios Plugins and the NRPE (Nagios Remote Plugin Executor) agent on CentOS 7, you can monitor remote Linux servers efficiently. NRPE allows the Nagios server to execute plugins on remote hosts and collect system metrics such as ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3],"tags":[23,24],"class_list":["post-396","post","type-post","status-publish","format-standard","hentry","category-dedicated-hosting","tag-nagios","tag-server-monitor"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Nagios Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base<\/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\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/\" \/>\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 Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction Nagios is a powerful monitoring tool used to track system performance, services, and network resources. By installing Nagios Plugins and the NRPE (Nagios Remote Plugin Executor) agent on CentOS 7, you can monitor remote Linux servers efficiently. NRPE allows the Nagios server to execute plugins on remote hosts and collect system metrics such as ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-16T09:17:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-17T04:59:59+00:00\" \/>\n<meta name=\"author\" content=\"knowledge-base\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"knowledge-base\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/\"},\"author\":{\"name\":\"knowledge-base\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"headline\":\"How to Install Nagios Plugins and NRPE Agent on CentOS 7\",\"datePublished\":\"2020-07-16T09:17:33+00:00\",\"dateModified\":\"2026-04-17T04:59:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/\"},\"wordCount\":214,\"commentCount\":0,\"keywords\":[\"nagios\",\"Server monitor\"],\"articleSection\":[\"Dedicated Hosting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/\",\"name\":\"How to Install Nagios Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"datePublished\":\"2020-07-16T09:17:33+00:00\",\"dateModified\":\"2026-04-17T04:59:59+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/07\\\/16\\\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Nagios Plugins and NRPE Agent on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\",\"name\":\"knowledge-base\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"caption\":\"knowledge-base\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/knowledge-base\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Nagios Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base","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\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Nagios Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base","og_description":"Introduction Nagios is a powerful monitoring tool used to track system performance, services, and network resources. By installing Nagios Plugins and the NRPE (Nagios Remote Plugin Executor) agent on CentOS 7, you can monitor remote Linux servers efficiently. NRPE allows the Nagios server to execute plugins on remote hosts and collect system metrics such as ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2020-07-16T09:17:33+00:00","article_modified_time":"2026-04-17T04:59:59+00:00","author":"knowledge-base","twitter_card":"summary_large_image","twitter_misc":{"Written by":"knowledge-base","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/"},"author":{"name":"knowledge-base","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"headline":"How to Install Nagios Plugins and NRPE Agent on CentOS 7","datePublished":"2020-07-16T09:17:33+00:00","dateModified":"2026-04-17T04:59:59+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/"},"wordCount":214,"commentCount":0,"keywords":["nagios","Server monitor"],"articleSection":["Dedicated Hosting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/","name":"How to Install Nagios Plugins and NRPE Agent on CentOS 7 - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"datePublished":"2020-07-16T09:17:33+00:00","dateModified":"2026-04-17T04:59:59+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/07\/16\/how-to-install-nagios-plugins-and-nrpe-agent-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"How to Install Nagios Plugins and NRPE Agent on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b","name":"knowledge-base","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","caption":"knowledge-base"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/knowledge-base\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/396","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=396"}],"version-history":[{"count":9,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/396\/revisions"}],"predecessor-version":[{"id":3352,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/396\/revisions\/3352"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=396"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=396"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=396"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}