1. 程式人生 > >阿里雲Centos7安裝sqlserver2017

阿里雲Centos7安裝sqlserver2017

mkdir -p /opt/sqlserver2017

cd /opt/sqlserver2017/

 wget https://packages.microsoft.com/rhel/7/mssql-server-2017/mssql-server-14.0.1000.169-2.x86_64.rpm

rpm -ivh mssql-server-14.0.1000.169-2.x86_64.rpm 



報錯,安裝依賴包。

yum install bzip2
yum install gdb
yum install libsss_nss_idmap

重新執行:

rpm -ivh mssql-server-14.0.1000.169-2.x86_64.rpm 

成功安裝!

配置:

[[email protected] sqlserver2017]# /opt/mssql/bin/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.

Details about editions can be found at
https://go.microsoft.com/fwlink/?LinkId=852748&clcid=0x409

Use of PAID editions of this software requires separate licensing through a
Microsoft Volume Licensing program.
By choosing a PAID edition, you are verifying that you have the appropriate
number of licenses in place to install and run this software.

Enter your edition(1-8): 2
The license terms for this product can be found in
/usr/share/doc/mssql-server or downloaded from:
https://go.microsoft.com/fwlink/?LinkId=855862&clcid=0x409

The privacy statement can be viewed at:
https://go.microsoft.com/fwlink/?LinkId=853010&clcid=0x409

Do you accept the license terms? [Yes/No]:Yes

Enter the SQL Server system administrator password: 
Confirm the SQL Server system administrator password: 
Configuring SQL Server...

Created symlink from /etc/systemd/system/multi-user.target.wants/mssql-server.service to /usr/lib/systemd/system/mssql-server.service.
Setup has completed successfully. SQL Server is now starting.
[
[email protected]
sqlserver2017]#

驗證:

systemctl status mssql-server

 

停止、啟動或重啟 SQL Server 服務
 

systemctl stop mssql-server
systemctl start mssql-server
systemctl restart mssql-server

日誌檔案
 

/var/opt/mssql/log/errorlog

安裝 sqlcmd 和 bcp SQL Server 命令列工具

wget https://packages.microsoft.com/rhel/7.3/prod/msodbcsql-13.1.6.0-1.x86_64.rpm
wget https://packages.microsoft.com/rhel/7.3/prod/mssql-tools-14.0.5.0-1.x86_64.rpm

安裝:

yum localinstall msodbcsql-13.1.6.0-1.x86_64.rpm
yum localinstall mssql-tools-14.0.5.0-1.x86_64.rpm

設定環境變數:

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

測試資料庫連線:

sqlcmd -S localhost -U sa

輸入密碼