Hi Experts
I tried first time to install MSSQL Server 2019 to a new installed VM running SLES 15 SP4.
While installation of SLES 15 the following packages were selected:
- Basesystem Module
- Desktop Application Module
- Development Tools Module
- SUSE Linux Enterprise Workstation Extension 15
- Server Application Module
Then I started the installation procedure of MSSQL Server 2019 as described under https://learn.microsoft.com/de-de/sql/linux/quickstart-install-connect-suse?view=sql-server-linux-ver15
Everything is working fine until step 3 (install SQL Server) with the following command
- sudo zypper install -y mssql-server
I receive a warning message that
Retrieving repository 'packages-microsoft-com-mssql-server-2019' metadata .............................................................................................[done]
Building repository 'packages-microsoft-com-mssql-server-2019' cache ..................................................................................................[done]
Loading repository data...
Reading installed packages...
Resolving package dependencies...
Problem: nothing provides 'gdb' needed by the to be installed mssql-server-15.0.4249.2-1.x86_64
Solution 1: do not install mssql-server-15.0.4249.2-1.x86_64
Solution 2: break mssql-server-15.0.4249.2-1.x86_64 by ignoring some of its dependencies
Choose from above solutions by number or cancel [1/2/c/d/?] (c): c
the package "gdb" is easy installed with the following command:
- sudo zypper install -y gdb
But when repeating the installation I receive the next warning:
Retrieving repository 'packages-microsoft-com-mssql-server-2019' metadata .............................................................................................[done]
Building repository 'packages-microsoft-com-mssql-server-2019' cache ..................................................................................................[done]
Loading repository data...
Reading installed packages...
Resolving package dependencies...
Problem: nothing provides 'openldap2' needed by the to be installed mssql-server-15.0.4249.2-1.x86_64
Solution 1: do not install mssql-server-15.0.4249.2-1.x86_64
Solution 2: break mssql-server-15.0.4249.2-1.x86_64 by ignoring some of its dependencies
Choose from above solutions by number or cancel [1/2/c/d/?] (c): c
Now openldap2 is missing and I didn't find a SUSE repo which includes the package for manual installation. So I decided to ignore the dependencie and continued the installation with option 2. It seems the installation was done without additional errors and also MSSQL 2019 is running properly at the moment.
Are you aware about such installation issue or is something wrong with my SLES 15 installation. Related to many other documentations all of my steps were executed properly and it seems nobody else has such issues.
Also in official install docu nothing about these dependencies is described.