Logo

dev-resources.site

for different kinds of informations.

How to use AWS EBS volume as a swap memory

Published at
7/21/2018
Categories
aws
swap
ec2
ebs
Author
hardiksondagar
Categories
4 categories in total
aws
open
swap
open
ec2
open
ebs
open
Author
14 person written this
hardiksondagar
open
How to use AWS EBS volume as a swap memory

What is swap space?

Swap space in Linux can be used when a system requires more memory than it has been physically allocated (RAM). When swap space is enabled, Linux systems can swap infrequently used memory pages from physical memory to swap space (either a dedicated partition or a swap file in an existing file system) and free up that space for memory pages that require high-speed access. [1]

Step 1 - Create EBS Volume

Follow steps to create EBS Volume in AWS Console, that we'll use as a swap memory.

  1. Go to EC2 Dashboard
  2. Select EBS Volumes
  3. Create Volume
  4. Recommended size of swap volume is 2 times of RAM [2]
  5. Select availability zone same as your EC2 instance

Step 2 - Attach EBS Volume to EC2

Select EBS Volume that we just created for swap and your EC2 instance.

Step 3 - Set EBS Volume as swap space

Run lsblk to check new volume, it will appear as /dev/xvdf on instance.

$ lsblk
NAME    MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
xvda    202:0    0  256G  0 disk
└─xvda1 202:1    0  256G  0 part /
xvdf    202:80   0   32G  0 disk
Enter fullscreen mode Exit fullscreen mode

Set up the swap area

$ sudo mkswap /dev/xvdf
Enter fullscreen mode Exit fullscreen mode

Enable swap

$ sudo swapon /dev/xvdf
Enter fullscreen mode Exit fullscreen mode

Make this swap setting persist by adding following line in /etc/fstab

$ sudo nano /etc/fstab
/dev/xvdf none swap sw 0 0
Enter fullscreen mode Exit fullscreen mode

Step 4 - Check swap space

$ sudo swapon --show
NAME      TYPE      SIZE   USED PRIO
/dev/xvdf partition  32G 279.9M   -1
Enter fullscreen mode Exit fullscreen mode

Featured ones: