{"id":6019,"date":"2023-02-17T18:31:42","date_gmt":"2023-02-17T13:01:42","guid":{"rendered":"https:\/\/trysiteprice.com\/blog\/?p=6019"},"modified":"2023-02-17T18:31:42","modified_gmt":"2023-02-17T13:01:42","slug":"redhat-centos-install-and-configure-cacti-network-graphing-tool","status":"publish","type":"post","link":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/","title":{"rendered":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool"},"content":{"rendered":"<p>Cacti is a popular network graphing tool that allows you to monitor and graph various metrics about your network devices. Here&#8217;s how to install and configure Cacti on RedHat and CentOS:<\/p>\n<ol>\n<li>Install the necessary packages using the <code>yum<\/code> package manager:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs\">sudo yum install cacti cacti-spine httpd mariadb-server php php-mysqlnd net-snmp net-snmp-utils php-snmp -y<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li>Start the <code>mariadb<\/code> service and configure it to start automatically on boot:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">sudo systemctl start mariadb<br \/>\nsudo systemctl <span class=\"hljs-built_in\">enable<\/span> mariadb<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li>Run the <code>mysql_secure_installation<\/code> script to secure the MariaDB installation and set the root password:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs\">sudo mysql_secure_installation<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li>Create a new MySQL database for Cacti:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-css\">mysql -u root -<span class=\"hljs-selector-tag\">p<\/span><br \/>\nCREATE DATABASE cacti;<br \/>\nGRANT <span class=\"hljs-attribute\">ALL<\/span> ON cacti.* <span class=\"hljs-selector-tag\">TO<\/span> cacti<span class=\"hljs-keyword\">@localhost<\/span> IDENTIFIED BY <span class=\"hljs-string\">'password'<\/span>;<br \/>\nFLUSH PRIVILEGES;<br \/>\nexit;<br \/>\n<\/code><\/div>\n<\/div>\n<p>Replace &#8216;password&#8217; with a strong password of your choice.<\/li>\n<li>Import the default Cacti database schema into the new <code>cacti<\/code> database:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-javascript\">sudo mysql -u cacti -p cacti &lt; <span class=\"hljs-regexp\">\/usr\/<\/span>share\/doc\/cacti\/cacti.<span class=\"hljs-property\">sql<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<p>Enter the password you set for the <code>cacti<\/code> MySQL user in step 4 when prompted.<\/li>\n<li>Edit the Cacti configuration file <code>\/etc\/cacti\/db.php<\/code> and set the MySQL database credentials:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">sudo vi \/etc\/cacti\/db.php<br \/>\n<span class=\"hljs-variable\">$database_type<\/span> = <span class=\"hljs-string\">\"mysql\"<\/span>;<br \/>\n<span class=\"hljs-variable\">$database_default<\/span> = <span class=\"hljs-string\">\"cacti\"<\/span>;<br \/>\n<span class=\"hljs-variable\">$database_hostname<\/span> = <span class=\"hljs-string\">\"localhost\"<\/span>;<br \/>\n<span class=\"hljs-variable\">$database_username<\/span> = <span class=\"hljs-string\">\"cacti\"<\/span>;<br \/>\n<span class=\"hljs-variable\">$database_password<\/span> = <span class=\"hljs-string\">\"password\"<\/span>;<br \/>\n<\/code><\/div>\n<\/div>\n<p>Replace &#8216;password&#8217; with the password you set for the <code>cacti<\/code> MySQL user in step 4.<\/li>\n<li>Edit the Apache configuration file <code>\/etc\/httpd\/conf.d\/cacti.conf<\/code> and add the following lines to allow access to the Cacti web interface from the local network:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-css\">&lt;Directory \/usr\/share\/cacti\/&gt;<br \/>\n  Options +FollowSymLinks<br \/>\n  AllowOverride <span class=\"hljs-attribute\">None<\/span><br \/>\n  <span class=\"hljs-attribute\">Order<\/span> allow,deny<br \/>\n  Allow <span class=\"hljs-selector-tag\">from<\/span> <span class=\"hljs-number\">192.168<\/span>.<span class=\"hljs-number\">0.0<\/span>\/<span class=\"hljs-number\">24<\/span><br \/>\n&lt;\/Directory&gt;<br \/>\n<\/code><\/div>\n<\/div>\n<p>Replace <code>192.168.0.0\/24<\/code> with the IP address range of your local network.<\/li>\n<li>Edit the Cacti configuration file <code>\/etc\/cacti\/cacti.conf<\/code> and set the timezone:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-java\">sudo vi \/etc\/cacti\/cacti.<span class=\"hljs-type\">conf<\/span><br \/>\n<span class=\"hljs-variable\">date_default_timezone<\/span> <span class=\"hljs-operator\">=<\/span> <span class=\"hljs-string\">\"Europe\/London\"<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<p>Replace <code>Europe\/London<\/code> with your timezone.<\/li>\n<li>Start the Cacti and Apache services and configure them to start automatically on boot:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">sudo systemctl start cacti<br \/>\nsudo systemctl <span class=\"hljs-built_in\">enable<\/span> cacti<br \/>\nsudo systemctl start httpd<br \/>\nsudo systemctl <span class=\"hljs-built_in\">enable<\/span> httpd<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li>Open your web browser and go to <code>http:\/\/&lt;cacti-server&gt;\/cacti\/<\/code> to access the Cacti web interface. The default login credentials are <code>admin<\/code> \/ <code>admin<\/code>.<\/li>\n<\/ol>\n<p>That&#8217;s it! You should now be able to use Cacti to monitor and graph various metrics about your network devices.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cacti is a popular network graphing tool that allows you to monitor and graph various metrics about your network devices. Here&#8217;s how to install and configure Cacti on RedHat and CentOS: Install the necessary packages using the yum package manager: sudo yum install cacti cacti-spine httpd mariadb-server php php-mysqlnd net-snmp net-snmp-utils php-snmp -y Start the &#8230; <a title=\"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool\" class=\"read-more\" href=\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\" aria-label=\"Read more about RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-6019","post","type-post","status-publish","format-standard","hentry","category-best-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice<\/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:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice\" \/>\n<meta property=\"og:description\" content=\"Cacti is a popular network graphing tool that allows you to monitor and graph various metrics about your network devices. Here&#8217;s how to install and configure Cacti on RedHat and CentOS: Install the necessary packages using the yum package manager: sudo yum install cacti cacti-spine httpd mariadb-server php php-mysqlnd net-snmp net-snmp-utils php-snmp -y Start the ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"TrySitePrice\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-17T13:01:42+00:00\" \/>\n<meta name=\"author\" content=\"Rahul Sahu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\"},\"author\":{\"name\":\"Rahul Sahu\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\"},\"headline\":\"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool\",\"datePublished\":\"2023-02-17T13:01:42+00:00\",\"dateModified\":\"2023-02-17T13:01:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\"},\"wordCount\":232,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"articleSection\":[\"Best\/Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\",\"name\":\"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\"},\"datePublished\":\"2023-02-17T13:01:42+00:00\",\"dateModified\":\"2023-02-17T13:01:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/trysiteprice.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"name\":\"TrySitePrice\",\"description\":\"Free Website Value Calculator Tool\",\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\",\"name\":\"TrySitePrice\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"contentUrl\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"width\":395,\"height\":268,\"caption\":\"TrySitePrice\"},\"image\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\",\"name\":\"Rahul Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"caption\":\"Rahul Sahu\"},\"sameAs\":[\"https:\/\/trysiteprice.com\/blog\"],\"url\":\"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice","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:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/","og_locale":"en_US","og_type":"article","og_title":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice","og_description":"Cacti is a popular network graphing tool that allows you to monitor and graph various metrics about your network devices. Here&#8217;s how to install and configure Cacti on RedHat and CentOS: Install the necessary packages using the yum package manager: sudo yum install cacti cacti-spine httpd mariadb-server php php-mysqlnd net-snmp net-snmp-utils php-snmp -y Start the ... Read more","og_url":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/","og_site_name":"TrySitePrice","article_published_time":"2023-02-17T13:01:42+00:00","author":"Rahul Sahu","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#article","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/"},"author":{"name":"Rahul Sahu","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4"},"headline":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool","datePublished":"2023-02-17T13:01:42+00:00","dateModified":"2023-02-17T13:01:42+00:00","mainEntityOfPage":{"@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/"},"wordCount":232,"commentCount":0,"publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"articleSection":["Best\/Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/","url":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/","name":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool - TrySitePrice","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/#website"},"datePublished":"2023-02-17T13:01:42+00:00","dateModified":"2023-02-17T13:01:42+00:00","breadcrumb":{"@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/trysiteprice.com\/blog\/redhat-centos-install-and-configure-cacti-network-graphing-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/trysiteprice.com\/blog\/"},{"@type":"ListItem","position":2,"name":"RedHat \/ CentOS Install and Configure Cacti Network Graphing Tool"}]},{"@type":"WebSite","@id":"https:\/\/trysiteprice.com\/blog\/#website","url":"https:\/\/trysiteprice.com\/blog\/","name":"TrySitePrice","description":"Free Website Value Calculator Tool","publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/trysiteprice.com\/blog\/#organization","name":"TrySitePrice","url":"https:\/\/trysiteprice.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","contentUrl":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","width":395,"height":268,"caption":"TrySitePrice"},"image":{"@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4","name":"Rahul Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","caption":"Rahul Sahu"},"sameAs":["https:\/\/trysiteprice.com\/blog"],"url":"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/"}]}},"_links":{"self":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/6019","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/comments?post=6019"}],"version-history":[{"count":1,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/6019\/revisions"}],"predecessor-version":[{"id":6022,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/6019\/revisions\/6022"}],"wp:attachment":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/media?parent=6019"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/categories?post=6019"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/tags?post=6019"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}