Linux下快速安装MSSQL教程(linux能装mssql)
MSSQL(Microsoft SQL Server)是由微软公司推出的一款关系性型数据库管理系统。它具有高稳定性、可靠性、出色的性能、安全性等特点,非常适合在企业中使用。本文以Linux系统为例,介绍了如何在Linux下快速安装MSSQL。
1、下载MSSQL软件包
要安装MSSQL,首先需要在MSSQL官网下载软件包:
[https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads](https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads)
选择Linux版本的开发与管理工具包,并选择对应的系统版本进行下载:
![](/assets/sql_download.png)
2、安装MSSQL
软件下载完毕后,使用如下命令进行安装:
sudo ./mssql-conf setup
配置安装类型:
Choose an edition of SQL Server:
1) Evaluation (free, no production use rights, 180-day limit)2) Developer (free, no production use rights)
3) Express (free)4) Web (PAID)
5) Standard (PAID)6) Enterprise (PAID)
7) Enterprise Core (PAID)8) I bought a license through a retail sales channel and have a product key to enter.
9) I have a product key from an MSDN subscription 10) I have a SQL Server Volume License and want to enter my product key
11) Quit Setup
输入你需要安装的版本
根据提示输入密码:
Enter the password for the system administrator (SA) account:
设置一个安全的密码
确认转换版本:
The existing instance will be upgraded and the latest version
will be installed. Do you wish to continue?
输入:y
安装完成:
Setup has completed successfully.
SQL Server is now starting.
3、测试MSSQL
安装完成之后,可以使用如下命令来测试MSSQL是否安装成功:
sqlcmd -S localhost -U SA -P 'password'
1> select @@version2> go
如果正确返回MSSQL的版本号信息则说明安装成功。
总结:
以上就是Linux下如何快速安装MSSQL的教程,希望能帮助到有需要的读者。安装完成之后,可以通过sqlcmd命令来测试和操作MSSQL,也可以使用一些可视化的工具进行管理,例如SQL Server Management Studio。