{"id":14224,"date":"2025-02-07T12:08:58","date_gmt":"2025-02-07T06:38:58","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14224"},"modified":"2025-02-07T12:09:01","modified_gmt":"2025-02-07T06:39:01","slug":"how-to-install-apache-airflow-on-ubuntu-24-04","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/","title":{"rendered":"How to Install Apache Airflow on Ubuntu 24.04"},"content":{"rendered":"\n<p>Apache Airflow is a powerful open-source tool designed for orchestrating complex workflows and data pipelines. It enables you to programmatically schedule and monitor workflows, making it perfect for automating tasks like data processing and machine learning pipelines. With dynamic pipeline generation, robust scheduling, and monitoring features, Airflow has become one of the top tools in the data engineering field. To get started, install Apache Airflow on Ubuntu 24.04 and leverage its capabilities for streamlined workflow automation.<\/p>\n\n\n\n<p><strong>Prerequisites:<\/strong><\/p>\n\n\n\n<p>An Ubuntu 24.04 instance has at least 4 GB of RAM.<\/p>\n\n\n\n<p>A domain(skynats.example.com) with an A record pointing to the instance\u2019s IP address.<\/p>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Step 1: Update Your System<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Step 2: Verify Python Installation<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python3 --version<\/code><\/pre>\n\n\n\n<p>If its not installed, then run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install python3<\/code><\/pre>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Step 3: Install Required Packages<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt-get install build-essential libpq-dev python3-dev<\/code><\/pre>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Step 4: Create a Virtual Environment<\/strong><\/p>\n\n\n\n<p>Create a new Python virtual environment called airflow_env:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python3 -m venv airflow_env<\/code><\/pre>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Step 5: Activate the Virtual Environment<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>source ~\/airflow_env\/bin\/activate<\/code><\/pre>\n\n\n\n<p>Once activated, your prompt should change to (airflow_env).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-6-install-apache-airflow-with-postgresql-support\" style=\"font-size:18px\">Step 6: Install Apache Airflow with PostgreSQL Support<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install apache-airflow&#91;postgres] psycopg2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-7-install-postgresql\" style=\"font-size:18px\">Step 7: Install PostgreSQL<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install postgresql postgresql-contrib \nsudo systemctl start postgresql<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-8-configure-the-postgresql-for-airflow\" style=\"font-size:18px\">Step 8: Configure the PostgreSQL for Airflow<\/h2>\n\n\n\n<p>Access the <a href=\"https:\/\/www.postgresql.org\/\">PostgreSQL<\/a> console:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres psql<\/code><\/pre>\n\n\n\n<p>Inside the PostgreSQL console, create a new user for Airflow and set the password:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE USER airflow PASSWORD 'yourpassword'; <\/code><\/pre>\n\n\n\n<p>&#8212; Replace &#8216;yourpassword&#8217; with your desired password.Grant the new user full privileges on all tables in the public schema:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO airflow;<\/code><\/pre>\n\n\n\n<p>Create a new database for Airflow:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE airflowdb;<\/code><\/pre>\n\n\n\n<p>Grant the Airflow user ownership of the database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ALTER DATABASE airflowdb OWNER TO airflow;<\/code><\/pre>\n\n\n\n<p>Grant the Airflow user all privileges on the public schema and exit PostgreSQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>GRANT ALL ON SCHEMA public TO airflow; \nexit;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-9-modify-the-airflow-configuration\" style=\"font-size:18px\">Step 9: Modify the Airflow Configuration<\/h2>\n\n\n\n<p>If you don\u2019t see your Airflow installation directory, initialize the database and start the scheduler to generate the necessary directories:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>airflow db init; airflow scheduler<\/code><\/pre>\n\n\n\n<p>Stop the scheduler using CTRL+C, then open the airflow.cfg file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano ~\/airflow\/airflow.cfg<\/code><\/pre>\n\n\n\n<p>Find the following lines and modify them:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>executor = LocalExecutor \nsql_alchemy_conn = postgresql+psycopg2:\/\/airflow:YourStrongPassword@localhost\/airflowdb<\/code><\/pre>\n\n\n\n<p>Replace Your StrongPassword with the password you set earlier for the PostgreSQL airflow user. Save and close the file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-10-initialize-airflow-s-metadata-database\" style=\"font-size:18px\">Step 10: Initialize Airflow\u2019s Metadata Database<\/h2>\n\n\n\n<p>Apply the configuration changes by initializing the Airflow metadata database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>airflow db init<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-11-create-an-admin-user-for-airflow\" style=\"font-size:18px\">Step 11: Create an Admin User for Airflow<\/h2>\n\n\n\n<p>Create an administrative user for accessing the Apache Airflow UI. Replace skynats with your desired username: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>airflow users create \\\n  --username skynats \\ \n --password yourSuperSecretPassword \\ \n --firstname Skynats \\ \n --lastname User \\ \n --role Admin \\ \n --email yourmail@gmail.com<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-12-start-the-airflow-web-server-and-scheduler\" style=\"font-size:18px\">Step 12: Start the Airflow Web Server and Scheduler<\/h4>\n\n\n\n<p>Start the Airflow web server on port 8080 in the background and redirect logs to a file. Start the Airflow scheduler in the background and redirect logs to another file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nohup airflow webserver -p 8080 > webserver.log 2>&amp;1 &amp;\nnohup airflow scheduler > scheduler.log 2>&amp;1 &amp;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-13-configure-nginx-as-a-reverse-proxy\" style=\"font-size:18px\">Step 13: Configure Nginx as a Reverse Proxy<\/h4>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-14-access-the-airflow-ui\" style=\"font-size:18px\">Step 14: Access the Airflow UI<\/h2>\n\n\n\n<p>Open your browser and navigate to your domain (skynats.example.com). You should be greeted by the Apache Airflow login page. Use the credentials you created earlier to log in.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-15-secure-apache-airflow-with-ssl-certificates\" style=\"font-size:18px\">Step 15: Secure Apache Airflow with SSL Certificates<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-16-now-create-and-run-dags-using-apache-airflow\" style=\"font-size:18px\">Step 16: Now create and run DAGs using Apache Airflow.<\/h4>\n\n\n\n<p>Navigate to the Airflow web interface, locate your dags, enable it, and manually trigger it. You can monitor the DAG&#8217;s execution through the Graph View and Event Log.<\/p>\n\n\n\n<p>If you need assistance or encounter any issues while following the steps to install Apache Airflow on Ubuntu 24.04, feel free to reach out to our support team. Our experts are ready to provide guidance and ensure a smooth installation process. <a href=\"https:\/\/www.skynats.com\/contact-us\/\">Contact us<\/a> today for professional support and get the help you need to successfully set up Apache Airflow on your Ubuntu system!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Apache Airflow is a powerful open-source tool designed for orchestrating complex workflows and data pipelines. It enables you to programmatically schedule and monitor workflows, making it perfect for automating tasks like data processing and machine learning pipelines. With dynamic pipeline generation, robust scheduling, and monitoring features, Airflow has become one of the top tools in [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[799,960,899],"class_list":["post-14224","post","type-post","status-publish","format-standard","hentry","category-blog","tag-apache-airflow","tag-install-apache-airflow-on-ubuntu-24-04","tag-ubuntu-24-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Apache Airflow on Ubuntu 24.04 | Skynats<\/title>\n<meta name=\"description\" content=\"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!\" \/>\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\/how-to-install-apache-airflow-on-ubuntu-24-04\/\" \/>\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 Airflow on Ubuntu 24.04\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/\" \/>\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=\"2025-02-07T06:38:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-07T06:39:01+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\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=\"Merin John\" \/>\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\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to Install Apache Airflow on Ubuntu 24.04\",\"datePublished\":\"2025-02-07T06:38:58+00:00\",\"dateModified\":\"2025-02-07T06:39:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/\"},\"wordCount\":524,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"apache airflow\",\"Install Apache Airflow on Ubuntu 24.04\",\"Ubuntu 24.04\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/\",\"name\":\"How to Install Apache Airflow on Ubuntu 24.04 | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-02-07T06:38:58+00:00\",\"dateModified\":\"2025-02-07T06:39:01+00:00\",\"description\":\"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-apache-airflow-on-ubuntu-24-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Apache Airflow on Ubuntu 24.04\"}]},{\"@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\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Apache Airflow on Ubuntu 24.04 | Skynats","description":"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!","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\/how-to-install-apache-airflow-on-ubuntu-24-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Apache Airflow on Ubuntu 24.04","og_description":"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-02-07T06:38:58+00:00","article_modified_time":"2025-02-07T06:39:01+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to Install Apache Airflow on Ubuntu 24.04","datePublished":"2025-02-07T06:38:58+00:00","dateModified":"2025-02-07T06:39:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/"},"wordCount":524,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["apache airflow","Install Apache Airflow on Ubuntu 24.04","Ubuntu 24.04"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/","name":"How to Install Apache Airflow on Ubuntu 24.04 | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-02-07T06:38:58+00:00","dateModified":"2025-02-07T06:39:01+00:00","description":"Learn how to install Apache Airflow on Ubuntu 24.04 with this step-by-step guide. Get started now with easy instructions!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-apache-airflow-on-ubuntu-24-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Apache Airflow on Ubuntu 24.04"}]},{"@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\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14224","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\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14224"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14224\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14224"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14224"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}