{"id":14625,"date":"2025-04-03T17:17:06","date_gmt":"2025-04-03T11:47:06","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14625"},"modified":"2025-04-03T17:19:38","modified_gmt":"2025-04-03T11:49:38","slug":"upgrade-zabbix-6-4-to-7-ubuntu-24","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/","title":{"rendered":"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24"},"content":{"rendered":"\n<p>Zabbix is a powerful open-source monitoring solution used by businesses worldwide to monitor IT infrastructure. With the release of Zabbix 7.0, it&#8217;s time to upgrade your system to take advantage of new features, enhanced performance, and security improvements. In this guide, we\u2019ll walk you through the process to upgrade Zabbix 6.4 to 7 Ubuntu, ensuring a smooth and efficient server upgrade.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-upgrade-to-zabbix-7-0\" style=\"font-size:18px\"><strong>Why Upgrade to Zabbix 7.0?<\/strong><\/h2>\n\n\n\n<p>Zabbix 7.0 introduces several enhancements and new features, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Improved User Interface: A more modern, user-friendly frontend.<\/li>\n\n\n\n<li>Better Performance: Optimizations for handling large environments.<\/li>\n\n\n\n<li>New Features: Improved cloud monitoring, enhanced support for modern databases, and more.<\/li>\n\n\n\n<li>Security Fixes: Patches for security vulnerabilities in previous releases.<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<ul class=\"wp-block-list\"><\/ul>\n<\/div><\/div>\n\n\n\n<p>Before upgrading, make sure you\u2019re familiar with the <a href=\"https:\/\/www.zabbix.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Zabbix<\/mark><\/a> 7.0 changelog to ensure there are no breaking changes that might impact your environment.<\/p>\n\n\n\n<p>Upgrading your Zabbix server from Version 6.4 to 7.0 can be a straightforward process if you follow the proper steps. Before we dive into the upgrade Zabbix 6.4 to 7 Ubuntu process itself, make sure to complete the following pre-upgrade steps:<\/p>\n\n\n\n<p>To prevent new data from being inserted into the database during the upgrade, stop the Zabbix server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl stop zabbix-server<\/code><\/pre>\n\n\n\n<p>If you&#8217;re upgrading the Zabbix proxy, agent, or agent 2, make sure to stop these components as well:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl stop zabbix-proxy\nsystemctl stop zabbix-agent\nsystemctl stop zabbix-agent2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-backup-your-configuration-and-database\" style=\"font-size:18px\"><strong>Backup Your Configuration and Database<\/strong><\/h3>\n\n\n\n<p>It\u2019s crucial to back up your entire Zabbix setup, including configuration files and databases, in case anything goes wrong during the upgrade.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysqldump -u root -p --all-databases &gt; zabbix_backup.sql<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-backup-zabbix-configuration-files\" style=\"font-size:18px\"><strong>Backup Zabbix Configuration Files<\/strong><\/h3>\n\n\n\n<p>Copy all the Zabbix configuration files to a safe location:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cp -r \/etc\/zabbix \/etc\/zabbix_backup\ncp -r \/usr\/share\/zabbix\/  \/etc\/zabbix_backup\ncp -R \/usr\/share\/zabbix-* \/opt\/zabbix-backup\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-uninstall-your-current-zabbix-repository-package\" style=\"font-size:18px\"><strong>Uninstall your current Zabbix repository package<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -Rf \/etc\/apt\/sources.list.d\/zabbix.list<\/code><\/pre>\n\n\n\n<p>Additionally, you might need to manually remove any old Zabbix packages from your working directory (e.g., rm zabbix-release_latest+debian12_all.deb) before downloading the new package. This ensures that the package manager doesn\u2019t reuse an outdated version during the upgrade process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-zabbix-7-0-repository\" style=\"font-size:18px\"><strong>Add Zabbix 7.0 Repository<\/strong><\/h2>\n\n\n\n<p>The first step is to ensure you are using the correct package repositories for Zabbix 7.0.<\/p>\n\n\n\n<p>Download the Zabbix 7.0 repository package:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/repo.zabbix.com\/zabbix\/7.2\/release\/ubuntu\/pool\/main\/z\/zabbix-release\/zabbix-release_latest+ubuntu24.04_all.deb\ndpkg -i zabbix-release_latest+ubuntu24.04_all.deb<\/code><\/pre>\n\n\n\n<p>Type Y (or I) to install the version of the Zabbix repository configuration provided by the package maintainer when prompted.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-enable-mysql-system-variable\" style=\"font-size:18px\"><strong>Enable mysql system variable<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>set global log_bin_trust_function_creators = 1;<\/code><\/pre>\n\n\n\n<p>This variable controls whether function creators need to be explicitly trusted for binary logging.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-upgrade-zabbix-server-and-agent\" style=\"font-size:18px\"><strong>Upgrade Zabbix Server and Agent<\/strong><\/h4>\n\n\n\n<p>With the new repository added, you can upgrade Zabbix server and agent packages.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install --only-upgrade zabbix-server-mysql zabbix-frontend-php zabbix-agent \napt install --only-upgrade zabbix-sql-scripts<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-upgrade-the-zabbix-frontend\" style=\"font-size:18px\"><strong>Upgrade the Zabbix frontend<\/strong><\/h4>\n\n\n\n<p>Next, to upgrade the Zabbix frontend with Apache and restart Apache, run the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install zabbix-apache-conf\nsystemctl restart apache2<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-start-zabbix-server\" style=\"font-size:18px\"><strong>Start zabbix server<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl start zabbix-server<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-verify-the-upgrade\" style=\"font-size:18px\"><strong>Verify the Upgrade<\/strong><\/h4>\n\n\n\n<p>Once everything is restarted, log into the Zabbix frontend and confirm that the upgrade was successful:<\/p>\n\n\n\n<p>Also check with<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dpkg -l | grep -E -i zabbix | sort\nand verify that all are upgraded to version 7.0<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-conclusion\" style=\"font-size:18px\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Upgrade Zabbix 6.4 to 7 Ubuntu to enhance performance, security, and features. By following the steps outlined in this guide, you can complete the upgrade process smoothly and ensure that your monitoring system remains reliable and up-to-date.<\/p>\n\n\n\n<p>Always remember to back up your data before starting the upgrade and to test everything thoroughly after the upgrade is complete.<\/p>\n\n\n\n<p>For expert assistance with Upgrade Zabbix 6.4 to 7 Ubuntu, contact our <a href=\"https:\/\/www.skynats.com\/server-management\/\">support team<\/a> for step-by-step guidance, troubleshooting, and a seamless experience.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Zabbix is a powerful open-source monitoring solution used by businesses worldwide to monitor IT infrastructure. With the release of Zabbix 7.0, it&#8217;s time to upgrade your system to take advantage of new features, enhanced performance, and security improvements. In this guide, we\u2019ll walk you through the process to upgrade Zabbix 6.4 to 7 Ubuntu, ensuring [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[996],"class_list":["post-14625","post","type-post","status-publish","format-standard","hentry","category-blog","tag-upgrade-zabbix-6-4-to-7-ubuntu-24"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Upgrade Zabbix 6.4 to 7 Ubuntu 24 | Step by Step Guide<\/title>\n<meta name=\"description\" content=\"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade\" \/>\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\/upgrade-zabbix-6-4-to-7-ubuntu-24\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24\" \/>\n<meta property=\"og:description\" content=\"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/\" \/>\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-04-03T11:47:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T11:49:38+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\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=\"Sajna VM\" \/>\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\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24\",\"datePublished\":\"2025-04-03T11:47:06+00:00\",\"dateModified\":\"2025-04-03T11:49:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/\"},\"wordCount\":503,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Upgrade Zabbix 6.4 to 7 Ubuntu 24\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/\",\"name\":\"Upgrade Zabbix 6.4 to 7 Ubuntu 24 | Step by Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-04-03T11:47:06+00:00\",\"dateModified\":\"2025-04-03T11:49:38+00:00\",\"description\":\"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/upgrade-zabbix-6-4-to-7-ubuntu-24\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24\"}]},{\"@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\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Upgrade Zabbix 6.4 to 7 Ubuntu 24 | Step by Step Guide","description":"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade","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\/upgrade-zabbix-6-4-to-7-ubuntu-24\/","og_locale":"en_US","og_type":"article","og_title":"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24","og_description":"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade","og_url":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-04-03T11:47:06+00:00","article_modified_time":"2025-04-03T11:49:38+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24","datePublished":"2025-04-03T11:47:06+00:00","dateModified":"2025-04-03T11:49:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/"},"wordCount":503,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Upgrade Zabbix 6.4 to 7 Ubuntu 24"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/","url":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/","name":"Upgrade Zabbix 6.4 to 7 Ubuntu 24 | Step by Step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-04-03T11:47:06+00:00","dateModified":"2025-04-03T11:49:38+00:00","description":"Upgrade Zabbix 6.4 to 7 Ubuntu for better performance and security. Follow our guide or contact support for a seamless upgrade","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/upgrade-zabbix-6-4-to-7-ubuntu-24\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"\u00a0Upgrade Zabbix Server from Version 6.4 to 7.0 in Ubuntu 24"}]},{"@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\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14625","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\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14625"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14625\/revisions"}],"predecessor-version":[{"id":14628,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14625\/revisions\/14628"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14625"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14625"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}