{"id":13296,"date":"2023-10-02T03:22:37","date_gmt":"2023-10-02T07:22:37","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13296"},"modified":"2023-10-02T03:22:41","modified_gmt":"2023-10-02T07:22:41","slug":"how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/","title":{"rendered":"How to Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8"},"content":{"rendered":"\n

Apache Tomcat is a widely-used open-source application server that is essential for running Java-based web applications. If you’re using CentOS<\/a> 8, CentOS 7, or Rocky Linux 8 and need to set up the latest version of Apache Tomcat, this guide is here to help. In this tutorial, we’ll walk you through the step-by-step process of installing Apache Tomcat 10 on your CentOS or Rocky Linux system.<\/p>\n\n\n\n

Prerequisites:<\/h3>\n\n\n\n

Before we start with the installation, make sure you have the following prerequisites:<\/p>\n\n\n\n

    \n
  1. A CentOS 8, CentOS 7, or Rocky Linux 8 server.<\/li>\n\n\n\n
  2. Administrative (sudo) privileges.<\/li>\n\n\n\n
  3. Java Development Kit (JDK) installed. You can install it using the following command:<\/li>\n<\/ol>\n\n\n\n
    $ sudo yum install java<\/code><\/pre>\n\n\n\n

    Step 1: Update Your System<\/h3>\n\n\n\n

    Always begin by ensuring that your system is up to date with the latest packages. Open a terminal and run:<\/p>\n\n\n\n

    $ sudo yum update<\/code><\/pre>\n\n\n\n

    Step 2: Download Apache Tomcat 10<\/h3>\n\n\n\n

    Visit the official Apache Tomcat<\/a> download page to find the latest version of Tomcat 10. Copy the download link for the tar.gz file for your preferred version.<\/p>\n\n\n\n

    cd \/tmp\nwget https:\/\/downloads.apache.org\/tomcat\/tomcat-10\/v10.x.y\/z\/apache-tomcat-10.x.y.tar.gz\n<\/code><\/pre>\n\n\n\n

    Replace 10.x.y<\/code> with the specific version number you want to install.<\/p>\n\n\n\n

    Step 3: Extract Tomcat<\/h3>\n\n\n\n

    Once the download is complete, extract the downloaded Apache<\/a> Tomcat archive:<\/p>\n\n\n\n

    $ tar -xzvf apache-tomcat-10.x.y.tar.gz<\/code><\/pre>\n\n\n\n

    Step 4: Move Tomcat to \/opt Directory<\/h3>\n\n\n\n

    It’s a good practice to move Apache Tomcat to the \/opt<\/code> directory for better organization and system-wide accessibility:<\/p>\n\n\n\n

    $ sudo mv apache-tomcat-10.x.y \/opt\/tomcat<\/code><\/pre>\n\n\n\n

    Step 5: Configure Environment Variables<\/h3>\n\n\n\n

    To ensure that Apache Tomcat runs smoothly, you need to set up environment variables. Create a new file for Tomcat environment variables:<\/p>\n\n\n\n

    $ sudo nano \/etc\/profile.d\/tomcat.sh<\/code><\/pre>\n\n\n\n

    Add the following content to the file, replacing 10.x.y<\/code> with your Tomcat version:<\/p>\n\n\n\n

    $ export CATALINA_HOME="\/opt\/tomcat"\n$ export PATH="$CATALINA_HOME\/bin:$PATH"<\/code><\/pre>\n\n\n\n

    Save the file and exit the text editor.<\/p>\n\n\n\n

    Step 6: Apply the Environment Variables<\/h3>\n\n\n\n

    Apply the environment variables by running:<\/p>\n\n\n\n

    $ source \/etc\/profile.d\/tomcat.sh<\/code><\/pre>\n\n\n\n

    Step 7: Start and Enable Tomcat Service<\/h3>\n\n\n\n

    You can now start Apache Tomcat:<\/p>\n\n\n\n

    $ sudo systemctl start tomcat<\/code><\/pre>\n\n\n\n

    To ensure Tomcat starts automatically at boot, enable it:<\/p>\n\n\n\n

    $ sudo systemctl enable tomcat<\/code><\/pre>\n\n\n\n

    Step 8: Adjust Firewall Rules<\/h3>\n\n\n\n

    If you have a firewall enabled on your server, open the HTTP and HTTPS ports to allow external access to Apache Tomcat:<\/p>\n\n\n\n

    $ sudo firewall-cmd --permanent --zone=public --add-port=8080\/tcp\n$ sudo firewall-cmd --permanent --zone=public --add-port=8443\/tcp\n$ sudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n

    Step 9: Access the Tomcat Manager<\/h3>\n\n\n\n

    You can access the Apache Tomcat Manager using a web browser by navigating to:<\/p>\n\n\n\n

    http:\/\/your_server_ip:8080<\/code><\/pre>\n\n\n\n

    Replace your_server_ip<\/code> with your server’s IP address. You’ll be prompted to enter the Tomcat manager credentials, which are defined in the tomcat-users.xml<\/code> file located in the Tomcat conf<\/code> directory.<\/p>\n\n\n\n

    Conclusion:<\/h3>\n\n\n\n

    You’ve successfully installed the latest Apache Tomcat 10 on your CentOS 8, CentOS 7, or Rocky Linux<\/a> 8 server. You can now deploy your Java<\/a> web applications and enjoy the benefits of this robust application server. If you encounter any issues or need further assistance, refer to the official Apache Tomcat documentation<\/a> or seek help from the Tomcat community.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Apache Tomcat is a widely-used open-source application server that is essential for running Java-based web applications. If you’re using CentOS 8, CentOS 7, or Rocky Linux 8 and need to…<\/p>\n","protected":false},"author":1,"featured_media":13303,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16],"tags":[58,121,327,433,449,1268,531,544,545,1267,591,635,636],"yoast_head":"\nHow do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8<\/title>\n<meta name=\"description\" content=\"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8\" \/>\n<meta property=\"og:description\" content=\"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-02T07:22:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-02T07:22:41+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8\",\"datePublished\":\"2023-10-02T07:22:37+00:00\",\"dateModified\":\"2023-10-02T07:22:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\"},\"wordCount\":422,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg\",\"keywords\":[\"Apache\",\"CentOS\",\"Java\",\"Optimization\",\"Performance\",\"Rocky Linux\",\"Server\",\"Software development\",\"Software Engineering\",\"Tomcat\",\"Tools\",\"Web\",\"Web Applications\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\",\"name\":\"How do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg\",\"datePublished\":\"2023-10-02T07:22:37+00:00\",\"dateModified\":\"2023-10-02T07:22:41+00:00\",\"description\":\"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Apache Tomcat 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8","description":"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8","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":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/","og_locale":"en_US","og_type":"article","og_title":"How do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8","og_description":"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8","og_url":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2023-10-02T07:22:37+00:00","article_modified_time":"2023-10-02T07:22:41+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8","datePublished":"2023-10-02T07:22:37+00:00","dateModified":"2023-10-02T07:22:41+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/"},"wordCount":422,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg","keywords":["Apache","CentOS","Java","Optimization","Performance","Rocky Linux","Server","Software development","Software Engineering","Tomcat","Tools","Web","Web Applications"],"articleSection":["Articles","Guides","How To","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/","url":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/","name":"How do I Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg","datePublished":"2023-10-02T07:22:37+00:00","dateModified":"2023-10-02T07:22:41+00:00","description":"This guide shows you how to install and configure the latest Apache Tomcat 10 on CentOS 8\/7 systems or Rocky Linux 8","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-Apache-Tomcat-10.jpg","width":1280,"height":680,"caption":"Install Apache Tomcat 10"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-apache-tomcat-10-on-centos-8-7-or-rocky-linux-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install Apache Tomcat 10 on CentOS 8\/7 or Rocky Linux 8"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13296"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13296"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13296\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13303"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13296"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13296"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13296"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}