Author Archives: rodney

Now Open: AWS Region in Asia Pacific

“Businesses and developers in the Asia Pacific part of the world can now obtain their processing, storage, and other services on an economical, pay-as-you-go basis from resources located nearby.

We’ve just opened up an AWS Region in Singapore, with two Availability Zones. The new region supports Amazon EC2 (including Elastic IP Addresses, Amazon CloudWatch, Elastic Block Storage, Elastic Load Balancing, and Auto Scaling), Amazon S3, Amazon SimpleDB, the Amazon Relational Database Service, the Amazon Simple Queue Service, the Amazon Simple Notification Service, Amazon DevPay, and Amazon CloudFront. The page for each service includes full pricing information for the Singapore Region.

Read more here

Another Fabric Tutorial

I’ve been playing with  Python here and at the same time Fabric v.0.9 for simple deployment. This is a handy tool to manage several servers for application development,testing and production.

The code below is save to a file named fabfile.py

# Works with fabric v0.9
#
from fabric.api import run, env
from fabric.operations import local,put

def dev_server():
env.user = 'user_name'
env.hosts = ['testserver.domain.com']

def staging_server():
env.user = 'user_name'
env.hosts = ['staging.domain.com']

def production_server():
env.user = 'user_name'
env.hosts = [' prod1.domain.com', 'prod2.domain.com' ]

# define needed functions here.
def host_info():
print 'Checking lsb_release of host: ',  env.host
run('lsb_release -a')

def uptime():
run('uptime')

def simple_deploy():
put ('/tmp/testfile','/tmp')
#
# add deployment codes here

This assumes we can login to any of the server w/o ssh keypair.
See this link for setting up SSH without password.

Tip: Also if you have different keypair for each servers(dev,staging,production), you can add keypair using the command ssh-add. Continue reading