|
|
To cater to ever more demanding business software applications, enterprises must take advantage of cutting edge, powerful hardware. The cost and burden of procuring, monitoring and maintaining these servers are increasing as the need for resource consumptions goes up. Also, any business critical application or an application that attracts large amount of traffic should be able to operate under those heavy loads. By purchasing the most powerful computer hardware will enable the enterprises to be able to operate smoothly under heavy loads. Realistically, most applications tend to have a low number of users initially and the load increases as the time goes by. Investing a lot of money on hardware would be of waste at first because of resource being utilized. The ideal scenario would be to start with low resources and adjust or increase the CPU/RAM and other resources as and when the need arises. Cloud computing solves this exact problem: You can adjust hardware resources according to the load received by your applications.
Amazon is a popular and reliable vendor providing cloud computing services. The ability to add and remove computing resources through a Web services interface makes the offering more compelling and provides endless integration opportunities. In this document we discuss how you can run WSO2 SOA products on top of computing resources provided by Amazon. This will apply to WSO2 Web Services Application Server (WSO2 WSAS) version 3.1.0, WSO2 Enterprise Service Bus (WSO2 ESB) version 2.1.0, WSO2 Business Process Server (WSO2 BPS) version 1.0.1, WSO2 Governance Registry (WSO2 GReg) version 3.0.0 and WSO2 Identity Server (WSO2 IS) version 2.0.0
There are huge benefits in using Amazon Machine Images (AMIs) over having your own servers and maintaining them. If you're eager to get started with the WSO2 Cloud offerings please feel free to skip to the next section. In this section we will list several advantages of using computing resources provided by Amazon rather than buying your own server to host your applications.
Let's move on to the details of how you can get started.
The following outlines the steps that should be taken prior to accessing the WSO2 cloud offerings.
In order to use Amazon EC2 offerings, you have to have an account with Amazon Web Services. You can easily create an Amazon Web Services account (AWS) from the Amazon Web Services home page (http://aws.amazon.com/). You can find more details about creating an AWS account in (http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/account.html).
Once the AWS account is created, you have to get the Amazon API tools from Amazon EC2 resource center (http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351&categoryID=88). This API tools are used as the client interface to manipulate Amazon EC2 instances such as registering and launching instances, manipulate security groups, etc. In order to install these tools, you have to have Java and SSH installed in your machine. You can find more details about the prerequisites in (http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/prerequisites.html) and installation guide for the tool in (http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/setting-up-your-tools.html).
When the tools are installed, you have to create a key pair before you can start and use EC2 instances. This keypair is used to login to the EC2 instance without providing a password. One key (private key) will be used in the client (your machine) while the other (public key) is used in the EC2 instance. This is very advantageous and allows you to use many public AMIs where the username and passwords are not configured/known. More information on how to create a key pair and how to use it can be found in (http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/running-an-instance.html).
WSO2 products are configured in following AMIs identified at the following location:
http://wso2.com/cloud/virtual-machines/amazon-ami.
WSO2 WSAS (AMI ID ami-d2a94bbb) is used as an example in this section. Similar commands can be used with other products by changing the AMI ID that are found at http://wso2.com/cloud/virtual-machines/amazon-ami.
You can start WSO2 WSAS AMI in an EC2 instance by using the following command:
ec2-run-instances ami-d2a94bbb -k <keypair> -f <payload.zip file>
Here, ec2-run-instances is a tool provided in Amazon API tool pack. If the command cannot be found, please check PATH variable and see whether Amazon tool pack is configured correctly. The first parameter is the AMI ID of WSO2 WSAS product. (To start other products, give corresponding AMI ID). The second parameter is your keypair you have created in section "Getting started with EC2". EC2 instance will be lauched by embedding public key of the keypair.
The third parameter is an optional parameter where you can pass a payload when starting the EC2 instance. This payload will be used to change some parameters of WSO2 WSAS (or other products) such as administrator username, administrator password, keyfiles used by the product, etc. This parameter should point to a zip file. The zip file should contain 3 files.
The first two files are keyfiles used by WSO2 WSAS. The third file contains collection of some other parameters in KEY=value format. It contains some compulsary parameters and some optional ones. Following are the possible KEY and the meaning of the key:
Compulsary parameters:PRODUCT=<product name> (WSO2_WSAS, WSO2_ESB, WSO2_BPS, WSO2_GREG, WSO2_IS) AWS_ACCESS_KEY_ID=<your aws access key id> AWS_SECRET_ACCESS_KEY=<your aws secret access key>Optional parameters
REPO_PATH_S3=<s3 bucket name to repository> or REPO_PATH_EBS=<repository path> and EBS_VOL_ID=<EBS volume ID> CONF_PATH_S3=<s3 bucket which contains configuration files> or CONF_PATH_EBS=<path to configuration files> and EBS_VOL_ID=<EBS volume ID> ADMIN_USERNAME=<admin username> ADMIN_PASSWORD=<admin password> LOG_PATH_S3=<s3 bucket name to logs> LOG_PATH_EBS=<log path> and EBS_VOL_ID=<EBS volume ID>
When the EC2 instance is launched successfully, you can see an output similar to the following:
INSTANCE <instance-id> ami-d2a94bbb pending keypair
Instance-id will be something similar to i-10a64379. We can use this instance-id to get more details about the initiated EC2 instance. For example, to access WSO2 WSAS Admin Console, you need to know the public DNS name of the started EC2 instance. You can easily get this detail by using following command:
ec2-describe-instances <instance-id>
For example, "ec2-describe-instances i-10a64379" will give the details about the EC2 instance we just started. The output of above command will be something similar to
RESERVATION r-fea54097 495219933132 INSTANCE i-10a64379 ami-d2a94bbb domU-12-34-31-00-00-05.usma1.compute.amazonaws.com running keypair
In above output, "domU-12-34-31-00-00-05.usma1.compute.amazonaws.com" is the public DNS of the EC2 instance we have initiated.
Once the instance is successfully started, you can access WSO2 WSAS Management Console using the URL "https:<public dns="" name="">/carbon". As per the example server we have started, URL of WSO2 WSAS Management Console will be:
https://domU-12-34-31-00-00-05.usma1.compute.amazonaws.com/carbon.
The default username and password of the management console is "admin" and "admin". If you have specified any ADMIN_USERNAME or ADMIN_PASSWORD in launch-params file, you have to use that username and password. Note that it is strongly recommended to change your admin password the moment you boot up the machine, or better yet by using the configuration file.
If you want to shutdown the instance, you can use following command:
ec2-terminate-instances <instance-id>
WSO2 AMI offerings has enabled anyone to use enterprise grade SOA products by using Amazon infrastructure without owning any hardware. This enables enterprises to take advantage of WSO2 SOA offerings with minimal cost and scale up to handle heavy loads when their applications attract more users and process many transactions. With a pay-as-you-go model, without any large upfront costs, WSO2 AMI offerings makes it attractive to many individuals and organizations.
Chintana Wilamuna, Senior Software Engineer, WSO2, chintana@wso2.com