{"id":1043,"date":"2022-02-16T10:19:39","date_gmt":"2022-02-16T09:19:39","guid":{"rendered":"http:\/\/172.16.10.10:8080\/?p=1043"},"modified":"2023-03-16T22:51:13","modified_gmt":"2023-03-16T21:51:13","slug":"autodeploy-errors-after-vcenter-certificate-change","status":"publish","type":"post","link":"http:\/\/vblog.hochsticher.de\/?p=1043","title":{"rendered":"AutoDeploy errors after vCenter Certificate change"},"content":{"rendered":"\n<p>Recently I changed my vCenter Certificate. But the AutoDeploy Service didn&#8217;t learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log<\/p>\n\n\n\n<!--more-->\n\n\n\n<pre class=\"wp-block-code\"><code>Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server)\n\nerr rbd  &#91;38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server)\n<\/code><\/pre>\n\n\n\n<p class=\"has-text-align-left\">AutoDeploy partially continues to work. Configured Hosts could boot successfully. But changes that requires the rbd DB does not work like delete or add new Hosts, change Image etc.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-text-align-left\">So first step was to check via lsdoctor about a certificate problem. <a href=\"https:\/\/kb.vmware.com\/s\/article\/80469?lang=en_US&amp;queryTerm=lsdoctor\">https:\/\/kb.vmware.com\/s\/article\/80469?lang=en_US&amp;queryTerm=lsdoctor<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>root@myvCenter-01 &#91; \/home\/lsdoctor\/lsdoctor-master ]# python lsdoctor.py -l\n \n    ATTENTION:  You are running a reporting function.  This doesn't make any changes to your environment.\n    You can find the report and logs here: \/var\/log\/vmware\/lsdoctor\n \n2022-01-18T07:36:15 INFO main: You are reporting on problems found across the SSO domain in the lookup service.  This doesn't make changes.\n2022-01-18T07:36:15 INFO live_checkCerts: Checking services for trust mismatches...\n2022-01-18T07:36:15 INFO generateReport: Listing lookup service problems found in SSO domain\n2022-01-18T07:36:15 INFO generateReport: No issues detected in the lookup service entries for <meta charset=\"utf-8\">myvCenter-01.<meta charset=\"utf-8\">mytestdom.com (VC 7.0 or CGW).\n2022-01-18T07:36:15 INFO generateReport: Report generated:  \/var\/log\/vmware\/lsdoctor\/<meta charset=\"utf-8\">myvCenter-01.mytestdom.com-2022-01-18-073615.json<\/code><\/pre>\n\n\n\n<p class=\"has-text-align-left\">Lsdoctor doesn&#8217;t show any errors.<\/p>\n\n\n\n<p class=\"has-text-align-left\">So we looked in the rbd DB for the configured thumbprint.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><meta charset=\"utf-8\">root@myvCenter-01 &#91; ~ ]# sqlite3 \/var\/lib\/rbd\/db\nSQLite version 3.32.1 2020-05-25 16:19:56\nEnter \".help\" for usage hints.\nsqlite&gt; select * from vc_servers;\n1|{myvCenterIP}|80|BEA0F084-D699-42C9-B2C8-AF2CB8C0EF6B|8088|B6:40:0B:7D:18:4A:6C:47:A0:0C:FB:9E:1E:C7:E7:39:E8:BF:47:2B\n<\/code><\/pre>\n\n\n\n<p class=\"has-text-align-left\">Let&#8217;s check if this is the right one or the outdated!<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>root@myvCenter-01 &#91; ~ ]# \/usr\/lib\/vmware-vmafd\/bin\/vecs-cli entry getcert --store  BACKUP_STORE --alias bkp___MACHINE_CERT --output \/tmp\/oldmachinessl.crt\n\nroot@myvCenter-01 &#91; ~ ]# \/usr\/lib\/vmware-vmafd\/bin\/vecs-cli entry getcert --store MACHINE_SSL_CERT --alias __MACHINE_CERT --output \/tmp\/machineSSL.crt\n\nroot@myvCenter-01 &#91; ~ ]# openssl x509 -in \/tmp\/machineSSL.crt -fingerprint -noout\nSHA1 Fingerprint=37:D2:57:79:1D:97:88:52:03:7C:4B:BE:A7:4D:77:74:09:BE:A7:1D\n\n<meta charset=\"utf-8\">root@myvCenter-01 &#91; ~ ]# openssl x509 -in \/tmp\/oldmachinessl.crt  -fingerprint -noout\nSHA1 Fingerprint=B6:40:0B:7D:18:4A:6C:47:A0:0C:FB:9E:1E:C7:E7:39:E8:BF:47:2B<\/code><\/pre>\n\n\n\n<p class=\"has-text-align-left\">We could see in the rbd DB is the old thumbprint that ends with &#8220;47:2B&#8221; and we have to change it to the one that ends with &#8220;A7:1D&#8221;.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>root@myvCenter-01 &#91; ~ ]# service-control --stop vmware-rbd-watchdog\nOperation not cancellable. Please wait for it to finish...\nPerforming stop operation on service rbd...\nSuccessfully stopped service rbd\nroot@myvCenter-01 &#91; ~ ]# sqlite3 \/var\/lib\/rbd\/db\nSQLite version 3.32.1 2020-05-25 16:19:56\nEnter \".help\" for usage hints.\nsqlite&gt; select * from vc_servers;\n1|{myvCenterIP}|80|BEA0F084-D699-42C9-B2C8-AF2CB8C0EF6B|8088|B6:40:0B:7D:18:4A:6C:47:A0:0C:FB:9E:1E:C7:E7:39:E8:BF:47:2B\n\nupdate vc_servers set thumbprint = \"37:D2:57:79:1D:97:88:52:03:7C:4B:BE:A7:4D:77:74:09:BE:A7:1D\";\nsqlite&gt; select * from vc_servers;\n1|<meta charset=\"utf-8\">myvCenterIP|80|BEA0F084-D699-42C9-B2C8-AF2CB8C0EF6B|8088|37:D2:57:79:1D:97:88:52:03:7C:4B:BE:A7:4D:77:74:09:BE:A7:1D\nsqlite&gt; .quit\nroot@myvCenter-01 &#91; ~ ]# \n\nroot@myvCenter-01 &#91; ~ ]# service-control --start vmware-rbd-watchdog\nOperation not cancellable. Please wait for it to finish...\nPerforming start operation on service rbd...\nSuccessfully started service rbd\n<\/code><\/pre>\n\n\n\n<p>That&#8217;s it \ud83d\ude09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently I changed my vCenter Certificate. But the AutoDeploy Service didn&#8217;t learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log<\/p>\n","protected":false},"author":1,"featured_media":1067,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[10,7],"tags":[],"class_list":["post-1043","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vcenter","category-vsphere"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn&#039;t learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Christoph Hochsticher\"\/>\n\t<meta name=\"google-site-verification\" content=\"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8\" \/>\n\t<link rel=\"canonical\" href=\"http:\/\/vblog.hochsticher.de\/?p=1043\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Chris - vBlog - Blog about Virtualization\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"AutoDeploy errors after vCenter Certificate change - Chris - vBlog\" \/>\n\t\t<meta property=\"og:description\" content=\"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn&#039;t learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot\" \/>\n\t\t<meta property=\"og:url\" content=\"http:\/\/vblog.hochsticher.de\/?p=1043\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-02-16T09:19:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-03-16T21:51:13+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"AutoDeploy errors after vCenter Certificate change - Chris - vBlog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn&#039;t learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#blogposting\",\"name\":\"AutoDeploy errors after vCenter Certificate change - Chris - vBlog\",\"headline\":\"AutoDeploy errors after vCenter Certificate change\",\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/vSphere-Icon-Color-2020.png?wsr\",\"width\":356,\"height\":256},\"datePublished\":\"2022-02-16T10:19:39+01:00\",\"dateModified\":\"2023-03-16T22:51:13+01:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#webpage\"},\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#webpage\"},\"articleSection\":\"vCenter, vSphere\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=7#listItem\",\"name\":\"vSphere\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=7#listItem\",\"position\":2,\"name\":\"vSphere\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=7\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#listItem\",\"name\":\"AutoDeploy errors after vCenter Certificate change\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#listItem\",\"position\":3,\"name\":\"AutoDeploy errors after vCenter Certificate change\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=7#listItem\",\"name\":\"vSphere\"}}]},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1\",\"name\":\"Christoph Hochsticher\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Christoph Hochsticher\"}},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#webpage\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043\",\"name\":\"AutoDeploy errors after vCenter Certificate change - Chris - vBlog\",\"description\":\"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn't learned the new vCenter Certificate. So I got errors in \\\/var\\\/log\\\/vmware\\\/rbd\\\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#breadcrumblist\"},\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"creator\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/vSphere-Icon-Color-2020.png?wsr\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043\\\/#mainImage\",\"width\":356,\"height\":256},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=1043#mainImage\"},\"datePublished\":\"2022-02-16T10:19:39+01:00\",\"dateModified\":\"2023-03-16T22:51:13+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/\",\"name\":\"Chris - vBlog\",\"description\":\"Blog about Virtualization\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"AutoDeploy errors after vCenter Certificate change - Chris - vBlog","description":"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn't learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot","canonical_url":"http:\/\/vblog.hochsticher.de\/?p=1043","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#blogposting","name":"AutoDeploy errors after vCenter Certificate change - Chris - vBlog","headline":"AutoDeploy errors after vCenter Certificate change","author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2022\/02\/vSphere-Icon-Color-2020.png?wsr","width":356,"height":256},"datePublished":"2022-02-16T10:19:39+01:00","dateModified":"2023-03-16T22:51:13+01:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=1043#webpage"},"isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/?p=1043#webpage"},"articleSection":"vCenter, vSphere"},{"@type":"BreadcrumbList","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","position":1,"name":"Home","item":"http:\/\/vblog.hochsticher.de","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=7#listItem","name":"vSphere"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=7#listItem","position":2,"name":"vSphere","item":"http:\/\/vblog.hochsticher.de\/?cat=7","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#listItem","name":"AutoDeploy errors after vCenter Certificate change"},"previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#listItem","position":3,"name":"AutoDeploy errors after vCenter Certificate change","previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=7#listItem","name":"vSphere"}}]},{"@type":"Person","@id":"http:\/\/vblog.hochsticher.de\/?author=1#author","url":"http:\/\/vblog.hochsticher.de\/?author=1","name":"Christoph Hochsticher","image":{"@type":"ImageObject","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g","width":96,"height":96,"caption":"Christoph Hochsticher"}},{"@type":"WebPage","@id":"http:\/\/vblog.hochsticher.de\/?p=1043#webpage","url":"http:\/\/vblog.hochsticher.de\/?p=1043","name":"AutoDeploy errors after vCenter Certificate change - Chris - vBlog","description":"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn't learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot","inLanguage":"en-US","isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/#website"},"breadcrumb":{"@id":"http:\/\/vblog.hochsticher.de\/?p=1043#breadcrumblist"},"author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"creator":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2022\/02\/vSphere-Icon-Color-2020.png?wsr","@id":"http:\/\/vblog.hochsticher.de\/?p=1043\/#mainImage","width":356,"height":256},"primaryImageOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=1043#mainImage"},"datePublished":"2022-02-16T10:19:39+01:00","dateModified":"2023-03-16T22:51:13+01:00"},{"@type":"WebSite","@id":"http:\/\/vblog.hochsticher.de\/#website","url":"http:\/\/vblog.hochsticher.de\/","name":"Chris - vBlog","description":"Blog about Virtualization","inLanguage":"en-US","publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"}}]},"og:locale":"en_US","og:site_name":"Chris - vBlog - Blog about Virtualization","og:type":"article","og:title":"AutoDeploy errors after vCenter Certificate change - Chris - vBlog","og:description":"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn't learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot","og:url":"http:\/\/vblog.hochsticher.de\/?p=1043","article:published_time":"2022-02-16T09:19:39+00:00","article:modified_time":"2023-03-16T21:51:13+00:00","twitter:card":"summary_large_image","twitter:title":"AutoDeploy errors after vCenter Certificate change - Chris - vBlog","twitter:description":"Recently I changed my vCenter Certificate. But the AutoDeploy Service didn't learned the new vCenter Certificate. So I got errors in \/var\/log\/vmware\/rbd\/rbd-syslog.log Server has wrong SHA thumbprint: b6400b7d184a6c47a00cfb9e1ec7e739e8bf472b (required) != 37d257791d978852037c4bbea74d777409bea71d (server) err rbd [38480]pluginmaster:ERROR:exception:rbdplugins.addhost.vmwProvisionHost -- Server has wrong SHA thumbprint: 6307cf0a1c33fb9a0b6bbf0f8c29616cf12e9966 (required) != f64c7235b432187c1e55ace1aeef640551c72d8c (server) AutoDeploy partially continues to work. Configured Hosts could boot"},"aioseo_meta_data":{"post_id":"1043","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-03-16 21:43:03","updated":"2025-06-03 21:21:48","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\/?cat=7\" title=\"vSphere\">vSphere<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAutoDeploy errors after vCenter Certificate change\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"http:\/\/vblog.hochsticher.de"},{"label":"vSphere","link":"http:\/\/vblog.hochsticher.de\/?cat=7"},{"label":"AutoDeploy errors after vCenter Certificate change","link":"http:\/\/vblog.hochsticher.de\/?p=1043"}],"_links":{"self":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/1043","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1043"}],"version-history":[{"count":10,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/1043\/revisions"}],"predecessor-version":[{"id":1087,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/1043\/revisions\/1087"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/media\/1067"}],"wp:attachment":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1043"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1043"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1043"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}