{"id":4076,"date":"2018-10-24T14:37:27","date_gmt":"2018-10-24T14:37:27","guid":{"rendered":"https:\/\/dbtut.com\/?p=4076"},"modified":"2018-11-26T20:57:32","modified_gmt":"2018-11-26T20:57:32","slug":"mysql-auditing","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/","title":{"rendered":"MySQL Auditing"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><strong>MySQL Community Edition:<\/strong><\/p>\n<p>MySQL Community Edition having feature of auditing but I cannot having feature\u00a0 filter the users<\/p>\n<p><strong>To activate audit log:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">Set Global General_Log=1<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>To disable audit log:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">Set Global General_Log=0<\/pre>\n<p>&nbsp;<\/p>\n<p>You can also do these setting in my.cnf<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\" width=\"625\" height=\"462\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>MySQL Enterprise Edition:<\/strong><\/p>\n<p>MySQL Community Edition having feature of auditing and it have several extended features<\/p>\n<p>Check out the audit_log.so in the server. It must be there after the installation of MySQL Enterprise Edition<\/p>\n<pre class=\"\">mysql&gt; INSTALL PLUGIN audit_log SONAME \u2018<span class=\"skimlinks-unlinked\">audit_log.so<\/span>\u2019;<\/pre>\n<p>&nbsp;<\/p>\n<p>After the successful installation of .so on mysql configure and activate the auditing as per your requirement by the following commands<\/p>\n<pre class=\"\">mysql&gt; SHOW VARIABLES LIKE \u2018audit_log%\u2019;\r\n+---------------------------+--------------+\r\n| Variable_name             | Value        |\r\n+---------------------------+--------------+\r\n| audit_log_buffer_size     | 1048576      |\r\n| audit_log_file            | <span class=\"skimlinks-unlinked\">audit.log<\/span>    |\r\n| audit_log_flush           | OFF          |\r\n| audit_log_format          | OLD          |\r\n| audit_log_policy          | ALL          |\r\n| audit_log_rotate_on_size  | 0            |\r\n| audit_log_strategy        | ASYNCHRONOUS |\r\n+---------------------------+--------------+\r\n7 rows in set (0.00 sec)<\/pre>\n<pre class=\"\">OR\r\n\r\n\r\nmysql&gt; SELECT * FROM information_schema.PLUGINS where PLUGIN_NAME = \u2018audit_log\u2019\\G\r\n*************************** 1. row ***************************\r\n           PLUGIN_NAME: audit_log\r\n        PLUGIN_VERSION: 0.1\r\n         PLUGIN_STATUS: ACTIVE\r\n           PLUGIN_TYPE: AUDIT\r\n   PLUGIN_TYPE_VERSION: 3.1\r\n        PLUGIN_LIBRARY: <span class=\"skimlinks-unlinked\">audit_log.so<\/span>\r\nPLUGIN_LIBRARY_VERSION: 1.4\r\n         PLUGIN_AUTHOR: Oracle\r\n    PLUGIN_DESCRIPTION: Auditing events logger\r\n        PLUGIN_LICENSE: PROPRIETARY\r\n           LOAD_OPTION: ON\r\n1 row in set (0.02 sec)\r\n\r\n\r\n\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>To Enable Auditing for specific Account do the following addition to My.CNF file of MySQL Instance<\/strong><\/p>\n<pre class=\"lang:default decode:true\">audit_log_file = audit.log (This file will be created in the base_dir of mysql home)\r\naudit_log_rotate_on_size = 200MB (This will rotate the audit file if the size exceeds from this mentioned value)\r\naudit-log = ON (to enable auditing)\r\naudit_log_include_accounts = 'root_dba@xxxxx,root_dba@xxxxx,root@localhost' (to mention specific accounts only)\r\n\r\nlog_timestamps = SYSTEM<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/183-2.png\" width=\"650\" height=\"388\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>You can enable several filtration on auditing like Specific Tables,SQL Queries , User Accounts, Hosts etc. One of the example are as follows i.e. enable auditing for specific user accounts only.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/639.png\" width=\"686\" height=\"211\" \/><\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4076\" class=\"pvc_stats all  \" data-element-id=\"4076\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; MySQL Community Edition: MySQL Community Edition having feature of auditing but I cannot having feature\u00a0 filter the users To activate audit log: Set Global General_Log=1 &nbsp; To disable audit log: Set Global General_Log=0 &nbsp; You can also do these setting in my.cnf &nbsp; MySQL Enterprise Edition: MySQL Community Edition having feature of auditing and &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_4076\" class=\"pvc_stats all  \" data-element-id=\"4076\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":181,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-4076","post","type-post","status-publish","format-standard","","category-mysql"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":1106,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MySQL Auditing - Database Tutorials<\/title>\n<meta name=\"description\" content=\"MySQL Auditing\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MySQL Auditing - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"MySQL Auditing\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-24T14:37:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-26T20:57:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\" \/>\n<meta name=\"author\" content=\"Engr. Mohammad Rizwan Yasin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Engr. Mohammad Rizwan Yasin\" \/>\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:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\"},\"author\":{\"name\":\"Engr. Mohammad Rizwan Yasin\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53\"},\"headline\":\"MySQL Auditing\",\"datePublished\":\"2018-10-24T14:37:27+00:00\",\"dateModified\":\"2018-11-26T20:57:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\"},\"wordCount\":153,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\",\"articleSection\":[\"MySQL-MariaDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\",\"name\":\"MySQL Auditing - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\",\"datePublished\":\"2018-10-24T14:37:27+00:00\",\"dateModified\":\"2018-11-26T20:57:32+00:00\",\"description\":\"MySQL Auditing\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png\",\"width\":690,\"height\":510},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MySQL Auditing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53\",\"name\":\"Engr. Mohammad Rizwan Yasin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g\",\"caption\":\"Engr. Mohammad Rizwan Yasin\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/mohammadrizwan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MySQL Auditing - Database Tutorials","description":"MySQL Auditing","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:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/","og_locale":"en_US","og_type":"article","og_title":"MySQL Auditing - Database Tutorials","og_description":"MySQL Auditing","og_url":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/","og_site_name":"Database Tutorials","article_published_time":"2018-10-24T14:37:27+00:00","article_modified_time":"2018-11-26T20:57:32+00:00","og_image":[{"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png","type":"","width":"","height":""}],"author":"Engr. Mohammad Rizwan Yasin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Engr. Mohammad Rizwan Yasin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/"},"author":{"name":"Engr. Mohammad Rizwan Yasin","@id":"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53"},"headline":"MySQL Auditing","datePublished":"2018-10-24T14:37:27+00:00","dateModified":"2018-11-26T20:57:32+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/"},"wordCount":153,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png","articleSection":["MySQL-MariaDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/","url":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/","name":"MySQL Auditing - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png","datePublished":"2018-10-24T14:37:27+00:00","dateModified":"2018-11-26T20:57:32+00:00","description":"MySQL Auditing","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2018\/10\/763.png","width":690,"height":510},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/24\/mysql-auditing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"MySQL Auditing"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53","name":"Engr. Mohammad Rizwan Yasin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g","caption":"Engr. Mohammad Rizwan Yasin"},"url":"https:\/\/dbtut.com\/index.php\/author\/mohammadrizwan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4076","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/181"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=4076"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/4076\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=4076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=4076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=4076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}