RDS Class max_connections
t1.micro 34m1.small 125m1.medium 296m1.large 623m1.xlarge 1263m2.xlarge 1441m2.2xlarge 2900m2.4xlarge 5816
First of all, you need to carefully select the region where you are going to stablish your servers.
US-EAST / US-WEST-2 are the cheaper regions by the time that i wrote.
You can check the prices per regions on the links at the end of this post.
Using AWS for almost a year in free tier, i did not paid attention to purchasing options of instances.
To change timezone in ubuntu, just use that in terminal:
sudo dpkg-reconfigure tzdata
With my t1.micro, i can host my personal redmine, git and blog. But i couldn’t do that with default settings.
I have used swap on file to it and here is how you can do it:
Copy & paste the code below:
sudo su -c 'dd if=/dev/zero of=/var/swapfile bs=4096 count=524288chown root:root /var/swapfilechmod 0600 /var/swapfilemkswap /var/swapfileswapon /var/swapfileecho "/var/swapfile none swap sw 0 0" >> /etc/fstab'
To disable you can use:
sudo swapoff -v /var/swapfilesudo rm /var/swapfilesudo sed -i '/swapfile/d' /etc/fstab