{"id":10513,"date":"2023-03-25T11:53:00","date_gmt":"2023-03-25T06:23:00","guid":{"rendered":"https:\/\/www.skynats.com\/?p=10513"},"modified":"2025-04-10T11:55:43","modified_gmt":"2025-04-10T06:25:43","slug":"install-apache-kafka-on-almalinux-8","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/","title":{"rendered":"Install Apache Kafka on Almalinux 8&nbsp;"},"content":{"rendered":"\n<p>The open-source distributed event streaming technology Apache Kafka is used by businesses to build data pipelines and real-time streaming applications. It is designed to handle data streams with high volume, high throughput, and low latency with effectiveness. The popular Linux distribution Almalinux 8 is used for enterprise-level applications due to its dependability, stability, and security. It is a necessary step in developing a dependable and expandable real-time streaming platform, Although configuring Apache Kafka on Almalinux 8 can be difficult,\u00a0Our <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management<\/a> team will outline the steps to install Apache Kafka on Almalinux 8 in this article.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\"><strong>Prerequisites:<\/strong><\/h3>\n\n\n\n<p>Before installing Apache Kafka on Almalinux 8, there are a few conditions that must be met. These prerequisites ensure a seamless installation and flawless operation of the application. Apache Kafka installation on Almalinux 8 requires the fulfillment of the following prerequisites:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Java<\/strong>: Java 8 or a more recent version is required for Apache Kafka to work. You must make sure that Java is installed on your <a href=\"https:\/\/almalinux.org\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Almalinux<\/mark><\/a> 8 system in light of this. You can check if Java is set up on your system by typing the following command in the terminal:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>java -version <\/code><\/pre>\n\n\n\n<p>If Java isn&#8217;t already installed on your computer, run the following command in the terminal to do so:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install java-1.8.0-openjdk-devel<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li><strong>Using ZooKeeper<\/strong>:<strong> <\/strong>Apache Kafka controls and synchronizes its distributed nodes. Therefore, you must make sure that ZooKeeper is installed on your Almalinux 8 computer. Run the following command in the terminal to check if ZooKeeper is installed on your system:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl status zookeeper<\/code><\/pre>\n\n\n\n<p>If ZooKeeper isn&#8217;t already installed on your computer, run the following command in the terminal to do so:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install zookeeper-server<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li><strong>User Account<\/strong>: The root user should not be used to launch Apache Kafka. You must create a user account for Kafka as a result. To make a Kafka user account, enter the following command in the terminal:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo useradd kafka -m<\/code><\/pre>\n\n\n\n<p>This will grant Kafka a fresh user account with a home directory.<\/p>\n\n\n\n<p>These conditions must be met in order to ensure a trouble-free installation of Apache Kafka on Almalinux 8.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-instructions-to-install-apache-kafka-on-almalinux-8\">Instructions to install Apache Kafka on Almalinux 8\u00a0<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-update-the-system\"><strong>Update the system:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Running the following command will update the system first:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf update<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-install-java\"><strong>Install Java:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Apache Kafka must be run in a Java runtime environment. We must therefore install the Java Development Kit (JDK) on the computer. To install JDK 8, enter the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install java-1.8.0-openjdk-devel<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-download-kafka\"><strong>Download Kafka:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>On the official Apache Kafka website, the Kafka binaries must then be downloaded. We can obtain the most recent edition of Kafka by executing the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install java-1.8.0-openjdk-deve<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-extract-kafka\"><strong>Extract Kafka:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After the download is complete, the Kafka archive needs to be extracted. To execute this step , enter the command shown below:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xzf kafka_2.13-3.0.0.tgz<\/code><\/pre>\n\n\n\n<p>By doing this, the directory kafka 2.13-3.0.0 will be created and used to extract the Kafka archive.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-move-kafka\"><strong>Move Kafka:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Following that, the extracted Kafka directory needs to be moved to the \/usr\/local\/kafka directory. By using the upcoming command, you can run this:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv kafka_2.13-3.0.0 \/usr\/local\/kafka<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-environmental-variable-set\"><strong>Environmental variable set:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To run Kafka commands from any directory, the PATH environment variable must contain the Kafka bin directory. The following line can be added at the end of the file by gaining access to the \/.bashrc directory:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>export PATH=$PATH:\/usr\/local\/kafka\/bin<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-file-exit-and-saving\"><strong>File exit and saving<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Updating the bashrc file<\/li>\n<\/ul>\n\n\n\n<p>Reloading the Bashrc file is necessary to apply the changes we made. To execute this, type the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>source ~\/.bashrc<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-launch-zookeeper\"><strong>Launch ZooKeeper:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Apache Kafka uses ZooKeeper to keep track of and synchronize brokers. Therefore, we must start the ZooKeeper server first, followed by the Kafka server. To start the ZooKeeper server, execute the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>zookeeper-server-start.sh config\/zookeeper.properties<\/code><\/pre>\n\n\n\n<p>Note: You should execute this command from the Kafka directory (\/usr\/local\/kafka).<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-begin-kafka\"><strong>Begin Kafka:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To start the Kafka server, type the following command into a new terminal window.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>kafka-server-start.sh config\/server.properties<\/code><\/pre>\n\n\n\n<p>You should also run this command from the Kafka directory (\/usr\/local\/kafka), keep in mind.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-conclusion\"><strong>Conclusion:<\/strong><\/h4>\n\n\n\n<p>Apache Kafka offers a powerful distributed streaming platform for real-time data pipelines, streaming analytics, and event-driven systems. In this article, we went into great detail on how to install Apache Kafka on AlmaLinux 8. Every step that was necessary, including updates, was discussed.<\/p>\n\n\n\n<p>Our <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Support<\/a> team will help you with any additional questions you may have.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The open-source distributed event streaming technology Apache Kafka is used by businesses to build data pipelines and real-time streaming applications. It is designed to handle data streams with high volume, high throughput, and low latency with effectiveness. The popular Linux distribution Almalinux 8 is used for enterprise-level applications due to its dependability, stability, and security. [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[768,767,72],"class_list":["post-10513","post","type-post","status-publish","format-standard","hentry","category-blog","tag-almalinux-8","tag-apache-kafka","tag-server-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Apache Kafka on Almalinux 8&nbsp; | Skynats<\/title>\n<meta name=\"description\" content=\"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!\" \/>\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.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Apache Kafka on Almalinux 8&nbsp;\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-25T06:23:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-10T06:25:43+00:00\" \/>\n<meta name=\"author\" content=\"joseph\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"joseph\" \/>\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.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/\"},\"author\":{\"name\":\"joseph\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/3f538934e42e9da3ac0a578ce521c211\"},\"headline\":\"Install Apache Kafka on Almalinux 8&nbsp;\",\"datePublished\":\"2023-03-25T06:23:00+00:00\",\"dateModified\":\"2025-04-10T06:25:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/\"},\"wordCount\":681,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"almalinux 8\",\"Apache Kafka\",\"server management\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/\",\"name\":\"Install Apache Kafka on Almalinux 8&nbsp; | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2023-03-25T06:23:00+00:00\",\"dateModified\":\"2025-04-10T06:25:43+00:00\",\"description\":\"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/install-apache-kafka-on-almalinux-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Apache Kafka on Almalinux 8&nbsp;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/3f538934e42e9da3ac0a578ce521c211\",\"name\":\"joseph\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g\",\"caption\":\"joseph\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Apache Kafka on Almalinux 8&nbsp; | Skynats","description":"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!","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.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/","og_locale":"en_US","og_type":"article","og_title":"Install Apache Kafka on Almalinux 8&nbsp;","og_description":"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!","og_url":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2023-03-25T06:23:00+00:00","article_modified_time":"2025-04-10T06:25:43+00:00","author":"joseph","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"joseph","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/"},"author":{"name":"joseph","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/3f538934e42e9da3ac0a578ce521c211"},"headline":"Install Apache Kafka on Almalinux 8&nbsp;","datePublished":"2023-03-25T06:23:00+00:00","dateModified":"2025-04-10T06:25:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/"},"wordCount":681,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["almalinux 8","Apache Kafka","server management"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/","url":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/","name":"Install Apache Kafka on Almalinux 8&nbsp; | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2023-03-25T06:23:00+00:00","dateModified":"2025-04-10T06:25:43+00:00","description":"Learn how to install Apache Kafka on AlmaLinux 8 with our easy-to-follow guide. Get Kafka up and start your installation now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/install-apache-kafka-on-almalinux-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Apache Kafka on Almalinux 8&nbsp;"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/3f538934e42e9da3ac0a578ce521c211","name":"joseph","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3a92c25a8e6fd1fef48aff2f9636f00b5469ab0b566c77793fe867e3f6b6be3e?s=96&d=mm&r=g","caption":"joseph"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/10513","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=10513"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/10513\/revisions"}],"predecessor-version":[{"id":14706,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/10513\/revisions\/14706"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=10513"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=10513"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=10513"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}