Git Product home page Git Product logo

java-quick-start's Introduction

This guide describes how to build a Java web application stack using Chef cookbooks available from the Cookbooks Community Site and the Opscode Platform. It assumes you followed the Getting Started Guide and have Chef installed.

This guide uses Ubuntu 10.04 on Amazon AWS EC2 with Chef 0.10.0.

Note: At this time, the steps described above have only been tested on the identified platform(s). Opscode has not researched and does not support alternative steps that may lead to successful completion on other platforms. Platform(s) supported by this guide may change over time, so please do check back for updates. If you'd like to undertake this guide on an alternate platform, you may desire to turn to open source community resources for support assistance.

You can watch a short screencast of this guide here.

At the end of this guide, you'll have four total Ubuntu 10.04 systems running in Amazon EC2.

  • 1 haproxy load balancer.
  • 2 Tomcat6 application servers.
  • 1 MySQL database server.

The Java web application used in this guide is a demo application called dbapp. The source code for the WAR (web application archive) can be downloaded on the Opscode GitHub account. The application consists of a servlet that does a simple database query via a JDBC datasource that is retrieved from JNDI and forwards the results onto a JSP page for rendering.

We're going to reuse a number of cookbooks from the Cookbooks Community Site to build the environment. The load balancer is haproxy because it is very simple to deploy and configure, and we use a recipe that automatically discovers the Tomcat application servers. The heavy lifting is handled by recipes in the application and database cookbooks.

The application cookbook assumes some sort of build process, such as Maven or a Continuous Integration server like Hudson, will create a deployable artifact and make it available for download via HTTP (such as S3). The application cookbook will install Tomcat, download and deploy the dbapp WAR file and create the required Tomcat context.xml files (which contains database connection information). The database cookbook installs MySQL, creates any application specific databases and grants application users access to these databases.

We are also following the recommended pattern of creating a cookbook named after the application that is being deployed which contains application specific setup and configurations. In this case, the dbapp cookbook contains a recipe that will be used for bootstrapping our database.

If you don't already have an account with Amazon AWS, go to Amazon Web Sevices and click "Sign up". You'll need the access and secret access key credentials from the sign-up later.

Environment Setup

First, let's configure the local workstation.

Shell Environment

Obtain the repository used for this guide. It contains all the components required. Use git:

git clone git://github.com/opscode/java-quick-start.git

Chef and Knife

All Users: You'll need some additional gems for Knife to launch instances in Amazon EC2:

sudo gem install knife-ec2

As part of the Getting Started Guide, you cloned a chef-repo and copied the Knife configuration file (knife.rb), validation certificate (ORGNAME-validator.pem) and user certificate (USERNAME.pem) to ~/chef-repo/.chef/. Copy these files to the new java-quick-start repository. You can also re-download the Knife configuration file for your Organization from the Management Console.

mkdir ~/java-quick-start/.chef
cp ~/chef-repo/.chef/knife.rb ~/java-quick-start/.chef
cp ~/chef-repo/.chef/USERNAME.pem ~/java-quick-start/.chef
cp ~/chef-repo/.chef/ORGNAME-validator.pem ~/java-quick-start/.chef

Add the Amazon AWS credentials to the Knife configuration file.

vi ~/java-quick-start/.chef/knife.rb

Add the following two lines to the end:

knife[:aws_access_key_id] = "replace with the Amazon Access Key ID"
knife[:aws_secret_access_key] =  "replace with the Amazon Secret Access Key ID"

Once the java-quick-start and knife configuration is in place, we'll work from this directory.

cd java-quick-start

Amazon AWS EC2

In addition to the credentials, two additional things need to be configured in the AWS account.

Configure the default security group to allow incoming connections for the following ports.

  • 22 - ssh
  • 80 - haproxy load balancer
  • 22002 - haproxy administrative interface
  • 8080 - Tomcat servlet engine serving our dbapp application

Add these to the default security group for the account using the AWS Console.

  1. Sign into the Amazon AWS Console.
  2. Click on the "Amazon EC2" tab at the top.
  3. Click on "Security Groups" in the left sidebar of the AWS Console.
  4. Select the "Default" group in the main pane.
  5. Enter the values shown for each of the ports required. Use "Custom" in the drop-down for 22002 and 8080. aws-management-console

Create an SSH Key Pair and save the private key in ~/.ssh.

  1. In the AWS Console, click on "Key Pairs" in the left sidebar.

  2. Click on "Create Keypair" at the top of the main pane.

  3. Give the keypair a name like "java-quick-start".

  4. The keypair will be downloaded automatically by the browser and saved to the default Downloads location.

  5. Move the java-quick-start.pem file from the default Downloads location to ~/.ssh and change permissions so that only you can read the file. For example,

    mv ~/Downloads/java-quick-start.pem ~/.ssh chmod 600 ~/.ssh/java-quick-start.pem

Acquire Cookbooks

The java-quick-start has all the cookbooks we need for this guide. They were downloaded along with their dependencies from the cookbooks site using Knife. These are in the cookbooks/ directory.

apt
git
application
database
haproxy

A single new non-community cookbook was also created for this quick-start. This dbapp cookbook contains a recipe that is used to bootstrap our database. This follows the recommended pattern of creating a cookbook named after the application which contains application specific setup and configuraitons.

dbapp

Upload all the cookbooks to the Opscode Platform.

knife cookbook upload -a

Server Roles

All the required roles have been created in the java-quick-start repository. They are in the roles/ directory.

base.rb
dbapp_database_master.rb
dbapp.rb
dbapp_load_balancer.rb

Upload all the roles to the Opscode Platform.

rake roles

Data Bag Item

The java-quick-start repository contains a data bag item that has all the information required to deploy and configure the Java web application archive (WAR) from S3 using the recipes in the application and database cookbooks.

The data bag name is apps and the item name is dbapp. Upload this to the Opscode Platform.

knife data bag create apps
knife data bag from file apps dbapp.json

Decision Time

It is time for you to decide whether you want a single instance running dbapp, or a few instances as a small infrastructure.

In either case, we're going to use m1.small instances with the 32 bit Ubuntu 10.04 image provided by Canonical. The identifier is ami-7000f019 for the AMI in us-east-1 with instance storage that we will use in this guide. We'll show you the knife ec2 server create sub-command to launch instances.

This command will:

  • Launch a server on EC2.
  • Connect it to the Opscode Platform.
  • Configure the system with Chef.

See the appropriate section below for instruction on launching a single instance, or launching the multi-system infrastructure.

Launch Single Instance

Launch the entire stack on a single instance.

knife ec2 server create -G default -I ami-7000f019 -f m1.small \
  -S java-quick-start -i ~/.ssh/java-quick-start.pem -x ubuntu \
  -r 'role[base],role[dbapp_database_master],role[dbapp],recipe[dbapp::db_bootstrap],role[dbapp_load_balancer]'

Once complete, the instance will be running MySQL and the Java webapp under Tomcat. With only one system, a load balancer is unnecessary.

Launch Multi-instance Infrastructure

We will launch one database server, two application servers and one load balancer. One of the application server instances will include the role for setting up the database as discussed before.

First, launch the database instance.

knife ec2 server create -G default -I ami-7000f019 -f m1.small \
  -S java-quick-start -i ~/.ssh/java-quick-start.pem -x ubuntu \
  -r 'role[base],role[dbapp_database_master]'

Once the database master is up, launch one node that will create the database schema and set up the database with default data.

knife ec2 server create -G default -I ami-7000f019 -f m1.small \
  -S java-quick-start -i ~/.ssh/java-quick-start.pem -x ubuntu \
  -r 'role[base],role[dbapp],recipe[dbapp::db_bootstrap]'

Launch the second application instance w/o the dbapp::db_bootstrap recipe.

knife ec2 server create -G default -I ami-7000f019 -f m1.small \
  -S java-quick-start -i ~/.ssh/java-quick-start.pem -x ubuntu \
  -r 'role[base],role[dbapp]'

Once the second application instance is up, launch the load balancer.

knife ec2 server create -G default -I ami-7000f019 -f m1.small \
  -S java-quick-start -i ~/.ssh/java-quick-start.pem -x ubuntu \
  -r 'role[base],role[dbapp_load_balancer]'

Once complete, we'll have four instances running in EC2 with MySQL, Tomcat and haproxy up and available to serve traffic.

Verification

Knife will output the fully qualified domain name of the instance when the commands complete. Navigate to the public fully qualified domain name on port 80:

http://ec2-xx-xxx-xx-xxx.compute-1.amazonaws.com/

You can access the haproxy admin interface at:

http://ec2-xx-xxx-xx-xxx.compute-1.amazonaws.com:22002/

Appendix

Database Passwords

The data bag item for dbapp contains default passwords that should certainly be changed to something stronger.

The passwords in the dbapp Data Bag Item are set to the values show below:

"mysql_root_password": {
  "_default": "mysql_root"
},
"mysql_debian_password": {
  "_default": "mysql_debian"
},
"mysql_repl_password": {
  "_default": "mysql_repl"
},

To change the password to something stronger, modify mysql_root, mysql_debian, mysql_repl values. Something like the following secure passwords:

vi data_bags/apps/dbapp.json
"mysql_root_password": {
  "_default": "super_s3cur3_r00t_pw"
},
"mysql_debian_password": {
  "_default": "super_s3cur3_d3b1@n_pw"
},
"mysql_repl_password": {
  "_default": "super_s3cur3_r3pl_pw"
},

Once the entries are modified, simply load the data bag item from the json file:

knife data bag from file apps dbapp.json

Non-EC2 Systems

For people not using Amazon EC2, other Cloud computing providers can be used. Supported by knife and fog as of this revision:

  • Rackspace Cloud

See the launch cloud instances page on the Chef wiki for more information about using Knife to launch these instance types.

For people not using cloud at all, but have their own infrastructure and hardware, use the bootstrap knife command. Note that the run-list specification is slightly different. For the first example of the single instance:

knife bootstrap IPADDRESS 
 -r 'role[base],role[dbapp_database_master],role[dbapp],recipe[dbapp::db_bootstrap],role[dbapp_load_balancer]'

See the contextual help for knife bootstrap on the additional options to set for SSH.

knife bootstrap --help

A Note about EC2 Instances

We used m1.small instances. This is a low performance instance size in EC2 and just fine for testing. Visit the Amazon AWS documentation to learn more about instance sizes.

java-quick-start's People

Contributors

schisamo avatar adamhjk avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.