在Oracle Linux 7上通过官方Repo在线安装SQL Server 2017

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Oracle Linux 7上通过官方Repo在线安装SQL Server 2017相关的知识,希望对你有一定的参考价值。

挂载数据盘

技术分享图片

技术分享图片

技术分享图片

技术分享图片

#vgdispaly的Total PE

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片


安装SQL Server服务端

1.下载SQL Server Red Hat Repository配置文件:

curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2017.repo

技术分享图片


2.安装SQL Server实例

yum install -y mssql-server

技术分享图片


3.运行mssql-conf setup按照提示配置,选择版本、设置SA密码。

/opt/mssql/bin/mssql-conf setup

技术分享图片


4.验证服务是否正常运行:

systemctl status mssql-server

技术分享图片


5.禁用firewalld

systemctl status firewalld
systemctl stop firewalld
systemctl disable firewalld

技术分享图片


6.禁用selinux

getenforce
setenforce 0
vi /etc/sysconfig/selinux

修改SELINUX值为disabled

技术分享图片


安装SQL Server命令行工具

若要创建数据库时,需要使用一种工具,可以在 SQL Server 上运行的 Transact SQL 语句进行连接。 以下是 SQL Server 命令行工具: sqlcmd和bcp。


1.下载Red Hat Repo配置文件。

curl -o /etc/yum.repos.d/msprod.repo https://packages.microsoft.com/config/rhel/7/prod.repo


2.卸载旧版的unixODBC包。

yum remove unixODBC-utf16 unixODBC-utf16-devel


3.安装命令行工具

yum install -y mssql-tools unixODBC-devel


4.将/opt/mssql-tools/bin/添加到PATH环境变量。

echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc
source ~/.bashrc


本地连接

技术分享图片

以上是关于在Oracle Linux 7上通过官方Repo在线安装SQL Server 2017的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server on Linux

在CentOS7系统上安装MySQL数据库

Oracle Database 19c Installation On CentOS7.7 In Silent Mode

在centOS 7安装mysql 5.7。

linux实战应用案例: 如何在 Linux 安装 MySQL 8 数据库?(图文详细教程)

linux实战应用案例: 如何在 Linux 安装 MySQL 8 数据库?(图文详细教程)