{"id":56509,"date":"2020-06-12T16:27:57","date_gmt":"2020-06-12T20:27:57","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=56509"},"modified":"2022-07-05T13:19:37","modified_gmt":"2022-07-05T17:19:37","slug":"how-to-install-apache-tomcat-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/","title":{"rendered":"How to Install Apache Tomcat 8 on CentOS 7"},"content":{"rendered":"\n<p><strong>Apache Tomcat<\/strong> (sometimes simply referred to as <strong>Tomcat<\/strong>) is a popular open-source web server software used to set up Java-based server environments. The technologies used in Tomcat include Java Servlet, Java Server Pages, Java Expression Language, and WebSocket and provides an HTTP server environment ideal for running Java-based applications. In this article, we will outline how to install Tomcat on your CentOS 7 server. Please note, in order to perform the instructions on this guide, you will need <a rel=\"noreferrer noopener\" href=\"https:\/\/www.inmotionhosting.com\/support\/amp\/obtain-root-access\/\" target=\"_blank\">root SSH<\/a> access to your VPS or Dedicated server. <\/p>\n\n\n\n<p>Before you begin, make sure you have <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/vps-hosting\/install-java-on-centos\/\">installed Java<\/a>.<\/p>\n\n\n\n<p>Topics&nbsp;Include:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#install\">Installing Apache Tomcat<\/a><\/li><li><a href=\"#configure\">Configuring Apache Tomcat<\/a><\/li><li><a href=\"#test\">Testing Apache Tomcat<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-warning\">Please note that this article only pertains to Private Cloud and Bare Metal servers. Also, <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/control-web-panel\/apache-tomcat-cwp\/\">Control Web Panel (CWP)<\/a> users can install this in a few clicks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install\">Installing Apache Tomcat<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>First, ensure your machine and all related packages are up-to-date with the following commands:<br><br><pre>sudo yum install epel-release<\/pre><br><pre>sudo yum update -y &amp;&amp; sudo reboot<\/pre><\/li><li>Next, create a <strong>tomcat user<\/strong> and add it to the <strong>tomcat group<\/strong> with the following commands:<br><br><pre>sudo groupadd tomcat<\/pre><br><pre>sudo mkdir \/opt\/tomcat<\/pre><br><pre>sudo useradd -s \/bin\/nologin -g tomcat -d \/opt\/tomcat tomcat<\/pre><\/li><li>Next, change back to the home directory and download the <strong>Tomcat .tar file<\/strong> using the following commands:<br><br><pre>cd ~<\/pre><br><pre>wget https:\/\/www-us.apache.org\/dist\/tomcat\/tomcat-8\/v8.0.33\/bin\/apache-tomcat-8.5.71.tar.gz<\/pre><br>Note: You will want to check the official Apache website for the latest stable release of the Tomcat software. <\/li><\/ol>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Once it has finished downloading, <strong>extract<\/strong> the Tomcat archive using the following command:<br><br><pre>sudo tar -zxvf apache-tomcat-8.0.33.tar.gz -C \/opt\/tomcat --strip-components=1<\/pre><\/li><li>Once the extraction finishes, update the <strong>file permissions<\/strong> with the following commands:<strong><br><\/strong><br><pre>cd \/opt\/tomcat<\/pre><br><pre>sudo chgrp -R tomcat conf<\/pre><br><pre>sudo chmod g+rwx conf<\/pre><br><pre>sudo chmod g+r conf\/*<\/pre><br><pre>sudo chown -R tomcat logs\/ temp\/ webapps\/ work\/<\/pre><br><pre>sudo chgrp -R tomcat bin<\/pre><br><pre>sudo chgrp -R tomcat lib<\/pre><br><pre>sudo chmod g+rwx bin<\/pre><br><pre>sudo chmod g+r bin\/*<\/pre><\/li><li>Next, you will need to set up a <strong>systemd unit file<\/strong> using the following command to open a text editor:<br><br><pre>sudo nano \/etc\/systemd\/system\/tomcat.service<\/pre><\/li><li>With the text editor open, add the following code:<br><br><pre>[Unit]Description=Apache Tomcat Web Application Container<br>After=syslog.target network.target<br><br>[Service]Type=forking<br><br>Environment=JAVA_HOME=\/usr\/lib\/jvm\/jre<br>Environment=CATALINA_PID=\/opt\/tomcat\/temp\/tomcat.pid<br>Environment=CATALINA_HOME=\/opt\/tomcat<br>Environment=CATALINA_BASE=\/opt\/tomcat<br>Environment='CATALINA_OPTS=-Xms512M -Xmx1024M -server -XX:+UseParallelGC'<br>Environment='JAVA_OPTS=-Djava.awt.headless=true -Djava.security.egd=file:\/dev\/.\/urandom'<br><br>ExecStart=\/opt\/tomcat\/bin\/startup.sh<br>ExecStop=\/bin\/kill -15 $MAINPID<br><br>User=tomcat<br>Group=tomcat<br><br>[Install]WantedBy=multi-user.target<\/pre><\/li><li>Press <strong>Crtl + X<\/strong> to save and quit the text editor. <\/li><li>Next, you will need to install and enable the <em>haveged<\/em> utility for security using the following commands:<br><br><pre>sudo yum install haveged<\/pre><br><pre>sudo systemctl start haveged.service<\/pre><br><pre>sudo systemctl enable haveged.service<\/pre><\/li><li>Once that is done, you can start Tomcat and enable it to start on reboot with the following commands:<br><br><pre>sudo systemctl start tomcat.service<\/pre><br><pre>sudo systemctl enable tomcat.service<\/pre><\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configure\">Configuring Apache Tomcat<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Now that Tomcat has been installed, you will need to <strong>configure the firewall<\/strong> to allow browser access using the following commands:<br><br><pre>sudo firewall-cmd --zone=public --permanent --add-port=8080\/tcp<\/pre><br><pre>sudo firewall-cmd --reload<\/pre><\/li><li>In order to start using the Tomcat <strong>Graphical User Interface (GUI)<\/strong>, you will need to configure the users file with a new username and password. In this example, replace <strong>newusername<\/strong> and <strong>newpassword<\/strong> with the username and password you want to use to log in to Tomcat. <br><br><pre>sudo nano \/opt\/tomcat\/conf\/tomcat-users.xml<\/pre><br><strong>Within<\/strong>:<pre>&lt;\/tomcat-users ...&gt;...&lt;\/tomcat-users&gt;<\/pre><strong>Insert<\/strong>:<pre>&lt;user username=\"newusername\" password=\"newpassword\" roles=\"manager-gui,admin-gui\"\/&gt;<\/pre><\/li><li><strong>Restart Tomcat&nbsp;<\/strong><br><br><pre>sudo systemctl restart tomcat.service<\/pre><\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"test\">Testing Apache Tomcat<\/h2>\n\n\n\n<p>To test your Tomcat installation, you can simply visit your server IP followed by :8080. If the installation was successful, you should immediately see the login page. <\/p>\n\n\n<div class=\"jumbotron\">\r\n<p style=\"font-size: 20px;\"><strong>Bare Metal Servers for Maximum Performance<\/strong><\/p>\r\n<p>Get direct hardware access without virtualization overhead. Bare metal servers deliver the highest performance for demanding applications.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>Hardware That's Entirely Yours<br><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>Raw Server Performance<br>\r\n\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>Complete Customization Freedom<\/p>\r\n<p><a class=\"btn btn-primary btn-lg\" href=\"https:\/\/www.inmotionhosting.com\/bare-metal-servers?mktgp=t&irgwc=1&affiliates=5001860&utm_campaign=Jumbotron&utm_source=supportcenter&utm_medium=cta&utm_term=bare-metal-cta1\">Bare Metal Servers<\/a><\/p>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Apache Tomcat (sometimes simply referred to as Tomcat) is a popular open-source web server software used to set up Java-based server environments. The technologies used in Tomcat include Java Servlet, Java Server Pages, Java Expression Language, and WebSocket and provides an HTTP server environment ideal for running Java-based applications. In this article, we will outline<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4360],"tags":[],"class_list":["post-56509","post","type-post","status-publish","format-standard","hentry","category-software"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Apache Tomcat 8 on CentOS 7 | InMotion Hosting<\/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.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-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 Apache Tomcat 8 on CentOS 7 | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Apache Tomcat (sometimes simply referred to as Tomcat) is a popular open-source web server software used to set up Java-based server environments. The technologies used in Tomcat include Java Servlet, Java Server Pages, Java Expression Language, and WebSocket and provides an HTTP server environment ideal for running Java-based applications. In this article, we will outline Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-12T20:27:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-05T17:19:37+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Install Apache Tomcat 8 on CentOS 7\",\"datePublished\":\"2020-06-12T20:27:57+00:00\",\"dateModified\":\"2022-07-05T17:19:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\"},\"wordCount\":418,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\",\"name\":\"How to Install Apache Tomcat 8 on CentOS 7 | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2020-06-12T20:27:57+00:00\",\"dateModified\":\"2022-07-05T17:19:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Apache Tomcat 8 on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Apache Tomcat 8 on CentOS 7 | InMotion Hosting","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.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Apache Tomcat 8 on CentOS 7 | InMotion Hosting","og_description":"Apache Tomcat (sometimes simply referred to as Tomcat) is a popular open-source web server software used to set up Java-based server environments. The technologies used in Tomcat include Java Servlet, Java Server Pages, Java Expression Language, and WebSocket and provides an HTTP server environment ideal for running Java-based applications. In this article, we will outline Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-06-12T20:27:57+00:00","article_modified_time":"2022-07-05T17:19:37+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Install Apache Tomcat 8 on CentOS 7","datePublished":"2020-06-12T20:27:57+00:00","dateModified":"2022-07-05T17:19:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/"},"wordCount":418,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/","name":"How to Install Apache Tomcat 8 on CentOS 7 | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2020-06-12T20:27:57+00:00","dateModified":"2022-07-05T17:19:37+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-apache-tomcat-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install Apache Tomcat 8 on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/56509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=56509"}],"version-history":[{"count":33,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/56509\/revisions"}],"predecessor-version":[{"id":98525,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/56509\/revisions\/98525"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=56509"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=56509"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=56509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}