Changes between Version 63 and Version 64 of InstallationGuidelines/Amazon
- Timestamp:
- 08/06/13 11:03:29 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Amazon
v63 v64 62 62 63 63 == Add Swapfile == 64 *You can add swap from a swap file in order to improve performance (especially on a Micro instance):64 You can add swap from a swap file in order to improve performance (especially on a Micro instance): 65 65 {{{ 66 66 sudo su - … … 77 77 }}} 78 78 79 == Add Storage == 80 If you need an additional disk for Storage then configure a volume in the AWS console, attach as /dev/sdb1, then in Linux: 81 {{{ 82 sudo su - 83 fdisk /dev/xvdb1 84 n 85 (accept defaults) 86 w 87 mkfs.ext4 /dev/xvdb1 88 tune2fs -m 0 /dev/xvdb1 # Remove 5% reservation for reserved blocks 89 mkdir /data 90 cat << EOF >> "/etc/fstab" 91 /dev/xvdb1 /data ext4 defaults,barrier=0 1 1 92 EOF 93 mount /data 94 }}} 79 95 == Install == 80 96 * Copy the installation and configuration scripts into the launched instance (assuming [wiki:InstallationGuidelines/Linux/Server/CherokeePostgreSQL Cherokee & PostgreSQL]):