{"id":365,"date":"2019-04-29T17:34:00","date_gmt":"2019-04-29T12:04:00","guid":{"rendered":"http:\/\/www.itsupportwale.com\/blog\/?p=365"},"modified":"2026-02-17T15:55:59","modified_gmt":"2026-02-17T10:25:59","slug":"backup-all-mysql-databases-with-a-mysql-backup-script","status":"publish","type":"post","link":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/","title":{"rendered":"Backup all MySQL Databases with a MySQL Backup Script"},"content":{"rendered":"\n<p>In this article, we will create a simple MySQL backup script for taking backups of all your MySQL databases periodically. <\/p>\n\n\n\n<p>If your website or web app runs over a LAMP stack or you&#8217;re running a Linux OS whether it is Ubuntu or Centos, you can write a simple script for taking MySQL backups at a given time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why we use MySQL Backup Script<\/h2>\n\n\n\n<p>If you are having a GUI like PHPMyAdmin then you can also take backup manually from the browser, which we will discuss in another blog post. But if you want to automate the backup process then you should create a Bash script and set a cronjob for this.<\/p>\n\n\n\n<p>So let&#8217;s have a look at our MySQL backup script :<\/p>\n\n\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\n#\n####################################################################\n##\t Shell script to backup all MySql database with single User\n##   \n##\t MySQL Database Backup Script \n##   Written By: Amol Jhod\n##   URL: https:\/\/oracle.itsupportwale.com\/blog\/learn-how-to-backup-up-all-mysql-databases-using-a-single-user-with-a-simple-bash-script\n##   Last Update: Apr 25, 2019\n##     \n##   For more scripts please visit : www.itsupportwale.com\n## \n#####################################################################\n#####################################################################\n#### Caution : This script is takes backup of all databases #########\n#############   on which the given user is having access. ###########\n############## And Delete the backups older then BKP_DAYS ##########\n#####################################################################\n#####################################################################\n########### You Have to Update the Below Values #####################\n#####################################################################\n#\n#\nBKP_USER=\"myuser\"     # Enter the username for backup\nBKP_PASS=\"mypassword\"       \t# Enter the password of the backup user \n#\nBKP_DEST=\"\/backup\"\t\t\t# Enter the Backup directory,change this if you have someother location\n#\n## Note: Scripts will delete all backup which are older then BKP_DAYS##\n#\nBKP_DAYS=\"2\"\t\t\t\t# Enter how many days backup you want,\n#\n########### Use This for only local server #############################\nMYSQL_HOST=\"localhost\"  \n#\n#\n########################################################################\n########### Thats Enough!! NO NEED TO CHANGE THE BELOW VALUES ##########\n########################################################################\n#\n##################### Get Backup DATE ##################################\n#\nBKP_DATE=\"$(date +\"%d-%m-%Y-%H:%M:%S-%a\")\";\n#\n########## Ignore these default databases shen taking backup ############\n#\nIGNORE_DB=\"information_schema mysql performance_schema\"\n#\n########## Creating backup dir if not exist #############################\n#\n[ ! -d $BKP_DEST ] &amp;&amp; mkdir -p $BKP_DEST || :\n#\n################# Autodetect the linux bin path #########################\nMYSQL=\"$(which mysql)\"\nMYSQLDUMP=\"$(which mysqldump)\"\nGZIP=\"$(which gzip)\"\n#\n###################### Get database list ################################\n#\nDB_LIST=\"$($MYSQL -u $BKP_USER -h $MYSQL_HOST -p$BKP_PASS -Bse 'show databases')\"\n#\nfor db in $DB_LIST\ndo\n    skipdb=-1\n    if [ \"$IGNORE_DB\" != \"\" ];\n    then\n\tfor i in $IGNORE_DB\n\tdo\n\t    [ \"$db\" == \"$i\" ] &amp;&amp; skipdb=1 || :\n\tdone\n    fi\n \n    if [ \"$skipdb\" == \"-1\" ] ; then\n\tBKP_FILENAME=\"$BKP_DEST\/$db.$BKP_DATE.gz\"\n#\n################ Using MYSQLDUMP for bakup and Gzip for compression ###################\n#\n        $MYSQLDUMP -u $BKP_USER -h $MYSQL_HOST -p$BKP_PASS $db | $GZIP -9 > $BKP_FILENAME\n    fi\ndone\n#########To delete all backup files older then BKP_DAYS #################\n#\nfind $BKP_DEST -type f -mtime +$BKP_DAYS -delete\n#\n#\n#### End of script ####<\/code><\/pre>\n\n\n\n<p>Now lets, discuss the various sections of the script. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BKP_USER=\"myuser\"\nBKP_PASS=\"mypassword\"<\/code><\/pre>\n\n\n\n<p>At the very first section, you have to fill the details of your user. It is recommended that you have to create a separate user for taking backups. On that user give permissions to only backup database.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>You can learn : &#8220;<a href=\"https:\/\/itsupportwale.com\/blog\/creating-a-backup-user-with-read-only-permission-for-mysql-db\/\">How to create user for only backup MySQL database<\/a>&#8220;<\/p><\/blockquote>\n\n\n\n<p>On the next section, You have to give the name of the backup folder. Where you want to store the MySQL backups.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BKP_DEST=\"\/backup\"<\/code><\/pre>\n\n\n\n<p>That&#8217;s it. No need to do more than that. You just have to run the command manually or set a cronjob for it.<\/p>\n\n\n\n<p>For example, if you want daily database backup, then put this line in your crontab config :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@daily \/path_to_script\/my_backup_script.sh<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>MySQL is a widely used Database software. Almost every system administrator should know how to take a backup of MySQL databases using commands. We discussed and present a simple backup script in this article for that. You guys can share your views in the comment section. Happy Learning ..!!<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Also Read: <strong>&#8220;<\/strong><a href=\"https:\/\/itsupportwale.com\/blog\/pssh-execute-ssh-commands-on-multiple-systems-using-single-command\/\"><strong>Execute SSH Commands on Multiple Systems Using Single Command<\/strong><\/a><strong>&#8220;<\/strong><\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will create a simple MySQL backup script for taking backups of all your MySQL databases periodically. If your website or web app runs over a LAMP stack or you&#8217;re running a Linux OS whether it is Ubuntu or Centos, you can write a simple script for taking MySQL backups at a &#8230; <a title=\"Backup all MySQL Databases with a MySQL Backup Script\" class=\"read-more\" href=\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\" aria-label=\"Read more  on Backup all MySQL Databases with a MySQL Backup Script\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":391,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[130,218,2],"tags":[151,166,153,160,154,169,152,167,168,164,165,141,156,170,142,155],"class_list":["post-365","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bash-scripts","category-mysql-db","category-tutorials","tag-backup","tag-backup-all-mysql-databases-at-once","tag-backup-database","tag-backup-multiple-mysql-databases-in-one-go","tag-backup-mysql-database-using-command-prompt","tag-create-script-to-backup-sql-database","tag-database","tag-how-to-backup-database-automatically","tag-how-to-backup-mysql-database-automatically","tag-how-to-backup-sql-server-database-using-sql-script","tag-how-to-create-a-backup-script","tag-mysql","tag-mysql-backup","tag-mysql-backup-script","tag-mysql-database","tag-mysql-database-backup"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale<\/title>\n<meta name=\"description\" content=\"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale\" \/>\n<meta property=\"og:description\" content=\"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\" \/>\n<meta property=\"og:site_name\" content=\"ITSupportWale\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-29T12:04:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-17T10:25:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"662\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Techie\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Techie\" \/>\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:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\"},\"author\":{\"name\":\"Techie\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d\"},\"headline\":\"Backup all MySQL Databases with a MySQL Backup Script\",\"datePublished\":\"2019-04-29T12:04:00+00:00\",\"dateModified\":\"2026-02-17T10:25:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\"},\"wordCount\":318,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png\",\"keywords\":[\"backup\",\"backup all mysql databases at once\",\"backup database\",\"backup multiple mysql databases in one go\",\"backup mysql database using command prompt\",\"create script to backup sql database\",\"database\",\"how to backup database automatically\",\"how to backup mysql database automatically\",\"how to backup sql server database using sql script\",\"how to create a backup script\",\"mysql\",\"mysql backup\",\"mysql backup script\",\"mysql database\",\"mysql database backup\"],\"articleSection\":[\"Bash Scripts\",\"mysql server\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\",\"name\":\"Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png\",\"datePublished\":\"2019-04-29T12:04:00+00:00\",\"dateModified\":\"2026-02-17T10:25:59+00:00\",\"description\":\"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.\",\"breadcrumb\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png\",\"width\":1280,\"height\":662,\"caption\":\"MySQL-Logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itsupportwale.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Backup all MySQL Databases with a MySQL Backup Script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"name\":\"ITSupportWale\",\"description\":\"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides\",\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\",\"name\":\"itsupportwale\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"width\":1119,\"height\":144,\"caption\":\"itsupportwale\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d\",\"name\":\"Techie\",\"sameAs\":[\"https:\/\/itsupportwale.com\",\"iswblogadmin\"],\"url\":\"https:\/\/itsupportwale.com\/blog\/author\/iswblogadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale","description":"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.","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:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/","og_locale":"en_US","og_type":"article","og_title":"Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale","og_description":"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.","og_url":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/","og_site_name":"ITSupportWale","article_publisher":"https:\/\/www.facebook.com\/Itsupportwale-298547177495978","article_published_time":"2019-04-29T12:04:00+00:00","article_modified_time":"2026-02-17T10:25:59+00:00","og_image":[{"width":1280,"height":662,"url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png","type":"image\/png"}],"author":"Techie","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Techie","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#article","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/"},"author":{"name":"Techie","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d"},"headline":"Backup all MySQL Databases with a MySQL Backup Script","datePublished":"2019-04-29T12:04:00+00:00","dateModified":"2026-02-17T10:25:59+00:00","mainEntityOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/"},"wordCount":318,"commentCount":2,"publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png","keywords":["backup","backup all mysql databases at once","backup database","backup multiple mysql databases in one go","backup mysql database using command prompt","create script to backup sql database","database","how to backup database automatically","how to backup mysql database automatically","how to backup sql server database using sql script","how to create a backup script","mysql","mysql backup","mysql backup script","mysql database","mysql database backup"],"articleSection":["Bash Scripts","mysql server","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/","url":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/","name":"Backup all MySQL Databases with a MySQL Backup Script - ITSupportWale","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png","datePublished":"2019-04-29T12:04:00+00:00","dateModified":"2026-02-17T10:25:59+00:00","description":"In this article, we will create a simple mysql backup script for taking backups of all your MySQL databases periodically.","breadcrumb":{"@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#primaryimage","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2019\/04\/MySQL-Logo.png","width":1280,"height":662,"caption":"MySQL-Logo"},{"@type":"BreadcrumbList","@id":"https:\/\/itsupportwale.com\/blog\/backup-all-mysql-databases-with-a-mysql-backup-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itsupportwale.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Backup all MySQL Databases with a MySQL Backup Script"}]},{"@type":"WebSite","@id":"https:\/\/itsupportwale.com\/blog\/#website","url":"https:\/\/itsupportwale.com\/blog\/","name":"ITSupportWale","description":"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides","publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itsupportwale.com\/blog\/#organization","name":"itsupportwale","url":"https:\/\/itsupportwale.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","width":1119,"height":144,"caption":"itsupportwale"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Itsupportwale-298547177495978"]},{"@type":"Person","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d","name":"Techie","sameAs":["https:\/\/itsupportwale.com","iswblogadmin"],"url":"https:\/\/itsupportwale.com\/blog\/author\/iswblogadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/365","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/comments?post=365"}],"version-history":[{"count":3,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/365\/revisions"}],"predecessor-version":[{"id":4629,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/365\/revisions\/4629"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media\/391"}],"wp:attachment":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media?parent=365"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/categories?post=365"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/tags?post=365"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}