To install ---------- 1. yum install mysql-server # or what have you for installing MySQL 2. mysql -u root create database petstore_production exit 3. rake RAILS_ENV=production db:reset 4. script/server -e production 5. ab -c 1 -n 1000 http://localhost:3000/shop/viewCategory.shtml?category=DOGS To run on Mongrel-JRuby ----------------------- jruby -O -J-server script/server -e production To run on Jetty: jruby -S rake jrubyworks:war # this sucks, will fix soon mkdir -p war cp petstore.war war/ jruby -S rake jrubyworks:retty