{"id":17210,"date":"2026-01-07T15:18:55","date_gmt":"2026-01-07T09:48:55","guid":{"rendered":"https:\/\/www.skynats.com\/?p=17210"},"modified":"2026-01-07T15:18:58","modified_gmt":"2026-01-07T09:48:58","slug":"how-to-install-mailwizz-on-ubuntu-server","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/","title":{"rendered":"How to Install MailWizz on Ubuntu Server"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Email marketing remains one of the most effective digital marketing channels for engaging customers and driving conversions. While many SaaS email marketing platforms exist, self-hosted solutions provide greater control, flexibility, and ownership of data. MailWizz is a powerful self-hosted email marketing application built with PHP and MySQL, and proper mailwizz installation is essential to ensure optimal performance and reliability. It allows businesses to manage subscribers, automate campaigns, and send bulk emails efficiently. MailWizz is a commercial application. You must purchase a valid license key to download and use the software.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Prerequisites<\/strong><\/h3>\n\n\n\n<p>Before starting, ensure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A VPS or dedicated server running <a href=\"https:\/\/ubuntu.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu<\/mark><\/a><\/li>\n\n\n\n<li>SSH access with a user that has sudo privileges<\/li>\n\n\n\n<li>A registered domain name (recommended)<\/li>\n\n\n\n<li>A valid MailWizz license key<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 1: Update system packages<\/strong><\/h2>\n\n\n\n<p>Update your system packages to ensure everything is up to date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: Install the LAMP Stack<\/strong><\/h3>\n\n\n\n<p>MailWizz requires Apache, MySQL, and PHP. Install them using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install apache2 mysql-server php php-mysql php-curl php-json php-gd php-intl php-mbstring php-xml unzip<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 3: Secure and Configure MySQL<\/strong><\/h3>\n\n\n\n<p>Run the MySQL security script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>Follow the prompts to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set a root password<\/li>\n\n\n\n<li>Remove anonymous users<\/li>\n\n\n\n<li>Disable remote root login<\/li>\n\n\n\n<li>Remove test databases<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Create MailWizz Database and User<\/strong><\/h3>\n\n\n\n<p>Log in to MySQL and Run the following SQL commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql\nCREATE DATABASE mailwizz_db;\nCREATE USER 'mailwizz_user'@'localhost' IDENTIFIED BY 'Strong_Password';\nGRANT ALL PRIVILEGES ON mailwizz_db.* TO 'mailwizz_user'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 4: Purchase and Download MailWizz (License Required)<\/strong><\/h2>\n\n\n\n<p>MailWizz cannot be downloaded without a valid license.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Purchase MailWizz from the official website<\/li>\n\n\n\n<li>Log in to your MailWizz customer account.<\/li>\n\n\n\n<li>Download the latest MailWizz ZIP package.<\/li>\n<\/ol>\n\n\n\n<p>Upload the file to your server using SCP, SFTP, or FTP. Example using SCP:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>scp mailwizz.zip user@your_server_ip:\/var\/www\/html\/<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 5: Extract MailWizz Files<\/strong><\/h2>\n\n\n\n<p>Navigate to the web directory and extract the files:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/html<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo unzip mailwizz.zip\nsudo mv mailwizz-* mailwizz<\/code><\/pre>\n\n\n\n<p>Set proper permissions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R www-data:www-data \/var\/www\/html\/mailwizz\nsudo chmod -R 755 \/var\/www\/html\/mailwizz<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 6: Apache Virtual Host Configuration<\/strong><\/h2>\n\n\n\n<p>Create a new Apache configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/apache2\/sites-available\/mailwizz.conf<\/code><\/pre>\n\n\n\n<p>Add the following configuration (update domain name accordingly):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80>\n    ServerName yourdomain.com\n    DocumentRoot \/var\/www\/html\/mailwizz\n\n    &lt;Directory \/var\/www\/html\/mailwizz>\n        AllowOverride All\n        Require all granted\n    &lt;\/Directory>\n\n    ErrorLog ${APACHE_LOG_DIR}\/mailwizz_error.log\n    CustomLog ${APA\n&lt;\/VirtualHost><\/code><\/pre>\n\n\n\n<p>Enable required Apache modules and site:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2enmod rewrite\nsudo a2ensite mailwizz.conf\nsudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p class=\"has-small-font-size\"><strong>Step 7: Final Installation Steps<\/strong><\/p>\n\n\n\n<p>Once all server configurations are complete, open your web browser and navigate to the MailWizz installer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;yourdomain.com\/install\/index.php<\/code><\/pre>\n\n\n\n<p>This will launch the web-based installation wizard. Follow the on-screen instructions to complete the setup, including database configuration, license key verification, and administrator account creation.<\/p>\n\n\n\n<p><strong>Remove the Install Directory<\/strong><\/p>\n\n\n\n<p>After the installation finishes successfully, <strong>you must remove the install directory<\/strong> for security reasons. Run the following command on your server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo rm -rf \/var\/www\/html\/mailwizz\/install<\/code><\/pre>\n\n\n\n<p>Leaving the install folder in place can expose your application to security risks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Access the MailWizz Admin Panel<\/strong><\/h2>\n\n\n\n<p>Once the install directory has been removed, you can access the MailWizz backend (admin panel) using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;yourdomain.com\/backend<\/code><\/pre>\n\n\n\n<p>Log in using the administrator credentials you created during installation to start managing subscribers, campaigns, and email delivery settings.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Installing MailWizz gives you a robust, self-hosted email marketing platform with full control over your data and campaigns. While the setup requires careful configuration, following this guide ensures a smooth and secure installation. Once installed, MailWizz offers powerful tools for managing subscribers, automations, and high-volume email campaigns effectively.<\/p>\n\n\n\n<p>If you need expert help with mailwizz installation on an Ubuntu server or want a secure, optimized setup without errors, partnering with professionals makes all the difference. With reliable <a href=\"https:\/\/www.skynats.com\/linux-server-management\/\">Linux server management services<\/a>, you can ensure proper configuration, performance tuning, security hardening, and ongoing support for your MailWizz environment. Contact an experienced server management team today to get MailWizz installed correctly and running smoothly on your Ubuntu server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Email marketing remains one of the most effective digital marketing channels for engaging customers and driving conversions. While many SaaS email marketing platforms exist, self-hosted solutions provide greater control, flexibility, and ownership of data. MailWizz is a powerful self-hosted email marketing application built with PHP and MySQL, and proper mailwizz installation is essential to [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1010,1207,1206,236],"class_list":["post-17210","post","type-post","status-publish","format-standard","hentry","category-blog","tag-linux-server-management-services","tag-mailwizz","tag-mailwizz-installation","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MailWizz Installation on Ubuntu Server \u2013 Step-by-Step Guide<\/title>\n<meta name=\"description\" content=\"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!\" \/>\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-mailwizz-on-ubuntu-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install MailWizz on Ubuntu Server\" \/>\n<meta property=\"og:description\" content=\"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/\" \/>\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=\"2026-01-07T09:48:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-07T09:48:58+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\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=\"Jishnu V\" \/>\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-mailwizz-on-ubuntu-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Install MailWizz on Ubuntu Server\",\"datePublished\":\"2026-01-07T09:48:55+00:00\",\"dateModified\":\"2026-01-07T09:48:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/\"},\"wordCount\":531,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"linux server management services\",\"mailwizz\",\"mailwizz installation\",\"Ubuntu\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/\",\"name\":\"MailWizz Installation on Ubuntu Server \u2013 Step-by-Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-01-07T09:48:55+00:00\",\"dateModified\":\"2026-01-07T09:48:58+00:00\",\"description\":\"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-mailwizz-on-ubuntu-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install MailWizz on Ubuntu Server\"}]},{\"@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\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MailWizz Installation on Ubuntu Server \u2013 Step-by-Step Guide","description":"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!","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-mailwizz-on-ubuntu-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install MailWizz on Ubuntu Server","og_description":"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2026-01-07T09:48:55+00:00","article_modified_time":"2026-01-07T09:48:58+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Install MailWizz on Ubuntu Server","datePublished":"2026-01-07T09:48:55+00:00","dateModified":"2026-01-07T09:48:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/"},"wordCount":531,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["linux server management services","mailwizz","mailwizz installation","Ubuntu"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/","name":"MailWizz Installation on Ubuntu Server \u2013 Step-by-Step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2026-01-07T09:48:55+00:00","dateModified":"2026-01-07T09:48:58+00:00","description":"Struggling with mailwizz installation on Ubuntu? Follow this proven guide and install MailWizz smoothly today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-mailwizz-on-ubuntu-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install MailWizz on Ubuntu Server"}]},{"@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\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17210","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=17210"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17210\/revisions"}],"predecessor-version":[{"id":17212,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17210\/revisions\/17212"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17210"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}