Changes between Version 84 and Version 85 of InstallationGuidelines/Amazon
- Timestamp:
- 08/29/14 10:23:50 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Amazon
v84 v85 84 84 }}} 85 85 86 == Add Swap partition == 87 You can add a swap partition in order to improve performance further: 88 * Create Volume in AWS Console (e.g. 4Gb) 89 * Attach as /dev/sdf 90 {{{ 91 sudo su - 92 swapoff -a 93 mkswap /dev/xvdf 94 swapon -a 95 # Make persistent across reboots 96 cat << EOF >> "/etc/fstab" 97 /dev/xvdf swap swap defaults 0 0 98 EOF 99 rm -f /swapfile1 100 101 }}} 86 102 == Add Storage == 87 103 If you need an additional disk for Storage then configure a volume in the AWS console, attach as /dev/sdb1, then in Linux: