{"id":16350,"date":"2024-10-31T19:27:59","date_gmt":"2024-10-31T19:27:59","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16350"},"modified":"2024-11-02T05:35:51","modified_gmt":"2024-11-02T05:35:51","password":"","slug":"installing-and-configuring-elk-stack-elasticsearch-logstash-kibana","status":"publish","type":"docs","link":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/","title":{"rendered":"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana)"},"content":{"rendered":"\n<p>The ELK Stack (Elasticsearch, Logstash, and Kibana) is a powerful toolset for managing, analyzing, and visualizing log data on a Linux server. Here\u2019s a step-by-step guide to installing and configuring ELK Stack.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Update and Install Prerequisites<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Update your system packages<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<p><strong>  2. Install Java, as it\u2019s required by Elasticsearch:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install openjdk-11-jdk -y<\/code><\/pre>\n\n\n\n<p>  <strong>3. Verify the Java installation:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -version<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Elasticsearch<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Import the Elasticsearch PGP key<\/strong>:<\/li>\n<\/ol>\n\n\n\n<p><strong>Import the Elasticsearch PGP key<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget -qO - https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | sudo apt-key add -<\/code><\/pre>\n\n\n\n<p><strong>Add the Elasticsearch repository<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sh -c 'echo \"deb https:\/\/artifacts.elastic.co\/packages\/8.x\/apt stable main\" > \/etc\/apt\/sources.list.d\/elastic-8.x.list'<\/code><\/pre>\n\n\n\n<p><strong>Install Elasticsearch<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install elasticsearch -y<\/code><\/pre>\n\n\n\n<p><strong>Enable and start Elasticsearch<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable elasticsearch<br>sudo systemctl start elasticsearch<\/code><\/pre>\n\n\n\n<p><strong>Verify Elasticsearch is running<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -X GET \"localhost:9200\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Configure Elasticsearch<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Edit the configuration file<\/strong> to bind Elasticsearch to localhost (if needed, allow remote connections by updating the <code>network.host<\/code>):<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/elasticsearch\/elasticsearch.yml<\/code><\/pre>\n\n\n\n<p>Set:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>network.host: localhost<\/code><\/pre>\n\n\n\n<p>  2. <strong>Restart Elasticsearch<\/strong> to apply changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart elasticsearch<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Install Logstash<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Install Logstash<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install logstash -y<\/code><\/pre>\n\n\n\n<p>   2. <strong>Configure Logstash<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a configuration file for Logstash, specifying the input, filter, and output sections. Here\u2019s an example:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/logstash\/conf.d\/logstash.conf<\/code><\/pre>\n\n\n\n<p><strong>Example content:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>input {\n  beats {\n    port => 5044\n  }\n}\n\nfilter {\n  # Optional filter configurations\n}\n\noutput {\n  elasticsearch {\n    hosts => &#91;\"localhost:9200\"]\n  }\n  stdout { codec => rubydebug }\n}\n<\/code><\/pre>\n\n\n\n<p><strong>3. Enable and start Logstash:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable logstash<br>sudo systemctl start logstash<\/code><\/pre>\n\n\n\n<p><strong>4. Verify Logstash is running:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status logstash<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Install Kibana<\/h3>\n\n\n\n<p><strong>Install Kibana<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install kibana -y<\/code><\/pre>\n\n\n\n<p><strong>Configure Kibana<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the configuration file and set the server host:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/kibana\/kibana.yml<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set Kibana to listen on all network interfaces or keep it limited to localhost:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>server.host: \"localhost\"<\/code><\/pre>\n\n\n\n<p><strong>Enable and start Kibana<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable kibana<br>sudo systemctl start kibana<\/code><\/pre>\n\n\n\n<p><strong>Access Kibana<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open your web browser and navigate to <code>http:\/\/&lt;your_server_ip>:5601<\/code>. You should see the Kibana dashboard.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Configure Firewall for ELK Stack<\/h3>\n\n\n\n<p>To allow external access (if desired), configure the firewall to allow the necessary ports.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Elasticsearch<\/strong> &#8211; typically runs on port <code>9200<\/code>.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 9200\/tcp<\/code><\/pre>\n\n\n\n<p> 2. <strong>Logstash<\/strong> &#8211; default port <code>5044<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 5044\/tcp<\/code><\/pre>\n\n\n\n<p>3. <strong>Kibana<\/strong> &#8211; default port <code>5601<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 5601\/tcp<\/code><\/pre>\n\n\n\n<p>4. <strong>Enable the firewall<\/strong> if it isn\u2019t already enabled:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw enable<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Testing ELK Stack<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Testing Elasticsearch<\/strong>: Check Elasticsearch by sending an HTTP request.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -X GET \"localhost:9200\"<\/code><\/pre>\n\n\n\n<p>  2. Testing Logstash: You can test Logstash by creating a simple input test. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"Hello ELK Stack\" | nc localhost 5044<\/code><\/pre>\n\n\n\n<p>3. <strong>Testing Kibana<\/strong>: Access Kibana from a browser at <code>http:\/\/&lt;your_server_ip>:5601<\/code>. You should see the Kibana dashboard.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8: Set Up Filebeat to Forward Logs (Optional)<\/h3>\n\n\n\n<p>To send log data to the ELK stack, use Filebeat on client machines.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Install Filebeat<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install filebeat -y<\/code><\/pre>\n\n\n\n<p><strong>   2.  Configure Filebeat to send logs to Logstash:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/filebeat\/filebeat.yml<\/code><\/pre>\n\n\n\n<p>Add or modify the output settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>output.logstash:\n   hosts: &#91;\":5044\"]<\/code><\/pre>\n\n\n\n<p>3. <strong>Enable and start Filebeat<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable filebeat<br>sudo systemctl start filebeat<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9: Visualize Data in Kibana<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In Kibana, go to <strong>Management > Index Patterns<\/strong> and create an index pattern to visualize data from Filebeat.<\/li>\n\n\n\n<li>Explore the <strong>Discover<\/strong> section in Kibana to analyze and visualize the logs sent from Filebeat.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Author&#8217;s Final Word<\/h2>\n\n\n\n<p>By following these steps, your ELK stack should be up and running on a Linux server, allowing you to collect, analyze, and visualize log data across your infrastructure<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The ELK Stack (Elasticsearch, Logstash, and Kibana) is a powerful toolset for managing, analyzing, and visualizing log data on a Linux server. Here\u2019s a step-by-step guide to installing and configuring ELK Stack. Step 1: Update and Install Prerequisites 2. Install Java, as it\u2019s required by Elasticsearch: 3. Verify the Java installation: Step 2: Install Elasticsearch [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16350","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":582,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/www.truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/www.truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/www.truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/www.truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/www.truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -<\/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:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -\" \/>\n<meta property=\"og:description\" content=\"The ELK Stack (Elasticsearch, Logstash, and Kibana) is a powerful toolset for managing, analyzing, and visualizing log data on a Linux server. Here\u2019s a step-by-step guide to installing and configuring ELK Stack. Step 1: Update and Install Prerequisites 2. Install Java, as it\u2019s required by Elasticsearch: 3. Verify the Java installation: Step 2: Install Elasticsearch [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-02T05:35:51+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\\\/\",\"name\":\"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2024-10-31T19:27:59+00:00\",\"dateModified\":\"2024-11-02T05:35:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -","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.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/","og_locale":"en_US","og_type":"article","og_title":"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -","og_description":"The ELK Stack (Elasticsearch, Logstash, and Kibana) is a powerful toolset for managing, analyzing, and visualizing log data on a Linux server. Here\u2019s a step-by-step guide to installing and configuring ELK Stack. Step 1: Update and Install Prerequisites 2. Install Java, as it\u2019s required by Elasticsearch: 3. Verify the Java installation: Step 2: Install Elasticsearch [&hellip;]","og_url":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/","article_modified_time":"2024-11-02T05:35:51+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/","url":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/","name":"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana) -","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"datePublished":"2024-10-31T19:27:59+00:00","dateModified":"2024-11-02T05:35:51+00:00","breadcrumb":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/installing-and-configuring-elk-stack-elasticsearch-logstash-kibana\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"Installing and Configuring ELK Stack (Elasticsearch, Logstash, Kibana)"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/16350","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16350"}],"version-history":[{"count":2,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/16350\/revisions"}],"predecessor-version":[{"id":16548,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/16350\/revisions\/16548"}],"wp:attachment":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16350"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16350"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16350"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}