microsoft / omi

Open Management Infrastructure
Other
360 stars 114 forks source link

Ubuntu 22.04 LTS , OMI 1.7.0 issue with OpenSSL 3.0.2 #739

Closed DaedalusEH closed 1 year ago

DaedalusEH commented 1 year ago

Looks like OpenSSL 3.0.2 still not supported in OMI 1.7.0 ? The error that I am getting is that it only supports up to 1.1.0 .

Screenshot 2023-03-31 at 15 55 39
JumpingYang001 commented 1 year ago

@DaedalusEH I guess you followed the guide of 20.04? https://learn.microsoft.com/en-us/windows-server/administration/linux-package-repository-for-microsoft-software#ubuntu

please try use 22.04 repo instead of 20.04 repo,

  1. Remove your 20.04 repo at first.
    sudo apt-add-repository -r https://packages.microsoft.com/ubuntu/20.04/prod
  2. Add 22.04 repo and update.
    
    curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc

sudo apt-add-repository https://packages.microsoft.com/ubuntu/22.04/prod

sudo apt-get update

DaedalusEH commented 1 year ago

I guess the IT hasnt updated the microsoft repo when they delivered the OS to me (possibly they did upgrade from 20.04 to 22.04). Thanks for the guide, I removed the old repo installed the new one and that works fine now. Thanks. Closing down the issue as it is resolved.

JumpingYang001 commented 1 year ago

Good to know it. :)