{"id":2070,"date":"2024-04-15T12:30:00","date_gmt":"2024-04-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2070"},"modified":"2024-03-25T06:47:27","modified_gmt":"2024-03-25T11:47:27","slug":"fix-mysql-cant-connect-to-server-issues","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/fix-mysql-cant-connect-to-server-issues\/","title":{"rendered":"How to Fix MySQL Can&#8217;t Connect to Server Issues"},"content":{"rendered":"\n<div id=\"linux-3397322070\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Last month, we showed you how to resolve the &#8220;<a href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-fix-mysql-cant-connect-to-local-server\" target=\"_blank\" rel=\"noreferrer noopener\">can&#8217;t connect to local server<\/a>&#8221; error, though this won&#8217;t help if you&#8217;re using a remote MySQL server. As such, we&#8217;ve created this guide on &#8220;how to fix MySQL can&#8217;t connect to server issues&#8221;.<\/p>\n\n\n\n<p>MySQL is a popular open-source RDBMS, short for Relational Database Management System, widely used for web applications and other data-driven projects. It\u2019s part of the LAMP\/LEMP stack, and many popular websites and applications use it as a database system for storing data. However, users occasionally encounter issues where they can\u2019t connect to the MySQL server, which can disrupt normally functioning applications. In this guide on how to fix MySQL can&#8217;t connect to server issues, we will explore common reasons for this problem and provide step-by-step solutions to help you resolve MySQL connection issues.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Check MySQL Server Status<\/h2>\n\n\n\n<p>Before diving into more complex troubleshooting, start by checking the status of your MySQL server. Ensure that the MySQL service is running and that there are no critical errors or warnings in the server logs. You can use the following command to check the MySQL service status:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl status mysql<\/code><\/pre>\n\n\n\n<p>You will receive similar output If the service is not running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl status mysql\n\u25cb mariadb.service - MariaDB 10.6.12 database server\n     Loaded: loaded (\/lib\/systemd\/system\/mariadb.service; enabled; vendor prese&gt;\n     Active: inactive (dead) since Fri 2024-01-12 23:41:21 UTC; 1s ago<\/code><\/pre>\n\n\n\n<p>Start the MySQL service using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl start mysql<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Verify MySQL Port and Network Configuration<\/h2>\n\n\n\n<p>The Default MySQL port for connections is 3306. Ensure that the MySQL server is configured to listen on the correct port and that there are no firewall or network issues preventing connections. Check the MySQL configuration file (usually located at \/etc\/mysql\/my.cnf or \/etc\/my.cnf) for the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bind-address = 127.0.0.1\nport = 3306<\/code><\/pre>\n\n\n\n<p>Ensure that the bind-address allows connections from the necessary IP addresses or is set to 0.0.0.0 to allow connections from any IP address. To check connectivity to the MySQL server on port 3306 you can also use the netcat command. You can do that by running the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nc -zv 192.168.2.20 3306<\/code><\/pre>\n\n\n\n<p>Instead of 192.168.2.20, you should use the IP address of the MySQL server. If the connection is successful, you should get similar output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Connection to 192.168.2.20 3306 port &#91;tcp\/mysql] succeeded!<\/code><\/pre>\n\n\n\n<p>If the connection fails, you will see an output like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nc: connect to 192.168.2.20 port 3306 (tcp) failed: Connection refused<\/code><\/pre>\n\n\n\n<p>Then, you should log in to the MySQL server and check which port is MySQL listening on.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">MySQL User Privileges<\/h2>\n\n\n\n<p>Incorrect user privileges may prevent successful connections to the MySQL server. Verify that the user attempting to connect has the necessary privileges. You can use the following MySQL command to grant privileges:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost' IDENTIFIED BY 'password';<\/code><\/pre>\n\n\n\n<p>Replace database_name, username, and password with your actual database name, username, and password. Then you can run the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>FLUSH PRIVILEGES;<\/code><\/pre>\n\n\n\n<p>Then simply exit the MySQL shell and if the problem was with the MySQL user privileges you should be able to connect now.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check for Network Issues<\/h2>\n\n\n\n<p>Network issues can often be a cause of connection problems. Ensure there are no network interruptions, and the server is accessible from the client machine. Ping the server to check for connectivity:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ping your_mysql_server_ip<\/code><\/pre>\n\n\n\n<p>If there are issues, check the network configuration, firewall settings, and any security groups or access control lists (ACLs) that may be blocking connections.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Examine MySQL Error Logs<\/h2>\n\n\n\n<p>MySQL logs provide valuable information about errors and warnings. Examine the MySQL error logs to identify any issues causing the connection problem. The error logs are typically located in the \/var\/log\/mysql directory (check your MySQL configuration for the exact location) and are named error.log. You can find more information here that might help you identify the issue.<\/p>\n\n\n\n<p>Resolving MySQL connection issues involves systematically identifying and addressing potential problems. By checking <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noreferrer noopener\">your server<\/a> status, verifying port and network configurations, confirming user privileges, investigating network issues, and examining error logs, you can troubleshoot and fix MySQL can&#8217;t connect to server problems effectively. If you cannot solve this issue, you can always <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">contact our Support Team<\/a>, which will help you solve the problem without worrying too much about making the right changes.<\/p><div id=\"linux-3133275153\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Last month, we showed you how to resolve the &#8220;can&#8217;t connect to local server&#8221; error, though this won&#8217;t help if you&#8217;re using a remote MySQL server. As such, we&#8217;ve created this guide on &#8220;how to fix MySQL can&#8217;t connect to server issues&#8221;. MySQL is a popular open-source RDBMS, short for Relational Database Management System, widely [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2089,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[260,2],"tags":[56,45,77],"class_list":["post-2070","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-tutorials","tag-how-to","tag-linux","tag-mysql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fix MySQL Can&#039;t Connect to Server Issues<\/title>\n<meta name=\"description\" content=\"Learn how to fix MySQL can&#039;t connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix MySQL Can&#039;t Connect to Server Issues\" \/>\n<meta property=\"og:description\" content=\"Learn how to fix MySQL can&#039;t connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/fix-mysql-cant-connect-to-server-issues\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Fix MySQL Can&#8217;t Connect to Server Issues\",\"datePublished\":\"2024-04-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/fix-mysql-cant-connect-to-server-issues\\\/\"},\"wordCount\":649,\"commentCount\":0,\"image\":{\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/how-to-fix-mysql-cant-connect-to-server.webp\",\"keywords\":[\"how to\",\"linux\",\"mysql\"],\"articleSection\":[\"Databases\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/fix-mysql-cant-connect-to-server-issues\\\/\",\"url\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues\",\"name\":\"How to Fix MySQL Can't Connect to Server Issues\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/how-to-fix-mysql-cant-connect-to-server.webp\",\"datePublished\":\"2024-04-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to fix MySQL can't connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/how-to-fix-mysql-cant-connect-to-server.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/how-to-fix-mysql-cant-connect-to-server.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Fix MySQL \\\"Can't connect to server\\\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/how-to-fix-mysql-cant-connect-to-server-issues#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix MySQL Can&#8217;t Connect to Server Issues\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix MySQL Can't Connect to Server Issues","description":"Learn how to fix MySQL can't connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.","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":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues","og_locale":"en_US","og_type":"article","og_title":"How to Fix MySQL Can't Connect to Server Issues","og_description":"Learn how to fix MySQL can't connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.","og_url":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2024-04-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/fix-mysql-cant-connect-to-server-issues\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Fix MySQL Can&#8217;t Connect to Server Issues","datePublished":"2024-04-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/fix-mysql-cant-connect-to-server-issues\/"},"wordCount":649,"commentCount":0,"image":{"@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp","keywords":["how to","linux","mysql"],"articleSection":["Databases","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/fix-mysql-cant-connect-to-server-issues\/","url":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues","name":"How to Fix MySQL Can't Connect to Server Issues","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage"},"image":{"@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp","datePublished":"2024-04-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to fix MySQL can't connect to server issues or get our legendary LinuxHostSupport admins to fix your technical issues for you.","breadcrumb":{"@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/how-to-fix-mysql-cant-connect-to-server-issues"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/03\/how-to-fix-mysql-cant-connect-to-server.webp","width":742,"height":410,"caption":"How to Fix MySQL \"Can't connect to server\""},{"@type":"BreadcrumbList","@id":"http:\/\/how-to-fix-mysql-cant-connect-to-server-issues#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix MySQL Can&#8217;t Connect to Server Issues"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2070","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2070"}],"version-history":[{"count":7,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2070\/revisions"}],"predecessor-version":[{"id":2092,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2070\/revisions\/2092"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2089"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}