为 Linux 配置交换
关闭 Linux 交换空间。
Redis 企业软件 |
---|
Linux作系统使用默认启用的交换空间来帮助管理内存(页面) 将页面从 RAM 复制到磁盘。由于 Redis Enterprise Software 利用和管理内存,最好防止 OS 交换。有关更多详细信息,请参阅内存限制。这 建议在作系统中完全关闭 Linux 交换。
在用于托管 Redis Enterprise Software 集群的计算机上安装或构建作系统时,请尽可能避免配置交换分区。
关闭交换
要在现有服务器、VM 或实例的作系统中关闭交换,请执行以下作
必须具有sudo
访问或成为 root 用户以运行以下命令。
关闭交换:
sudo swapoff -a
To ensure swap remains off even after a reboot:
-
Open /etc/fstab
in a text editor and locate the entry that defines the swap space.
Example swap space entries:
/swapfile none swap sw 0 0
UUID=1d5e1de7-226d-4f60-a99c-f7a31a045c59 none swap defaults 0 0
-
Comment out the swap space entry, then save the file.
Example swap space entries commented out:
#/swapfile none swap sw 0 0
#UUID=1d5e1de7-226d-4f60-a99c-f7a31a045c59 none swap defaults 0 0
On this page