{"id":1858,"date":"2014-05-28T11:40:32","date_gmt":"2014-05-28T11:40:32","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=1858"},"modified":"2017-03-17T15:29:46","modified_gmt":"2017-03-17T15:29:46","slug":"openerp-db-backup-automatically","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/","title":{"rendered":"How to backup and restore OpenERP database automatically on linux ?"},"content":{"rendered":"<p>In my last article<b>, I described you how to take backup and restore OpenERP database using <strong>Openerp GUI or web-interface method<\/strong>\u00a0method. Now,\u00a0In this article<strong>\u00a0<\/strong>, I`ll describe you how to take backup of your OpenERP database automatically and regularly too after certain time of period, using cron on linux.<\/b><\/p>\n<p>1) Create 2 directories, one for placing the backup script (<code>\/var\/scripts<\/code>) and other for placing your database dump files (<code>\/var\/pgdump<\/code>).<\/p>\n<p>NOTE &#8211; both directories should be owned by user = root<\/p>\n<p>2) Create a script file as &#8211; <code>\/var\/scripts\/dump_db.sh<\/code>, set permission as 700, \u00a0owned by user = root and meant to run as root. I`ll set a cron job. The content of this script will be &#8211;<\/p>\n<pre class=\"brush:powershell\">#!\/bin\/bash\r\n\r\n#fixed parameters:\r\ndate=$(date +\"%Y-%m-%d_%H:%M:%S\")\r\ndb='name_of_the_db_u_want_to_take_backup'\r\nbackup_path=\"\/var\/pgdump\"\r\nfilename=\"$backup_path\/${db}_$date\"\r\n\r\n# Stop OpenERP Server\r\n \/etc\/init.d\/openerp-server stop\r\n\r\n# Taking Dump of selected DB\r\nsudo -H -u postgres bash -c \"pg_dump --format=c --no-owner $db&gt;$filename\"\r\n\r\n\r\n# Start OpenERP Server\r\n\/etc\/init.d\/openerp-server start\r\n\r\nexit 0<\/pre>\n<p>NOTE: starting\/stopping openerp server is needed only when the database is heavy<\/p>\n<p>You can test whether this script is working or not by manually running it, like this<\/p>\n<pre class=\"brush:powershell\">\/var\/scripts\/.\/dump_db.sh<\/pre>\n<p>3) If everything goes correct , create a cron to run this script regularly after certain time of period &#8211;<\/p>\n<pre class=\"brush:powershell\">sudo crontab -e\r\n\r\n# add this line\r\n0 *\/12 * * * \/var\/scripts\/dump_db.sh\r\n# this would run after every 12 hours i.e twice a day<\/pre>\n<p>4) In order to restore using these dump file we can use Openerp GUI or can run\u00a0following command:<\/p>\n<pre class=\"brush:shell\">pg_restore --no-owner --dbname=&lt;DUMP_FILE&gt;<\/pre>\n<p>5) Remove old dump files ,<\/p>\n<p>&#8211; create another script\u00a0(deletes backups which are older than 30 days) as<br \/>\n<code>\/var\/scripts\/rm_db.sh<\/code><\/p>\n<pre class=\"brush:powershell\">#!\/bin\/bash\r\n\r\nsudo find \/var\/pgdump\/* -mtime +30 -exec rm {} \\;\r\n\r\nexit 0<\/pre>\n<p>&#8211; add this to cron as &#8211;<\/p>\n<pre class=\"brush:powershell\">sudo crontab -e\r\n\r\n# add this line\r\n5 8 * * 6 \/var\/scripts\/rm_db.sh\r\n# this would run 8:05 every saturday<\/pre>\n<p>That`s it !!!<br \/>\nI hope it will help someone.<\/p>\n<p>[stextbox id=&#8221;info&#8221;]Your opinions, comments and suggestions are important to keep the page updated and interesting.\u00a0[\/stextbox]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my last article, I described you how to take backup and restore OpenERP database using Openerp GUI or web-interface method\u00a0method. Now,\u00a0In this article\u00a0, I`ll describe you how to take backup of your OpenERP database automatically and regularly too after certain time of period, using cron on linux. 1) Create 2 directories, one for placing <a href=\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":10,"featured_media":22126,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[179,166,10],"tags":[1238,319,1240,890,2063,1237,1239,266],"class_list":["post-1858","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-e-commerce-erp","category-openerp","category-ubuntu","tag-automatically","tag-backup","tag-cron","tag-linux","tag-openerp","tag-postgres","tag-regularly","tag-ubuntu-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>backup and restore OpenERP database<\/title>\n<meta name=\"description\" content=\"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu\" \/>\n<meta name=\"robots\" content=\"index, follow, max-image-preview:large, max-video-preview:-1, nosnippet\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"backup and restore OpenERP database\" \/>\n<meta property=\"og:description\" content=\"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2014-05-28T11:40:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-03-17T15:29:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Mohit Chandra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohit Chandra\" \/>\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:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\"},\"author\":{\"name\":\"Mohit Chandra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/82824e8c1a101ec721fda4c7a418cc2a\"},\"headline\":\"How to backup and restore OpenERP database automatically on linux ?\",\"datePublished\":\"2014-05-28T11:40:32+00:00\",\"dateModified\":\"2017-03-17T15:29:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\"},\"wordCount\":235,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"keywords\":[\"automatically\",\"backup\",\"cron\",\"linux\",\"OpenERP\",\"postgres\",\"regularly\",\"ubuntu\"],\"articleSection\":[\"E-Commerce ERP\",\"OpenERP\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\",\"url\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\",\"name\":\"backup and restore OpenERP database\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"datePublished\":\"2014-05-28T11:40:32+00:00\",\"dateModified\":\"2017-03-17T15:29:46+00:00\",\"description\":\"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to backup and restore OpenERP database automatically on linux ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/82824e8c1a101ec721fda4c7a418cc2a\",\"name\":\"Mohit Chandra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3aea81ed8ce4e8e1aa6cde51d2aa5813f3beacc645152f757e47e367d65b85aa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3aea81ed8ce4e8e1aa6cde51d2aa5813f3beacc645152f757e47e367d65b85aa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Mohit Chandra\"},\"description\":\"Mohit Chandra is an expert Odoo developer and the Owl framework, specializing in multi-platform integration services. He excels in developing dynamic, scalable solutions that seamlessly integrate diverse systems, leveraging his deep knowledge to enhance business efficiency and drive technological innovation.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/mohit-chandra\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"backup and restore OpenERP database","description":"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu","robots":{"index":"index","follow":"follow","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1","snippet":"nosnippet"},"canonical":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/","og_locale":"en_US","og_type":"article","og_title":"backup and restore OpenERP database","og_description":"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu","og_url":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2014-05-28T11:40:32+00:00","article_modified_time":"2017-03-17T15:29:46+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","type":"image\/png"}],"author":"Mohit Chandra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Mohit Chandra","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/"},"author":{"name":"Mohit Chandra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/82824e8c1a101ec721fda4c7a418cc2a"},"headline":"How to backup and restore OpenERP database automatically on linux ?","datePublished":"2014-05-28T11:40:32+00:00","dateModified":"2017-03-17T15:29:46+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/"},"wordCount":235,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","keywords":["automatically","backup","cron","linux","OpenERP","postgres","regularly","ubuntu"],"articleSection":["E-Commerce ERP","OpenERP","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/","url":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/","name":"backup and restore OpenERP database","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","datePublished":"2014-05-28T11:40:32+00:00","dateModified":"2017-03-17T15:29:46+00:00","description":"How to take backup and restore OpenERP database regularly on Linux\/Ubuntu","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/06\/All-Blogs-Blog-Post-Banner3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/openerp-db-backup-automatically\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to backup and restore OpenERP database automatically on linux ?"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/82824e8c1a101ec721fda4c7a418cc2a","name":"Mohit Chandra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3aea81ed8ce4e8e1aa6cde51d2aa5813f3beacc645152f757e47e367d65b85aa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3aea81ed8ce4e8e1aa6cde51d2aa5813f3beacc645152f757e47e367d65b85aa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Mohit Chandra"},"description":"Mohit Chandra is an expert Odoo developer and the Owl framework, specializing in multi-platform integration services. He excels in developing dynamic, scalable solutions that seamlessly integrate diverse systems, leveraging his deep knowledge to enhance business efficiency and drive technological innovation.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/mohit-chandra\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1858","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1858"}],"version-history":[{"count":13,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1858\/revisions"}],"predecessor-version":[{"id":77932,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1858\/revisions\/77932"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/22126"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1858"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1858"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1858"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}