Certificate Error in SCVMM and its Host Server

kchhetri 21 Reputation points
2021-12-09T10:10:51.633+00:00

Hi,

We have a SCVMM 2012 r2 server hosted on a VM. This manages two Hyper-V 2012r2 Physical hosts on a Cluster. I am getting a warning message on VMM Server which says:

Warning (20583)
The self-signed certificate for computer is either already expired or is about to expire within a month.

Recommended Action:
Remove and add the from VMM to get a new certificate.

Any suggestion as how to renew this certificate. Its a production server hence need to avoid downtime.

System Center Virtual Machine Manager
Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,571 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. XinGuo-MSFT 16,246 Reputation points
    2021-12-10T02:43:04.377+00:00

    Hello,

    We can delete the expired certificate, and then run the following cmdlets in PowerShell.

    1, Launch the VMM PowerShell on the Virtual Machine Manager server.

    2, Type the following and press enter:

    $credential = get-credential

    3, Type the username and password that is a local admin on the VMM server.

    4, Type the following and press enter:

    Get-SCVMMManagedComputer -ComputerName "vmm2012sp1.contoso.com" | Register-SCVMMManagedComputer -Credential $credential

    5, Ensure that the VMM job completes successfully under the Jobs tab in the VMM console.

    1 person found this answer helpful.

  2. Phil Salamone 1 Reputation point
    2021-12-15T18:37:30.13+00:00

    Thanks @XinGuo-MSFT those instructions worked perfectly for me!

    0 comments No comments