How to break the limits of MSSQL for Linux 3.5G memory

Source: Internet
Author: User
Tags mssql

In a blog that mainly describes how to install and configure MSSQL in CentOS, in the installation process encountered 3.5G memory limitations, the following describes how to crack,

Microsoft released SQL Server for Linux, but the installation actually needs 3.5GB of memory, which makes most of the cloud host users can not try this new thing this article I will explain how to crack this memory limit to see the key can jump directly to the 6th step, only need to replace 4 bytes to break the limit

First, follow the steps given by Microsoft to install and configure the Https://docs.microsoft.com/zh-cn/sql/linux/sql-server-linux-setup-red-hat

This error can be seen when executing/opt/mssql/bin/sqlservr-setup

Sqlservr:this program requires a and at least 3250 megabytes of memory.

Find messages by error text in which file

[Email protected] ~]# cd/opt/mssql/bin/[[email protected] bin]# Grep-irn "3250" [[email protected] bin]# Grep-irn "Mega  bytes of memory "Binary file sqlpackage matchesbinary file sqlpackage matchesbinary file sqlservr matches[[email protected] bin]# Strings sqlservr | grep "Megabytes of Memory"%s:this program requires a and at least%zu megabytes of memory. [Email protected] bin]# Strings Sqlpackage | grep "Megabytes of Memory"%s:this program requires a and at least%zu megabytes of memory.

It seems that sqlservr and Sqlpackage will detect this limitation, and this limit is a constant

Find the location of the error message

[Email protected] bin]# Hexdump-c sqlservr | Less

Find this place

0006baf0  6e (  3a  )------------%s:this p|0006bb00  2-  |rogram requires |

You can see the location of the message in 0006BAF6.

Find the location where the error message was invoked

[Email protected] bin]# objdump-c-S sqlservr | Less

Find this place

23940:       8d + af Bayi    0x481af (%rip),%rsi        # 6baf6   23947:       c0                   xor    %eax,%eax< c8/>23949:                %rcx,%rdx CA mov   2394c:       d9                mov    %rbx,%rcx   2394f:       E8 6c e4 fe ff          callq  11dc0 <[email protected]>   23954:       Bf-xx-xx          mov    $0x1, %edi   23959:       E8 E2 E1 FE ff          callq  11B40 <[email protected]>

The function of judging is here

238e0:55 push%rbp 238e1:48 e5 mov%rsp,%rbp 238e4:53  Push%RBX 238e5:48 (EC) $0X78,%RSP//The second parameter received by this function is placed in the RBX//reference    Https://en.wikipedia.org/wiki/X86_calling_conventions (System V AMD64 ABI) 238e9:48 F3 mov       %RSI,%RBX//Call SysInfo Get memory Size//RDI is the first parameter, is a struct in the stack sysinfo//reference Https://linux.die.net/man/2/sysinfo 238EC: 8d 7d lea-0x78 (%RBP),%rdi 238f0:e8 3b E3 fe ff CALLQ 11C30 <[email  Protected]>//offset is calculated as follows// -0x78:uptime (beginning address of struct sysinfo)// -0x70:loads[3]// -0x58:totalram// -0x50 : Freeram// -0x48:sharedram// -0x40:bufferram// -0x38:totalswap// -0x30:freeswap// -0x28:procs (short for What accounts for 8 of bytes? See https://en.wikipedia.org/wiki/Data_structure_alignment)// -0x20:totalhigh// -0x18:freehigh// -0x10:mem_unit ( Similarly, an int 4 bytes AligN 4 bytes)//Calculated Rax = Totalram * Mem_unit 238f5:8b F0 mov-0x10 (%RBP),%eax 238f8:48 0f af A8 imul-0x58 (%RBP),%rax//If Rax is less than RBX jump to 23909, that is, display memory is low and exit 238fd:48-D8 cm P%rbx,%rax 23900:72-jb 23909 23902:48-C4-add $0x78,%rs                      P 23906:5b pop%rbx 23907:5d pop%rbp 23908:c3 Retq

Call the code of the function to judge here

Here the second parameter is 3250000000, you can see the memory limit value is a constant   //0xc1b71080 = 3250000000   1486a: Be       B7 C1          mov    $ 0xc1b71080,%esi   1486f:       4c E7                mov    %r12,%rdi   14872:  E8 F0 238e0

By Hexdump find out how many places with the B7 C1, the result is only one place

00014860 (  E8)  : DF-B7 C1 4c  |. H...f ..... l|00014870  E7 E8 F0 (0f)  c0 0f. FF FF  |...i .... W..). p..|

Use Python to modify the code to determine the condition of the JB or change 8010b7c1, I will change the 8010b7c1 to a smaller value 0080841e (512M)

In fact, the above content I do not understand, ashamed, direct copy paste over, the general meaning should be to find out where the memory has been limited, the following content is the main, so if we do not understand the Bo friends can directly use the following steps to crack, pay attention to switch their own MSSQL Bin directory Use the following command:

[[Email protected] bin]# mv sqlservr sqlservr.old[[email protected] bin]# python>>> a = open ("Sqlservr.old", "RB" ). Read () >>> B = A.replace ("\x80\x10\xb7\xc1", "\x00\x80\x84\x1e") >>> open ("sqlservr", "WB"). Write ( b) [[email protected] bin]# chmod +x sqlservr

If you are afraid of typing error, please copy and paste directly, and then re-visit our installation steps./mssql-conf Setup can be installed successfully.

You can continue to replace the limit values in Sqlpackage, but you can also use them without replacing them.

Continue configuring SQL Server

[Email protected] bin]#/opt/mssql/bin/sqlservr-setup[[email protected] bin]# systemctl status Mssql-server

If you do not see the service start after executing the command, it is possible that the previous configuration did not succeed in deleting the MSSQL Data folder and try again

[Email protected] bin]# rm-rf/var/opt/mssql[[email protected] bin]#/opt/mssql/bin/sqlservr-setup

After normal startup, you can see

Mssql-server.service-microsoft (r) SQL Server (r) Database Engine loaded:loaded (/usr/lib/systemd/system/mssql-server . Service; Enabled Vendor preset:disabled) active:active (running) since Mon 2016-12-05 22:50:06 EST;           20s ago Main pid:2625 (sqlservr) CGroup:/system.slice/mssql-server.service├─2625/opt/mssql/bin/sqlservr      └─2638/opt/mssql/bin/sqlservrdec 22:50:10 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:10.85 spid17s Server is listening on [0.0.0.0 ... 433]. Dec 22:50:10 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:10.87 server server is listening on [127.0.0. ... 434]. Dec 22:50:10 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:10.89 Server Dedicated admin connection suppor ... 1434.Dec 22:50:10 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:10.89 spid17s SQL Server is now-ready for Clien...ired. Dec 22:50:11 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:11.77 spid6s Starting up database ' tempdb '. Dec 22:50:12 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:12.02 spid6s The tempdb database has 1 data fi Le (s). Dec 22:50:12 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:12.02 spid20s The Service Broker endpoint is in ... Tate. Dec 22:50:12 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:12.03 spid20s The Database mirroring endpoint I ... Tate. Dec 22:50:12 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:12.09 spid20s Service Broker Manager has Starte D.dec 22:50:12 localhost.localdomain sqlservr[2625]: 2016-12-06 03:50:12.14 spid5s Recovery is complete. This is a ... ired. Hint:some lines were ellipsized, use-l to show on full.

You can also use the command line tool provided by Microsoft after successful startup, or you can use a client connection on Windows https://docs.microsoft.com/zh-cn/sql/linux/ Sql-server-linux-setup-tools is 2G RAM running on MSSQL



This article turns from decoding SQL Server for Linux preview 3.5GB memory limit (Rhel chapter)

How to break the limits of MSSQL for Linux 3.5G memory

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.