{
  "id": "linux-swap",
  "title": "Configure swap for Linux",
  "url": "https://redis.io/docs/latest/operate/rs/7.8/installing-upgrading/configuring/linux-swap/",
  "summary": "Turn off Linux swap space.",
  "content": "Linux operating systems use swap space, which is enabled by default, to help manage memory (pages) by\ncopying pages from RAM to disk. Due to the way Redis Enterprise Software\nutilizes and manages memory, it is best to prevent OS swapping. For more details, see [memory limits](). The\nrecommendation is to turn off Linux swap completely in the OS.\n\nWhen you install or build the OS on the machine intended to host your Redis Enterprise Software cluster, avoid configuring swap partitions if possible.\n\n## Turn off swap\n\nTo turn off swap in the OS of an existing server, VM, or instance, you\nmust have `sudo` access or be a root user to run the following commands.\n\nTurn off swap:\n\n```sh\nsudo swapoff -a\n```\n\nTo ensure swap remains off even after a reboot:\n\n1. Open `/etc/fstab` in a text editor and locate the entry that defines the swap space.\n\n    Example swap space entries:\n\n    ```sh\n    /swapfile   none    swap    sw      0       0\n    ```\n\n    ```sh\n    UUID=1d5e1de7-226d-4f60-a99c-f7a31a045c59 none            swap    defaults        0 0\n    ```\n\n1. Comment out the swap space entry, then save the file.\n\n    Example swap space entries commented out:\n\n    ```sh\n    #/swapfile   none    swap    sw      0       0\n    ```\n\n    ```sh\n    #UUID=1d5e1de7-226d-4f60-a99c-f7a31a045c59 none            swap    defaults        0 0\n    ```\n",
  "tags": ["docs","operate","rs"],
  "last_updated": "2026-04-01T08:10:08-05:00"
}

