Skip to content

Commit 83ab2c9

Browse files
authored
Merge pull request #3719 from rothja/memlimitrevert
Changing mistaken memory limit of 2 GB back to 3.25 GB
2 parents 4b36977 + d334a59 commit 83ab2c9

8 files changed

Lines changed: 8 additions & 8 deletions

docs/linux/quickstart-install-connect-red-hat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this quick start tutorial, you first install SQL Server 2017 on Red Hat Enter
2222
2323
## Prerequisites
2424

25-
You must have a RHEL 7.3 or 7.4 machine with **at least 2 GB** of memory.
25+
You must have a RHEL 7.3 or 7.4 machine with **at least 3.25 GB** of memory.
2626

2727
To install Red Hat Enterprise Linux on your own machine, go to [http://access.redhat.com/products/red-hat-enterprise-linux/evaluation](http://access.redhat.com/products/red-hat-enterprise-linux/evaluation). You can also create RHEL virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](https://docs.microsoft.com/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image RHEL` in the call to `az vm create`.
2828

docs/linux/quickstart-install-connect-suse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this quick start tutorial, you first install SQL Server 2017 on SUSE Linux En
2222
2323
## Prerequisites
2424

25-
You must have a SLES v12 SP2 machine with **at least 2 GB** of memory. The file system must be **XFS** or **EXT4**. Other file systems, such as **BTRFS**, are unsupported.
25+
You must have a SLES v12 SP2 machine with **at least 3.25 GB** of memory. The file system must be **XFS** or **EXT4**. Other file systems, such as **BTRFS**, are unsupported.
2626

2727
To install SUSE Linux Enterprise Server on your own machine, go to [https://www.suse.com/products/server](https://www.suse.com/products/server). You can also create SLES virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](https://docs.microsoft.com/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image SLES` in the call to `az vm create`.
2828

docs/linux/quickstart-install-connect-ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this quick start tutorial, you first install SQL Server 2017 on Ubuntu 16.04.
2222
2323
## Prerequisites
2424

25-
You must have a Ubuntu 16.04 machine with **at least 2 GB** of memory.
25+
You must have a Ubuntu 16.04 machine with **at least 3.25 GB** of memory.
2626

2727
To install Ubuntu on your own machine, go to [http://www.ubuntu.com/download/server](http://www.ubuntu.com/download/server). You can also create Ubuntu virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](https://docs.microsoft.com/azure/virtual-machines/linux/tutorial-manage-vm).
2828

docs/linux/sample-unattended-install-redhat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This sample Bash script installs SQL Server 2017 on Red Hat Enterprise Linux (R
2121
2222
## Prerequisites
2323

24-
- You need at least 2 GB of memory to run SQL Server on Linux.
24+
- You need at least 3.25 GB of memory to run SQL Server on Linux.
2525
- The file system must be **XFS** or **EXT4**. Other file systems, such as **BTRFS**, are unsupported.
2626
- For other system requirements, see [System requirements for SQL Server on Linux](sql-server-linux-setup.md#system).
2727

docs/linux/sample-unattended-install-suse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This sample Bash script installs SQL Server 2017 on SUSE Linux Enterprise Server
2121
2222
## Prerequisites
2323

24-
- You need at least 2 GB of memory to run SQL Server on Linux.
24+
- You need at least 3.25 GB of memory to run SQL Server on Linux.
2525
- The file system must be **XFS** or **EXT4**. Other file systems, such as **BTRFS**, are unsupported.
2626
- For other system requirements, see [System requirements for SQL Server on Linux](sql-server-linux-setup.md#system).
2727

docs/linux/sample-unattended-install-ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This sample Bash script installs SQL Server 2017 on Ubuntu 16.04 without interac
2121
2222
## Prerequisites
2323

24-
- You need at least 2 GB of memory to run SQL Server on Linux.
24+
- You need at least 3.25 GB of memory to run SQL Server on Linux.
2525
- The file system must be **XFS** or **EXT4**. Other file systems, such as **BTRFS**, are unsupported.
2626
- For other system requirements, see [System requirements for SQL Server on Linux](sql-server-linux-setup.md#system).
2727

docs/linux/sql-server-linux-configure-mssql-conf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ The **language.lcid** setting changes the SQL Server locale to any supported lan
288288

289289
The **memory.memorylimitmb** setting controls the amount physical memory (in MB) available to SQL Server. The default is 80% of the physical memory.
290290

291-
1. Run the mssql-conf script as root with the **set** command for **memory.memorylimitmb**. The following example changes the memory available to SQL Server to 2 GB (3328 MB).
291+
1. Run the mssql-conf script as root with the **set** command for **memory.memorylimitmb**. The following example changes the memory available to SQL Server to 3.25 GB (3328 MB).
292292

293293
```bash
294294
sudo /opt/mssql/bin/mssql-conf set memory.memorylimitmb 3328

docs/linux/sql-server-linux-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SQL Server 2017 has the following system requirements for Linux:
3737

3838
|||
3939
|-----|-----|
40-
| **Memory** | 2 GB (4 GB or more recommended) |
40+
| **Memory** | 3.25 GB |
4141
| **File System** | **XFS** or **EXT4** (other file systems, such as **BTRFS**, are unsupported) |
4242
| **Disk space** | 6 GB |
4343
| **Processor speed** | 2 GHz |

0 commit comments

Comments
 (0)