question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Fedora 26 requires compat-openssl10

See original GitHub issue

Steps to reproduce

Try to install the .NET Core 2.0 SDK in a Fedora 26 container, using the instructions at https://www.microsoft.com/net/core#linuxfedora.

Dockerfile

FROM fedora:26

RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \
    && sh -c 'echo -e "[packages-microsoft-com-prod]\nname=packages-microsoft-com-prod \nbaseurl=https://packages.microsoft.com/yumrepos/microsoft-rhel7.3-prod\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/dotnetdev.repo'

RUN dnf install -y libunwind libicu

RUN dnf install -y dotnet-sdk-2.0.0

RUN mkdir warmup \
    && cd warmup \
    && dotnet new \
    && cd .. \
    && rm -rf warmup \

Expected behavior

Install works.

Actual behavior

Crash during dnf install dotnet-sdk-2.0.0:

/var/tmp/rpm-tmp.Kob50o: line 26:    15 Aborted                 (core dumped) /usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/2.0.0/dotnet.dll internal-reportinstallsuccess "rpmpackage" > /dev/null 2>&1

And crash during dotnet new:

No usable version of the libssl was found

Fix

Install compat-openssl10 in addition to libunwind and libicu:


RUN dnf install -y libunwind libicu compat-openssl10

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:15 (15 by maintainers)

github_iconTop GitHub Comments

1reaction
mikehardercommented, Sep 11, 2017

In the meantime, should the docs at https://www.microsoft.com/net/core#linuxfedora be updated to include compat-openssl10 in addition to libunwind and libicu?

0reactions
mairawcommented, Sep 23, 2017

The change is live.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Fedora 26 : 1:compat-openssl10 (2018-1b4f1158e2)
Synopsis. The remote Fedora host is missing a security update. Description. Minor security update from upstream fixing CVE-2018-0739
Read more >
Security - Fedora Documentation
The introduction of OpenSSL 1.1.0 in Fedora 26 brings many big improvements ... There is also now a compat-openssl10 package in Fedora that...
Read more >
1625440 – openssl-devel conflicts with compat-openssl10- ...
Description of problem: This package seems to conflict with compat-openssl10-devel which is required by a large number of packages.
Read more >
Fedora 26 : 1:compat-openssl10 (2018-1b4f1158e2)
Try incredible fast Vulners Perimeter Scanner and find vulnerabilities and unnecessary ip and ports in network devices inside your network before anyone else....
Read more >
compat-openssl10 issues f34
I am trying to run some commercial software, Spartan18 Molecular Modelling, under F34. I have been running versions of the software for a ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found