Microsoft SQL 服务器安装错误(PARrot OS)

Microsoft SQL Server Installation error(PArrot OS)

我一直在尝试在我的 lInux 机器上安装 Microsoft SQL 服务器,但它一直抛出相同的错误,即使按照此平台上给出的说明进行操作也是如此。

当我运行:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

它抛出这个错误:

Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 95, in <module>
    sp = SoftwareProperties(options=options)
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 103, in __init__
    self.sourceslist = SourcesList()
  File "/usr/lib/python3/dist-packages/aptsources/sourceslist.py", line 276, in __init__
    self.refresh()
  File "/usr/lib/python3/dist-packages/aptsources/sourceslist.py", line 292, in refresh
    self.matcher.match(source)
  File "/usr/lib/python3/dist-packages/aptsources/sourceslist.py", line 484, in match
    if (re.search(template.match_uri, source.uri) and
  File "/usr/lib/python3.9/re.py", line 201, in search
    return _compile(pattern, flags).search(string)
  File "/usr/lib/python3.9/re.py", line 304, in _compile
    p = sre_compile.compile(pattern, flags)
  File "/usr/lib/python3.9/sre_compile.py", line 764, in compile
    p = sre_parse.parse(p, flags)
  File "/usr/lib/python3.9/sre_parse.py", line 948, in parse
    p = _parse_sub(source, state, flags & SRE_FLAG_VERBOSE, 0)
  File "/usr/lib/python3.9/sre_parse.py", line 443, in _parse_sub
    itemsappend(_parse(source, state, verbose, nested + 1,
  File "/usr/lib/python3.9/sre_parse.py", line 834, in _parse
    p = _parse_sub(source, state, sub_verbose, nested + 1)
  File "/usr/lib/python3.9/sre_parse.py", line 443, in _parse_sub
    itemsappend(_parse(source, state, verbose, nested + 1,
  File "/usr/lib/python3.9/sre_parse.py", line 834, in _parse
    p = _parse_sub(source, state, sub_verbose, nested + 1)
  File "/usr/lib/python3.9/sre_parse.py", line 443, in _parse_sub
    itemsappend(_parse(source, state, verbose, nested + 1,
  File "/usr/lib/python3.9/sre_parse.py", line 668, in _parse
    raise source.error("nothing to repeat",
re.error: nothing to repeat at position 2

当我 运行:

sudo apt install mssql-server

它抛出以下错误:

The following packages have unmet dependencies:
 mssql-server : Depends: libssl1.0.0 but it is not installable
E: Unable to correct problems, you have held broken packages.

我无法安装 libssl1.0.0,因为它已经是最新版本了,libssl1.1

我该怎么办??

cat /etc/debian_version 的输出是 parrot

cat /etc/os-release的输出是

PRETTY_NAME="Parrot OS 5.0 (Electro Ara)"
NAME="Parrot OS"
VERSION_ID="5.0"
VERSION="5.0 (Electro Ara)"
VERSION_CODENAME=ara
ID=parrot
ID_LIKE=debian
HOME_URL="https://www.parrotsec.org/"
SUPPORT_URL="https://community.parrotsec.org/"
BUG_REPORT_URL="https://community.parrotsec.org/"

ParrotOS 是一个基于 Debian 的 Linux 发行版,专注于安全、隐私和开发。您可能想检查在其上安装 SQL 服务器的原因,也许您可​​能希望使用不同的发行版。

下面显示了如何在 ParrotOS 5.0 (ara) Docker 容器上安装 Microsoft SQL Server 2019...

./docker-compose.yml:

version: "3.8"
services:
  parrot:
    build: parrot
    container_name: parrot
    environment:
      - "ACCEPT_EULA=Y"
      - "SA_PASSWORD=StrongPassw0rd"
    ports:
      - "1433:1433"

./parrot/Dockerfile:

# REFs:
# 1. Parrot on Docker
#    https://parrotsec.org/docs/parrot-on-docker.html
# 2. SQL Server on Linux
#    https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-overview
# 3. Quickstart: Install SQL Server and create a database on Ubuntu
#    https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu
FROM parrotsec/core:5.0.0
RUN apt-get update
RUN apt-get install --yes wget
RUN wget -qO- https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN wget -qO- https://packages.microsoft.com/config/ubuntu/20.04/mssql-server-2019.list > /etc/apt/sources.list.d/mssql-server-2019.list
RUN apt-get update
RUN apt-get install --yes mssql-server
USER mssql
EXPOSE 1433
ENTRYPOINT [ "/opt/mssql/bin/sqlservr" ]

在 运行 docker-compose up --build 之后,您可以连接到 运行 容器(在本例中,来自 Docker 主机)以执行 SQL 查询...

$ sqlcmd -S localhost,1433 -U sa -P StrongPassw0rd
1> SELECT GETDATE()
2> GO
                       
-----------------------
2022-05-28 11:36:37.783

(1 rows affected)