{"id":11544,"date":"2024-03-07T17:01:22","date_gmt":"2024-03-07T11:31:22","guid":{"rendered":"https:\/\/www.skynats.com\/?p=11544"},"modified":"2025-01-08T20:36:56","modified_gmt":"2025-01-08T15:06:56","slug":"acces-remote-mysql-server-web-phpmyadmin","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/","title":{"rendered":"How to access a Remote MySQL Server through Web using phpMyAdmin"},"content":{"rendered":"\n<figure class=\"wp-block-image size-medium\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"186\" sizes=\"(max-width: 300px) 100vw, 300px\" src=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.jpg\" alt=\"accessing Mysql server through web using phpmyadmin\" class=\"wp-image-11556\" srcset=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.jpg 300w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1.jpg 696w\" \/><\/figure>\n\n\n\n<p>Consider a domain &#8220;example.com&#8221; hosted on server 172.xxx.xxx.31 with the document root \/var\/www\/example.com\/public_html\/ and a MySQL server on another server with IP 80.xxx.xxx.123. There are various options for remotely accessing the MySQL server via a web browser. Let&#8217;s look at how it can be done with phpMyAdmin.<\/p>\n\n\n\n<p>First, we will create a sub directory phpMyAdmin inside the doc root of the domain example.com.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir  \/var\/www\/example.com\/public_html\/phpmyadmin<\/code><\/pre>\n\n\n\n<p>Change the current directory to phpMyAdmin<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#cd \/var\/www\/example.com\/public_html\/phpmyadmin\r<\/code><\/pre>\n\n\n\n<p>Download the latest version of phpMyAdmin from the official website and extract it into the document root directory<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#wget https:\/\/files.phpmyadmin.net\/phpMyAdmin\/5.2.1\/phpMyAdmin-5.2.1-all-languages.zip\r\n\r\n#unzip phpMyAdmin-5.2.1-all-languages.zip\r\n\r\n#cd phpMyAdmin-5.2.1-all-languages\r\n\r<\/code><\/pre>\n\n\n\n<p>Now, move all of the files in the directory to the doc root of phpMyAdmin, which is ;<\/p>\n\n\n\n<p>\/var\/www\/example.com\/public_html\/phpMyAdmin.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mv * \/var\/www\/example.com\/public_html\/phpmyadmin\r<\/code><\/pre>\n\n\n\n<p>Remove the zip file using:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#rm phpMyAdmin-5.2.1-all-languages.zip\r<\/code><\/pre>\n\n\n\n<p>Set appropriate permissions for the phpMyAdmin directory<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#chown -R apache:apache \/var\/www\/example.com\/public_html\/phpmyadmin\r<\/code><\/pre>\n\n\n\n<p>There is no need to modify the apache configuration file because it was already used for the old domain. If you want to make any changes, you can do them in:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim \/etc\/httpd\/conf.d\/example.com\r<\/code><\/pre>\n\n\n\n<p>After making any changes in the apache conf file, always remember to test and restart the service to apply the changes made<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apachectl -t\r\n\r\n#systemctl restart httpd\r\n\r<\/code><\/pre>\n\n\n\n<p>Now go to the modify the phpMyAdmin configuration file,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#cp\/var\/www\/example.com\/public_html\/phpmyadmin\/config.sample.inc.php \/var\/www\/example.com\/public_html\/phpmyadmin\/config.inc.php\r\n\r\n#vim  \/var\/www\/example.com\/public_html\/phpmyadmin\/config.inc.php\r<\/code><\/pre>\n\n\n\n<p>And in the configuration file, find the line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$cfg&#91;'Servers']&#91;$i]&#91;'host'] = 'localhost';\r<\/code><\/pre>\n\n\n\n<p>And modify it as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$cfg&#91;'Servers']&#91;$i]&#91;'host'] = 80.xxx.xxx.123'';\r<\/code><\/pre>\n\n\n\n<p>After making any changes in the apache conf file, always remember to test and restart the service to apply the changes made<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apachectl -t\r\n\r\n#systemctl restart httpd\r<\/code><\/pre>\n\n\n\n<p>Now go to the modify the phpMyAdmin configuration file,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\r\n#cp\/var\/www\/example.com\/public_html\/phpmyadmin\/config.sample.inc.php \/var\/www\/example.com\/public_html\/phpmyadmin\/config.inc.php\r\n\r\n#vim  \/var\/www\/example.com\/public_html\/phpmyadmin\/config.inc.php\r\n\r<\/code><\/pre>\n\n\n\n<p>And in the configuration file, find the line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$cfg&#91;'Servers']&#91;$i]&#91;'host'] = 'localhost';\r<\/code><\/pre>\n\n\n\n<p>And modify it as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$cfg&#91;'Servers']&#91;$i]&#91;'host'] = 80.xxx.xxx.123'';\r<\/code><\/pre>\n\n\n\n<p>After making the changes, save and exit.\u00a0Now, we can access the MySQL server through your web by using the below URL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u201chttp:\/\/example.com\/phpmyadmin\u201d\r<\/code><\/pre>\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>Consider a domain &#8220;example.com&#8221; hosted on server 172.xxx.xxx.31 with the document root \/var\/www\/example.com\/public_html\/ and a MySQL server on another server with IP 80.xxx.xxx.123. There are various options for remotely accessing the MySQL server via a web browser. Let&#8217;s look at how it can be done with phpMyAdmin. First, we will create a sub directory phpMyAdmin [&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,257,772,68],"tags":[701,46,272],"class_list":["post-11544","post","type-post","status-publish","format-standard","hentry","category-blog","category-database","category-mysql","category-mysql-8","category-server-management","tag-mysql","tag-mysql-server","tag-servermanagement"],"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>MySQL Server accessing via phpMyAdmin: step-by-step Guide<\/title>\n<meta name=\"description\" content=\"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide\" \/>\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\/acces-remote-mysql-server-web-phpmyadmin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to access a Remote MySQL Server through Web using phpMyAdmin\" \/>\n<meta property=\"og:description\" content=\"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/\" \/>\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-03-07T11:31:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-08T15:06:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.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\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to access a Remote MySQL Server through Web using phpMyAdmin\",\"datePublished\":\"2024-03-07T11:31:22+00:00\",\"dateModified\":\"2025-01-08T15:06:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/\"},\"wordCount\":299,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/PHP-and-MySQL-web-development-1-1-300x186.jpg\",\"keywords\":[\"mysql\",\"mysql server\",\"servermanagement\"],\"articleSection\":[\"Blog\",\"Database\",\"MySQL\",\"MySQL 8\",\"server management\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/\",\"name\":\"MySQL Server accessing via phpMyAdmin: step-by-step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/PHP-and-MySQL-web-development-1-1-300x186.jpg\",\"datePublished\":\"2024-03-07T11:31:22+00:00\",\"dateModified\":\"2025-01-08T15:06:56+00:00\",\"description\":\"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/PHP-and-MySQL-web-development-1-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/PHP-and-MySQL-web-development-1-1.jpg\",\"width\":696,\"height\":432},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/acces-remote-mysql-server-web-phpmyadmin\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to access a Remote MySQL Server through Web using phpMyAdmin\"}]},{\"@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 Server accessing via phpMyAdmin: step-by-step Guide","description":"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide","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\/acces-remote-mysql-server-web-phpmyadmin\/","og_locale":"en_US","og_type":"article","og_title":"How to access a Remote MySQL Server through Web using phpMyAdmin","og_description":"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide","og_url":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2024-03-07T11:31:22+00:00","article_modified_time":"2025-01-08T15:06:56+00:00","og_image":[{"url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.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\/acces-remote-mysql-server-web-phpmyadmin\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to access a Remote MySQL Server through Web using phpMyAdmin","datePublished":"2024-03-07T11:31:22+00:00","dateModified":"2025-01-08T15:06:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/"},"wordCount":299,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.jpg","keywords":["mysql","mysql server","servermanagement"],"articleSection":["Blog","Database","MySQL","MySQL 8","server management"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/","url":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/","name":"MySQL Server accessing via phpMyAdmin: step-by-step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#primaryimage"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1-300x186.jpg","datePublished":"2024-03-07T11:31:22+00:00","dateModified":"2025-01-08T15:06:56+00:00","description":"Discover how to securely access a remote MySQL server through the web using phpMyAdmin. Unlock the power of MySQL server using our guide","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#primaryimage","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1.jpg","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2024\/03\/PHP-and-MySQL-web-development-1-1.jpg","width":696,"height":432},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/acces-remote-mysql-server-web-phpmyadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to access a Remote MySQL Server through Web using phpMyAdmin"}]},{"@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\/11544","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=11544"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/11544\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=11544"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=11544"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=11544"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}