{"id":1742,"date":"2025-08-12T17:37:58","date_gmt":"2025-08-12T20:37:58","guid":{"rendered":"https:\/\/helpsysadmin.com.br\/blog\/?p=1742"},"modified":"2025-09-16T23:04:55","modified_gmt":"2025-09-17T02:04:55","slug":"error-rpmdb-bbdb0113","status":"publish","type":"post","link":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/","title":{"rendered":"error: rpmdb: BDB0113 Thread\/process"},"content":{"rendered":"<div id=\"helps-4262034032\" class=\"helps-before-content-2 helps-entity-placement\"><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-3661896953164277\"\r\n     crossorigin=\"anonymous\"><\/script>\r\n<!-- 2anuncios display quadrado -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-3661896953164277\"\r\n     data-ad-slot=\"5051229894\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script><\/div>\n<p class=\"wp-block-paragraph\">This error: <strong>rpmdb: BDB0113 Thread\/process<\/strong> occurs when running dnf or yum and indicates that your RPM package manager&#8217;s database is locked or corrupted.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This usually happens when:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A package management process (such as yum, dnf, or rpm itself) is interrupted unexpectedly\u2014for example, if the system crashes, the process is forcibly killed, or there&#8217;s a power outage.<\/li>\n\n\n\n<li>Lack of disk space.<\/li>\n\n\n\n<li>Others..<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">When this occurs, lock files may be left behind, preventing any other package process from accessing the database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-solve-step-by-step\">How to Solve (Step by Step)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Follow these steps carefully. You&#8217;ll need root permissions to run the commands. Use sudo before each command if necessary.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-1-check-that-there-are-no-yum-dnf-processes-running\">Step 1: Check that there are no YUM\/DNF processes running<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Before deleting any files, make sure no package managers are actually running in the background.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ps aux | grep -E 'yum|dnf'<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">If this command returns something other than the grep command itself, it means a process is active. Wait for it to finish or, if you&#8217;re sure it&#8217;s stuck, kill it with kill . If the command returns nothing, you can proceed.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-2-remove-the-database-lock-files\">Step 2: Remove the database lock files<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Lock files are the cause of the lock. They usually start with __db in the RPM directory.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Run the following command as root:<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rm -f \/var\/lib\/rpm\/__db.*<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What this command does:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>rm -f: Forcibly removes (rm) the specified files without asking for confirmation.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\/var\/lib\/rpm\/__db.*: The path to the RPM database lock files. The * ensures that all files beginning with __db. are removed.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-3-rebuild-the-rpm-database\">Step 3: Rebuild the RPM Database<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">After removing the lock files, the database may be in an inconsistent state. The next step is to rebuild it to correct any issues.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Run the following command as root:<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rpm --quiet -qa\nrpm --rebuilddb<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What this command does:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>rpm &#8211;rebuilddb: Reads the headers of all installed packages and creates a new, clean, and functional database from scratch. This process is safe and does not remove any installed packages.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-4-clear-the-package-manager-cache-recommended\">Step 4: Clear the package manager cache (Recommended)<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">To ensure everything works correctly, it&#8217;s a good practice to clear the cache of your package manager (yum or dnf).<br>If you&#8217;re using a CentOS\/RHEL 7 or older system (which uses yum):<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>yum clean all<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">If you use a Fedora, CentOS\/RHEL 8 or newer based system (which uses dnf):<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>dnf clean all<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-summary\">Summary<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In 99% of cases, the following command sequence, executed as root, will resolve the issue:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre># 1. Remove the lock files\nrm -f \/var\/lib\/rpm\/__db.*\n\n# 2. Rebuild the database from the installed packages\nrpm --quiet -qa\nrpm --rebuilddb\n\n# 3. (Optional) Clear the package manager cache\n# Use 'yum' or 'dnf', depending on your system\nyum clean all\n# or\ndnf clean all<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">After completing these steps, try using yum, dnf, or rpm again. The error should be gone.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This error: rpmdb: BDB0113 Thread\/process occurs when running dnf or yum and indicates that your RPM package manager&#8217;s database is locked or [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1720,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1206,1204],"tags":[],"class_list":["post-1742","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-server-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.9 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>error: rpmdb: BDB0113 Thread\/process - Blog HelpSysAdmin<\/title>\n<meta name=\"description\" content=\"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\/process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"error: rpmdb: BDB0113 Thread\/process\" \/>\n<meta property=\"og:description\" content=\"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\/process\" \/>\n<meta property=\"og:url\" content=\"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog HelpSysAdmin\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-12T20:37:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-17T02:04:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"239\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"HelpSysAdmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brhelpsysad\" \/>\n<meta name=\"twitter:site\" content=\"@brhelpsysad\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/\"},\"author\":{\"name\":\"HelpSysAdmin\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\"},\"headline\":\"error: rpmdb: BDB0113 Thread\\\/process\",\"datePublished\":\"2025-08-12T20:37:58+00:00\",\"dateModified\":\"2025-09-17T02:04:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/\"},\"wordCount\":403,\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/08\\/rpmdb.jpg\",\"articleSection\":[\"Linux\",\"server management\"],\"inLanguage\":\"pt-BR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/\",\"name\":\"error: rpmdb: BDB0113 Thread\\\/process - Blog HelpSysAdmin\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/08\\/rpmdb.jpg\",\"datePublished\":\"2025-08-12T20:37:58+00:00\",\"dateModified\":\"2025-09-17T02:04:55+00:00\",\"description\":\"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\\\/process\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#primaryimage\",\"url\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/08\\/rpmdb.jpg\",\"contentUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/08\\/rpmdb.jpg\",\"width\":1536,\"height\":239,\"caption\":\"error: rpmdb: BDB0113 Thread\\\/process\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/error-rpmdb-bbdb0113\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"error: rpmdb: BDB0113 Thread\\\/process\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"name\":\"Blog HelpSysAdmin\",\"description\":\"Webserver linux blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"alternateName\":\"HelpSysAdmin Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\",\"name\":\"HelpSysAdmin Gerenciamento de Servidores\",\"alternateName\":\"HelpSysAdmin\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"contentUrl\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"HelpSysAdmin Gerenciamento de Servidores\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/brhelpsysad\",\"https:\\\/\\\/mastodon.social\\\/@helpsysadmin\"],\"description\":\"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\",\"name\":\"HelpSysAdmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"caption\":\"HelpSysAdmin\"},\"sameAs\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"error: rpmdb: BDB0113 Thread\/process - Blog HelpSysAdmin","description":"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\/process","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:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/","og_locale":"pt_BR","og_type":"article","og_title":"error: rpmdb: BDB0113 Thread\/process","og_description":"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\/process","og_url":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/","og_site_name":"Blog HelpSysAdmin","article_published_time":"2025-08-12T20:37:58+00:00","article_modified_time":"2025-09-17T02:04:55+00:00","og_image":[{"width":1536,"height":239,"url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg","type":"image\/jpeg"}],"author":"HelpSysAdmin","twitter_card":"summary_large_image","twitter_creator":"@brhelpsysad","twitter_site":"@brhelpsysad","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#article","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/"},"author":{"name":"HelpSysAdmin","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb"},"headline":"error: rpmdb: BDB0113 Thread\/process","datePublished":"2025-08-12T20:37:58+00:00","dateModified":"2025-09-17T02:04:55+00:00","mainEntityOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/"},"wordCount":403,"publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg","articleSection":["Linux","server management"],"inLanguage":"pt-BR"},{"@type":"WebPage","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/","url":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/","name":"error: rpmdb: BDB0113 Thread\/process - Blog HelpSysAdmin","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#primaryimage"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg","datePublished":"2025-08-12T20:37:58+00:00","dateModified":"2025-09-17T02:04:55+00:00","description":"Blog HelpSysAdmin - error: rpmdb: BDB0113 Thread\/process","breadcrumb":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#primaryimage","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/08\/rpmdb.jpg","width":1536,"height":239,"caption":"error: rpmdb: BDB0113 Thread\/process"},{"@type":"BreadcrumbList","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/error-rpmdb-bbdb0113\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/helpsysadmin.com.br\/blog\/"},{"@type":"ListItem","position":2,"name":"error: rpmdb: BDB0113 Thread\/process"}]},{"@type":"WebSite","@id":"https:\/\/helpsysadmin.com.br\/blog\/#website","url":"https:\/\/helpsysadmin.com.br\/blog\/","name":"Blog HelpSysAdmin","description":"Webserver linux blog","publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"alternateName":"HelpSysAdmin Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/helpsysadmin.com.br\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization","name":"HelpSysAdmin Gerenciamento de Servidores","alternateName":"HelpSysAdmin","url":"https:\/\/helpsysadmin.com.br\/blog\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","width":512,"height":512,"caption":"HelpSysAdmin Gerenciamento de Servidores"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/brhelpsysad","https:\/\/mastodon.social\/@helpsysadmin"],"description":"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb","name":"HelpSysAdmin","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","caption":"HelpSysAdmin"},"sameAs":["https:\/\/helpsysadmin.com.br\/blog\/"]}]}},"lang":"en","translations":{"en":1742},"pll_sync_post":{},"_links":{"self":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1742","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/comments?post=1742"}],"version-history":[{"count":4,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1742\/revisions"}],"predecessor-version":[{"id":1816,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1742\/revisions\/1816"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media\/1720"}],"wp:attachment":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media?parent=1742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/categories?post=1742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/tags?post=1742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}