使用 brew 安装了 mssql-tools 后,用 sqlcmd 连接 SQL Server 2014 执行 SQL 脚本出现如下报错:文章来源:https://www.toymoban.com/news/detail-575281.html
Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : SSL Provider: [OpenSSL library could not be loaded, make sure OpenSSL 1.0 or 1.1 is installed].
Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : Client unable to establish connection.
解决方法:
将软链接 /usr/local/opt/openssl 的源文件从 openssl@3.0 换成 openssl@1.1.文章来源地址https://www.toymoban.com/news/detail-575281.html
brew install openssl@1.1
ls -l /usr/local/opt/openssl
cd /usr/local/opt/
rm -f openssl
ln -s ../Cellar/openssl\@1.1/1.1.1o openssl
到了这里,关于MacOS Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : OpenSSL library could not be loaded的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!