Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ad5c25f

Browse files
Merge pull request #28030 from seantleonard/dev/seantleonard/sql2022ubuntu2004MLSchangesR
Update SQL 2022 Linux (Ubuntu 20.04) MLS install reqs and update known issues
2 parents 9e0e25d + a8c28d7 commit ad5c25f

2 files changed

Lines changed: 25 additions & 2 deletions

File tree

docs/linux/sql-server-linux-setup-machine-learning-sql-2022.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ Available installation packages for [!INCLUDE [sssql22-md](../includes/sssql22-m
5252

5353
## Install mssql-server-extensibility package
5454

55-
1. [Configure Linux Repositories](sql-server-linux-change-repo.md) corresponding to the Linux distribution. Install the SQL Server extensibility feature with the package `mssql-server-extensibility`.
55+
1. [Configure Linux Repositories](sql-server-linux-change-repo.md) corresponding to the Linux distribution. Install the SQL Server extensibility feature with the package `mssql-server-extensibility` and associated dependency `libssl-dev`.
5656

5757
**Ubuntu**
5858
```bash
59-
sudo apt-get install mssql-server-extensibility
59+
sudo apt-get install mssql-server-extensibility libssl-dev
6060
```
6161

6262
**RHEL**

docs/machine-learning/troubleshooting/known-issues-for-sql-server-machine-learning-services.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,29 @@ sudo cp /opt/mssql/lib/libc++abi.so.1 /opt/mssql-extensibility/lib/
770770

771771
**Applies to:** [!INCLUDE [sssql19-md](../../includes/sssql19-md.md)] on Linux
772772

773+
### Generic error when running `sp_execute_external_script` on Ubuntu 20.04 with SQL Server 2022 CU6 on Linux
774+
775+
Installing SQL Server 2022 CU6 for Linux on Ubuntu 20.04 can result in the following error when running `sp_execute_external_script`
776+
for R and Python scripts:
777+
778+
```output
779+
Msg 39012, Level 16, State 14, Line 0
780+
Unable to communicate with the runtime for 'R' script for request id: 94257840-1704-45E8-83D2-2F74AEB46CF7. Please check the requirements of 'R' runtime.
781+
782+
STDERR message(s) from external script:
783+
/usr/lib/R/library/RevoScaleR/rxLibs/x64/libExaCore.so.2(_Z21CriticalSignalHandleri+0x29)[0x7f2568289d89]
784+
/usr/lib/x86_64-linux-gnu/libc.so.6(+0x43090)[0x7f2568d66090]
785+
```
786+
787+
#### Workaround
788+
789+
Run the following command to install the package dependency `libssl-dev`, which enables SQL Server to resolve the system provided shared libraries `libssl` and `libcrypto`.
790+
791+
```bash
792+
sudo apt-get update
793+
sudo apt-get install libssl-dev
794+
```
795+
773796
### <a id="modprobe"></a> Firewall rule creation error in `modprobe` when running `mssql-launchpadd` on Linux
774797

775798
When viewing the logs of `mssql-launchpadd` using `sudo journalctl -a -u mssql-launchpadd`, you might see a firewall rule creation error similar to the following output.

0 commit comments

Comments
 (0)