Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 7ac994a

Browse files
Merge pull request #8391 from chiranjeevi-cj/7391-linux-kernel-info-update
Updated the Linux kernel info on the software page
2 parents 042bf9e + 661b00a commit 7ac994a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/guides/v2.3/performance-best-practices/software.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ See [Magento 2.2.x technology stack requirements]({{page.baseurl}}/install-gde/s
2424

2525
## Operating system
2626

27-
Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" and "recycle" TCP connections. Be aware that more aggressive recycling than re-use may cause issues on the load balancers. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
27+
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:
28+
29+
{:.bs-callout-info}
30+
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.
2831

2932
```terminal
30-
net.ipv4.tcp_tw_recycle = 1
3133
net.ipv4.tcp_tw_reuse = 1
3234
```
3335

src/guides/v2.4/performance-best-practices/software.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ See [Magento technology stack requirements]({{page.baseurl}}/install-gde/system-
2424

2525
## Operating system
2626

27-
Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" and "recycle" TCP connections. Be aware that more aggressive recycling than re-use may cause issues on the load balancers. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
27+
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:
28+
29+
{:.bs-callout-info}
30+
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.
2831

2932
```terminal
30-
net.ipv4.tcp_tw_recycle = 1
3133
net.ipv4.tcp_tw_reuse = 1
3234
```
3335

0 commit comments

Comments
 (0)