{"id":11474,"date":"2024-02-29T17:13:50","date_gmt":"2024-02-29T11:43:50","guid":{"rendered":"https:\/\/www.skynats.com\/?p=11474"},"modified":"2025-01-08T20:36:57","modified_gmt":"2025-01-08T15:06:57","slug":"how-to-solve-mysql-error-1130","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/","title":{"rendered":"How to solve: ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; is not allowed to connect to this MySQL server"},"content":{"rendered":"\n<figure class=\"wp-block-image size-medium\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"169\" sizes=\"(max-width: 300px) 100vw, 300px\" src=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg\" alt=\"My SQL error:1130\" class=\"wp-image-11476\" srcset=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg 300w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-1024x576.jpg 1024w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-768x432.jpg 768w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-1200x675.jpg 1200w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error.jpg 1280w\" \/><\/figure>\n\n\n\n<p><strong>Scenario :<\/strong><\/p>\n\n\n\n<p>Getting error 1130 when trying to remotely connect <a href=\"https:\/\/www.mysql.com\/\">MySQL <\/a>server with  ip address 172.xxx.201.xxx from my server 90.xxx.xxx.101 using the Database user \u2018test_123\u2019.&nbsp;<\/p>\n\n\n\n<p>To resolve the above error, first log into the <a href=\"https:\/\/www.skynats.com\/server-management\/\">MySQL <\/a>server in 172.xxx.201.xxx and search for the user test_123, to ensure whether it exists on the server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mysql -u root -p\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql&gt;<strong>SELECT user,host FROM mysql.user WHERE user = 'test_123';<\/strong><\/code><\/pre>\n\n\n\n<p>The above query is used for checking whether the user exists or not and if so, from which host or IP address they have permission to access.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>+----------------+--------------+\n| user           | host         |\n+----------------+--------------+\n| test_123       | localhost    |\n+----------------+--------------+\n<\/code><\/pre>\n\n\n\n<p>So the user can only access the system via localhost. This is why it was unable to login to the server 90.xxx.xxx.101 with this user.<\/p>\n\n\n\n<p>Now we can easily solve error by creating the user with permission to access  MySQL server (172.xxx.201.xxx) from my server (90.xxx.xxx.101)<\/p>\n\n\n\n<p>To do so, create the same user again with the host as 90.xxx.xxx.101:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql&gt; CREATE USER 'test_123'@'90.xxx.xxx.101' IDENTIFIED BY 'password';\n<\/code><\/pre>\n\n\n\n<p>Then, grant privileges to the user using the GRANT PRIVILEGES query.<\/p>\n\n\n\n<p>Here we will be&nbsp; granting all privileges on the database \u201ctest_db1\u201d to the user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql&gt; GRANT ALL PRIVILEGES ON test_db1.* TO 'test_123'@'90.xxx.xxx.101'; \nmysql&gt; FLUSH PRIVILEGES;\n<\/code><\/pre>\n\n\n\n<p>For testing,&nbsp; use the SELECT user,host FROM mysql.user WHERE user = &#8216;test_123&#8217;; query again, Now we could see:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n+----------------+---------------------+\n| user           | host                |\n+----------------+---------------------+\n| test_123       | localhost \t      |\n| test_123       | 90.xxx.xxx.101      |\n+----------------+---------------------+\n<\/code><\/pre>\n\n\n\n<p>Now its showing that the user can access the <a href=\"https:\/\/www.skynats.com\/server-management\/\">MySQL server<\/a> both via localhost and 90.xxx.xxx.101.<\/p>\n\n\n\n<p>We can&nbsp; now able to connect to the <a href=\"https:\/\/www.skynats.com\/server-management\/\">MySQL server<\/a> remotely from 90.xxx.xxx.101 using the Database user \u2018test_123\u2019.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$mysql -h 90.xxx.xxx.101 -u test_123 -p<\/code><\/pre>\n\n\n\n<p><strong>Enter password:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Welcome to the MySQL monitor.  Commands end with ; or \\g.\nYour MySQL connection id is XXXX\nServer version: 5.7.32 MySQL Community Server (GPL)\n\n\nCopyright (c) 2000, 2023, Oracle and\/or its affiliates.\n\nOracle is a registered trademark of Oracle Corporation and\/or its\naffiliates. Other names may be trademarks of their respective\nowners.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nmysql&gt;\n<\/code><\/pre>\n\n\n\n<p>Here&#8217;s how we could fix the ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; which is not allowed to connect to the <a href=\"https:\/\/www.skynats.com\/server-management\/\">MySQL server, <\/a>when trying to access mysql remotely. You could also create the user with the host as \u2018%\u2019, but be aware, this will grant access to the user from &#8220;any remote source&#8221;.<\/p>\n\n\n\n<p>Our&nbsp;<a href=\"https:\/\/www.skynats.com\/blog\/\">Support Team<\/a>&nbsp;is available to help if you encounter any issues or errors.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Scenario : Getting error 1130 when trying to remotely connect MySQL server with ip address 172.xxx.201.xxx from my server 90.xxx.xxx.101 using the Database user \u2018test_123\u2019.&nbsp; To resolve the above error, first log into the MySQL server in 172.xxx.201.xxx and search for the user test_123, to ensure whether it exists on the server. The above query [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,300,250,257,68],"tags":[299,701,46],"class_list":["post-11474","post","type-post","status-publish","format-standard","hentry","category-blog","category-database","category-mssql-server","category-mysql","category-server-management","tag-database","tag-mysql","tag-mysql-server"],"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>MySQL: Error 1130 - Fix Host &#039;90.xxx.xxx.101&#039; Issue<\/title>\n<meta name=\"description\" content=\"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue &amp; regain access to your mysql server\" \/>\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-solve-mysql-error-1130\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to solve: ERROR 1130 (HY000): Host &#039;90.xxx.xxx.101&#039; is not allowed to connect to this MySQL server\" \/>\n<meta property=\"og:description\" content=\"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue &amp; regain access to your mysql server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/\" \/>\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=\"2024-02-29T11:43:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-08T15:06:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\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=\"Sourav AJ\" \/>\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\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to solve: ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; is not allowed to connect to this MySQL server\",\"datePublished\":\"2024-02-29T11:43:50+00:00\",\"dateModified\":\"2025-01-08T15:06:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/\"},\"wordCount\":316,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/mysql-error-300x169.jpg\",\"keywords\":[\"Database\",\"mysql\",\"mysql server\"],\"articleSection\":[\"Blog\",\"Database\",\"MSSQL server\",\"MySQL\",\"server management\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/\",\"name\":\"MySQL: Error 1130 - Fix Host '90.xxx.xxx.101' Issue\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/mysql-error-300x169.jpg\",\"datePublished\":\"2024-02-29T11:43:50+00:00\",\"dateModified\":\"2025-01-08T15:06:57+00:00\",\"description\":\"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue & regain access to your mysql server\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/mysql-error.jpg\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/mysql-error.jpg\",\"width\":1280,\"height\":720,\"caption\":\"My SQL error:1130\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-solve-mysql-error-1130\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to solve: ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; is not allowed to connect to this MySQL 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\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MySQL: Error 1130 - Fix Host '90.xxx.xxx.101' Issue","description":"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue & regain access to your mysql server","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-solve-mysql-error-1130\/","og_locale":"en_US","og_type":"article","og_title":"How to solve: ERROR 1130 (HY000): Host '90.xxx.xxx.101' is not allowed to connect to this MySQL server","og_description":"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue & regain access to your mysql server","og_url":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2024-02-29T11:43:50+00:00","article_modified_time":"2025-01-08T15:06:57+00:00","og_image":[{"url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg","type":"","width":"","height":""}],"author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to solve: ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; is not allowed to connect to this MySQL server","datePublished":"2024-02-29T11:43:50+00:00","dateModified":"2025-01-08T15:06:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/"},"wordCount":316,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg","keywords":["Database","mysql","mysql server"],"articleSection":["Blog","Database","MSSQL server","MySQL","server management"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/","url":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/","name":"MySQL: Error 1130 - Fix Host '90.xxx.xxx.101' Issue","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#primaryimage"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error-300x169.jpg","datePublished":"2024-02-29T11:43:50+00:00","dateModified":"2025-01-08T15:06:57+00:00","description":"Learn how to troubleshoot MySQL error with our guide.Discover effective solutions to resolve the issue & regain access to your mysql server","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#primaryimage","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error.jpg","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/02\/mysql-error.jpg","width":1280,"height":720,"caption":"My SQL error:1130"},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-solve-mysql-error-1130\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to solve: ERROR 1130 (HY000): Host &#8217;90.xxx.xxx.101&#8242; is not allowed to connect to this MySQL 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\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/11474","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\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=11474"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/11474\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=11474"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=11474"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=11474"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}