Cập nhật cert mới cho Send Connector trên Exchange Server

Ngày đăng: 2024-10-16 16:38:21 | Cập nhật: 2024-10-16 16:43:46

Sau khi cài đặt chứng thư số mới cho Exchange Server, có thể bạn cần phải chỉ định lại Send Connector áp dụng chứng thư số mới này. Nếu không sẽ gặp lỗi "454 4.7.5 The certificate specified in TlsCertificateName of the SendConnector could not be found". Trong trường hợp đó, bạn cần thực hiện như sau trên Exchange Management Shell:

$TLSCert = Get-ExchangeCertificate -Thumbprint <thumbprint-cua-cert-moi>
$TLSCertName = "$($TLSCert.Issuer)$($TLSCert.Subject)"
Get-SendConnector -identity "<ten-send-connector-vi-du-Outbound to Office 365 - 949ft71...>" | Set-SendConnector -TlsCertificateName $TLSCertName
Restart-Service MSExchangeTransport

Sau đó restart lại Microsoft Exchange Transport service.