{"id":613,"date":"2020-09-01T00:22:43","date_gmt":"2020-09-01T00:22:43","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=613"},"modified":"2026-04-24T16:26:08","modified_gmt":"2026-04-24T16:26:08","slug":"how-to-install-apache-tomcat-9-in-centos-7-8","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/","title":{"rendered":"How to install Apache Tomcat 9 in CentOS 7\/8"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p><strong>Apache Tomcat 9<\/strong> is an open-source Java Servlet container developed by the Apache Software Foundation. It is widely used to deploy Java-based web applications such as JSP (JavaServer Pages) and Servlets. Tomcat is lightweight, easy to configure, and commonly used in production and development environments.<\/p>\n\n\n\n<p>This guide explains how to install and configure Tomcat 9 on CentOS 7 and CentOS 8 systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/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 or CentOS 8<\/strong><\/li>\n\n\n\n<li>Root or sudo user access<\/li>\n\n\n\n<li><strong>Java (JDK 8 or later)<\/strong> installed (Tomcat requires Java to run)<\/li>\n\n\n\n<li>Open ports (default Tomcat port: 8080)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">IMPLEMENTATION<\/h3>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Java (JDK)<\/h3>\n\n\n\n<p>You make sure you must have&nbsp;java&nbsp;installed on your Linux server to run Tomcat. If not, install the latest version of java by using the below command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># yum install java-11-openjdk-devel<\/code><\/pre>\n\n\n\n<p>Once Java installed, you can verify the newly installed JAVA version running the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># java -version<\/code><\/pre>\n\n\n\n<p><strong>Sample Output:<\/strong><br><code>Openjdk version \"<strong>11.0.4<\/strong>\" 2019-07-16 LTS <br>OpenJDK Runtime Environment 18.9 (build 11.0.4+11-LTS) <br>OpenJDK 64-Bit Server VM 18.9 (build 11.0.4+11-LTS, mixed mode, sharing)<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Apache Tomcat 9<\/h3>\n\n\n\n<p>Now download the latest version of Apache Tomcat 9, using following commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># cd \/usr\/local\n# wget https:\/\/mirrors.estointernet.in\/apache\/tomcat\/tomcat-9\/v9.0.37\/bin\/apache-tomcat-9.0.37.tar.gz\n# tar -xvf apache-tomcat-9.0.37.tar.gz\n# mv apache-tomcat-9.0.37.tar.gz tomcat9<\/code><\/pre>\n\n\n\n<p><strong>Note<\/strong>: Replace the version number above with the latest version available if it was different.<\/p>\n\n\n\n<p>Before starting the Tomcat Service, configure a&nbsp;<strong>CATALINA_HOME<\/strong>&nbsp;environment variable in your system using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># echo \"export CATALINA_HOME=\"\/usr\/local\/tomcat9\"\" &gt;&gt; ~\/.bashrc\n# source ~\/.bashrc<\/code><\/pre>\n\n\n\n<p>Now we all set to start the tomcat web server using the scripts provided by the tomcat package by using the following command. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># cd \/usr\/local\/tomcat9\/bin\n# .\/startup.sh <\/code><\/pre>\n\n\n\n<p><strong>Sample Output:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>Using CATALINA_BASE:   \/usr\/local\/tomcat9\nUsing CATALINA_HOME:   \/usr\/local\/tomcat9\nUsing CATALINA_TMPDIR: \/usr\/local\/tomcat9\/temp\nUsing JRE_HOME:        \/usr\nUsing CLASSPATH:       \/usr\/local\/tomcat9\/bin\/bootstrap.jar:\/usr\/local\/tomcat9\/bin\/tomcat-juli.jar\nTomcat started.<\/code><\/pre>\n\n\n\n<p>Now to open Tomcat from your browser, go to your IP or domain with the&nbsp;<strong>8080<\/strong>&nbsp;port (because Tomcat will always run on the&nbsp;<strong>8080<\/strong>&nbsp;port) as an example: mydomain.com:8080, replace mydomain.com with your IP or domain.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>http:\/\/mydomain.com:8080\nOR\nhttp:\/\/domain ip address:8080<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/08\/Verify-Apache-Tomcat-1024x643.png\" alt=\"\" class=\"wp-image-5820\"\/><\/figure>\n\n\n\n<p>The default directory for Tomcat files will be in&nbsp;<strong>\/usr\/local\/tomcat9<\/strong>, you can view the configuration files inside the&nbsp;<code>conf<\/code>&nbsp;folder, the main page that you have seen above, when you open your website on the 8080 port is in&nbsp;<strong>\/usr\/local\/tomcat9\/webapps\/ROOT\/<\/strong>.<\/p>\n\n\n\n<p>Thank you!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Installing <strong>Apache Tomcat 9<\/strong> on CentOS 7\/8 is a straightforward process that involves setting up Java, configuring a dedicated user, deploying Tomcat binaries, and creating a systemd service for easy management. Once installed, Tomcat provides a robust and efficient environment for hosting Java web applications. Proper security practices such as restricting access to admin panels and running Tomcat as a non-root user are essential for maintaining a secure production setup.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Apache Tomcat 9 is an open-source Java Servlet container developed by the Apache Software Foundation. It is widely used to deploy Java-based web applications such as JSP (JavaServer Pages) and Servlets. Tomcat is lightweight, easy to configure, and commonly used in production and development environments. This guide explains how to install and configure Tomcat ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/\" 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":[31,3],"tags":[30],"class_list":["post-613","post","type-post","status-publish","format-standard","hentry","category-apache","category-dedicated-hosting","tag-apache-tomcat"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Apache Tomcat 9 in CentOS 7\/8 - 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\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Apache Tomcat 9 in CentOS 7\/8 - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction Apache Tomcat 9 is an open-source Java Servlet container developed by the Apache Software Foundation. It is widely used to deploy Java-based web applications such as JSP (JavaServer Pages) and Servlets. Tomcat is lightweight, easy to configure, and commonly used in production and development environments. This guide explains how to install and configure Tomcat ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-01T00:22:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-24T16:26:08+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/\"},\"author\":{\"name\":\"knowledge-base\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"headline\":\"How to install Apache Tomcat 9 in CentOS 7\\\/8\",\"datePublished\":\"2020-09-01T00:22:43+00:00\",\"dateModified\":\"2026-04-24T16:26:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/\"},\"wordCount\":387,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Verify-Apache-Tomcat-1024x643.png\",\"keywords\":[\"Apache Tomcat\"],\"articleSection\":[\"Apache\",\"Dedicated Hosting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/\",\"name\":\"How to install Apache Tomcat 9 in CentOS 7\\\/8 - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Verify-Apache-Tomcat-1024x643.png\",\"datePublished\":\"2020-09-01T00:22:43+00:00\",\"dateModified\":\"2026-04-24T16:26:08+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Verify-Apache-Tomcat-1024x643.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Verify-Apache-Tomcat-1024x643.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2020\\\/09\\\/01\\\/how-to-install-apache-tomcat-9-in-centos-7-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Apache Tomcat 9 in CentOS 7\\\/8\"}]},{\"@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 Apache Tomcat 9 in CentOS 7\/8 - 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\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/","og_locale":"en_US","og_type":"article","og_title":"How to install Apache Tomcat 9 in CentOS 7\/8 - PheonixSolutions Knowledge-Base","og_description":"Introduction Apache Tomcat 9 is an open-source Java Servlet container developed by the Apache Software Foundation. It is widely used to deploy Java-based web applications such as JSP (JavaServer Pages) and Servlets. Tomcat is lightweight, easy to configure, and commonly used in production and development environments. This guide explains how to install and configure Tomcat ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2020-09-01T00:22:43+00:00","article_modified_time":"2026-04-24T16:26:08+00:00","author":"knowledge-base","twitter_card":"summary_large_image","twitter_misc":{"Written by":"knowledge-base","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/"},"author":{"name":"knowledge-base","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"headline":"How to install Apache Tomcat 9 in CentOS 7\/8","datePublished":"2020-09-01T00:22:43+00:00","dateModified":"2026-04-24T16:26:08+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/"},"wordCount":387,"commentCount":0,"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/08\/Verify-Apache-Tomcat-1024x643.png","keywords":["Apache Tomcat"],"articleSection":["Apache","Dedicated Hosting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/","name":"How to install Apache Tomcat 9 in CentOS 7\/8 - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/08\/Verify-Apache-Tomcat-1024x643.png","datePublished":"2020-09-01T00:22:43+00:00","dateModified":"2026-04-24T16:26:08+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/08\/Verify-Apache-Tomcat-1024x643.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/08\/Verify-Apache-Tomcat-1024x643.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2020\/09\/01\/how-to-install-apache-tomcat-9-in-centos-7-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"How to install Apache Tomcat 9 in CentOS 7\/8"}]},{"@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\/613","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=613"}],"version-history":[{"count":6,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/613\/revisions"}],"predecessor-version":[{"id":3421,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/613\/revisions\/3421"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}