lighttpd 无法安装 - 依赖:libssl1.1 (>= 1.1.0) 但是它不会被安装

lighttpd 无法安装 - 依赖:libssl1.1 (>= 1.1.0) 但是它不会被安装

我一直试图lighttpd在运行 Ubuntu 18.04 的电脑上安装。我不断收到的错误是它有未满足的依赖项,即libssl1.1。但是,libssl1.1已经安装了。

   $ sudo apt-get install lighttpd
      Reading package lists... Done
      Building dependency tree       
      Reading state information... Done
      Some packages could not be installed. This may mean that you have
      requested an impossible situation or if you are using the unstable
      distribution that some required packages have not yet been created
      or been moved out of Incoming.
      The following information may help to resolve the situation:
    
      The following packages have unmet dependencies:
       lighttpd : Depends: libssl1.1 (>= 1.1.0) but it is not going to be installed
      E: Unable to correct problems, you have held broken packages.

的输出apt-cache policy libssl1.1

libssl1.1:
  Installed: 1.1.1a-2+ubuntu18.04.1+deb.sury.org+1
  Candidate: 1.1.1a-2+ubuntu18.04.1+deb.sury.org+1
  Version table:
 *** 1.1.1a-2+ubuntu18.04.1+deb.sury.org+1 500
        500 http://ppa.launchpad.net/ondrej/php/ubuntu bionic/main amd64 Packages
        100 /var/lib/dpkg/status
     1.1.0g-2ubuntu4.3 500
        500 http://zw.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages
     1.1.0g-2ubuntu4 500
        500 http://zw.archive.ubuntu.com/ubuntu bionic/main amd64 Packages

我不确定这里是否有我遗漏的东西。

答案1

我看到两个选择:

  • 尝试libssl手动安装(来自官方存储库的精确版本):

    sudo apt install libssl1.1=1.1.0g-2ubuntu4.3
    
  • 消除ppa:ondrej/php从系统:

    sudo apt install ppa-purge
    sudo ppa-purge ppa:ondrej/php
    

    然后安装lighttpd

    sudo apt install lighttpd
    

答案2

我也遇到了同样的问题。我下载了 lighttpd .deb 包并运行了 dpkg,它提供了更多信息:

libssl1.1:armhf (1.1.1a-2~20190131152537.8+stretch) breaks lighttpd (<< 1.4.49-2) and is installed.

因此,deb.sury.org 上的 libssl 1.1.1a 软件包似乎对于 debian 提供的 lighttpd 1.4.45 来说太新了。我删除了该软件包源并降级了 libssl,之后我可以安装 lighttpd。或者,您可以尝试获取 lighttpd 1.4.49 或更高版本。

答案3

最近,Ubuntu 发布了新的长期支持版本 22.04,由于不再支持 libssl1.1,因此无法安装 mongodb 我发现这是最好的方法 我们可以通过以下方法解决:

wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc |  gpg --dearmor | sudo tee /usr/share/keyrings/mongodb.gpg > /dev/null

echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list

sudo apt update

sudo apt install mongodb-org

相关内容