A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
Hi Mireia,
It sounds like you've done a lot of troubleshooting already! The error you're encountering, "Server's host key did not match the signature supplied," typically points to an issue with the SSH host key verification.
Here are a few steps you can try to resolve this:
- Check Known Hosts File: Ensure that the SSH host key for your RedHat VM is correctly listed in the
.ssh/known_hostsfile on the SCOM server. If there's a mismatch, you might need to remove the old entry and re-add the correct one. - Update OpenSSH Version: Make sure your OpenSSH version is up-to-date. For RHEL 9.4, it's recommended to use OpenSSH version 8.7p1-29 or later.
- Verify Host Key: Manually verify the SSH host key on your RedHat VM. You can do this by running:
Compare this key with the one stored in thessh-keygen -lf /etc/ssh/ssh_host_rsa_key.pub.ssh/known_hostsfile on the SCOM server. - Recreate SSH Keys: If the host key is incorrect, you might need to regenerate the SSH keys on your RedHat VM:
sudo rm /etc/ssh/ssh_host_* sudo dpkg-reconfigure openssh-server