-
Notifications
You must be signed in to change notification settings - Fork 0
JRubyOnRailsWithGlassfishGem
» JRuby Project Wiki Home Page » JRuby on Rails: GlassFish V3 Deployment
This page discusses how to use the GlassFish Gem with JRuby 1.3.1 or later to get GlassFish working with a JRuby on Rails application.Install JRuby in /opt/jruby-1.3.1 and symlink /opt/jruby to /opt/jruby-1.3.1 for future convenience.
# <tt>cd /opt && curl -O http://url.to/jruby-1.3.1.tar.gz</tt> # <tt>tar xzvf jruby-1.3.1.tar.gz</tt> # <tt>ln -s jruby-1.3.1 jruby</tt>
To install the GlassFish gem (by Vivek Pandey):
$ gem i glassfish
If you install GlassFish as a non-root user, you should for your own convenience add ~/.gem/jruby/1.8/bin to your PATH. You should also have JRuby in your PATH.
If you install GlassFish as root, the GlassFish bin will be installed by default in the JRuby bin directory.
You could put something like this in your .bashrc so it's set whenever you log in:
$ export JRUBY_HOME=/opt/jruby $ export PATH=~/.gem/jruby/1.8/bin:$JRUBY_HOME/bin:$PATH
$ cd /path/to/rails-app $ jruby -S gfrake config # Sets up initial config/glassfish.yml
Now edit config/glassfish.yml to configure the instance to your liking. For instance:
environment: production http: port: 3000 contextroot: / log: # Logging level. Log level 0 to 7. 0:OFF, 1:SEVERE, 2:WARNING, 3:INFO (default), 4:FINE, 5:FINER, 6:FINEST, 7:ALL. log-level: 2 jruby-runtime-pool: initial: 1 min: 1 max: 1 daemon: enable: true pid: tmp/pids/glassfish-production.pid jvm-options: -server -Xmx2500m -Xms64m -XX:PermSize=256m -XX:MaxPermSize=256m -XX:NewRatio=2 -XX:+DisableExplicitGC -Dhk2.file.directory.changeIntervalTimer=6000
Running your GlassFish application server is very simple:
$ jruby -S glassfish
The application is started with the Akuma wrapper, which by default exits when passed a SIGINT (2) (default value of kill). For instance:
$ kill `cat tmp/pids/glassfish-production.pid`
In Solaris 10 and OpenSolaris, you get an excellent service management facility called SMF that you can easily configure to run your applications on startup (and much more). It can be compared with Linux's init.rd / rc.d, but is much more powerful.
Importing an application into SMF is not so trivial for first time users, so here is a brief description. For more informaiton, see Solaris Service Management Facility - Quickstart Guide.
First off you need to define a manifest. This is done with a simple XML file.
Underneath, you will find a manifest with support of two instances or rails applications. Modify these to your liking. I usually prefer to run applications with a non-root user. I haven't included Access Control Lists (ACLs) to minimize the complexity in the example.
I usually recommend placing web applications such as Rails somewhere under /var. In the example I use /var/apps. I also use directories like /var/rails and so on, but you can put them in your home directory if you prefer.
<?xml version='1.0'?> <!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'> <service_bundle type='manifest' name='glassfish-gem'> <service name='network/glassfish-gem' type='service' version='0'> <dependency name='fs' grouping='require_all' restart_on='none' type='service'> <service_fmri value='svc:/system/filesystem/local'/> </dependency> <dependency name='net' grouping='require_all' restart_on='none' type='service'> <service_fmri value='svc:/network/loopback'/> </dependency> <dependent name='glassfish-gem_multi-user' restart_on='none' grouping='optional_all'> <service_fmri value='svc:/milestone/multi-user'/> </dependent> <exec_method name='start' type='method' exec='/opt/jruby/bin/glassfish' timeout_seconds='60' /> <exec_method name='stop' type='method' exec=':kill' timeout_seconds='60' /> <instance name='my-railsapp_production' enabled='false'> <method_context working_directory='/var/apps/my-railsapp/development/my-railsapp'> <method_credential user='railsuser' group='daemon' /> <method_environment> <envvar name="PATH" value="/opt/jruby/bin:/usr/bin:/bin" /> </method_environment> </method_context> </instance> <instance name='MYRAILSAPP_ENVIRONMENT' enabled='false'> <method_context working_directory='/FULL/PATH/TO/MY/RAILS/APP/ENVIRONMENT'> <method_credential user='RUNASTHISUSER' group='RUNASTHISGROUP' /> <method_environment> <envvar name="PATH" value="/PATH/TO/JRUBY/bin:/usr/bin:/bin" /> </method_environment> </method_context> </instance> </service> </service_bundle>
$ pfexec svccfg validate config/glassfish-gem.smf.xml $ pfexec svccfg import config/glassfish-gem.smf.xml
$ pfexec svcadm enable glassfish-gem:my-railsapp_production
To verify that your application started, use svcs.
$ pfexec svcs
You should see something like:
online Jun_30 svc:/network/glassfish-gem:my-railsapp_production
If it fails to start, it will say offline or maintenance instead of online. In that case, try svcs -xv and look at the logfile.
$ pfexec svcadm disable glassfish-gem:my-railsapp_production
$ pfexec svcadm restart glassfish-gem:my-railsapp_production
On OpenSolaris you can install Apache 2.2 with IPS:
# pkg install SUNWapch22
On Ubuntu/Debian Linux, you would use apt: (TODO: verify package name on Ubuntu/Debian.)
# aptitude install apache2.2
This example's commands also refer to Solaris. You configure Apache 2.2. the same way in other operating systems, but paths to configurations might vary. For instance on Debian/Ubuntu, Apache config files are placed in
/etc/apache2/sites-available/MY-CONFIG-FILE, and these are enabled by a symlink in
/etc/apache2/sites-enabled to the config file.
File /etc/apache2/2.2/sites/myrailsapp.jruby.org
<VirtualHost *:80> ServerName myrailsapp.jruby.org DocumentRoot /var/apps/my-railsapp/production/my-railsapp/public <Directory /var/apps/my-railsapp/production/my-railsapp/public> Options FollowSymLinks AllowOverride All Order allow,deny Allow from all </directory> <Proxy balancer://myrailsapp> BalancerMember http://127.0.0.1:3000 </proxy> ProxyPass / balancer://myrailsapp/ CustomLog /var/log/apache2/myrailsapp_production_apache_access_log combined </virtualhost>
Since I place my virtual hosts in separate files, I need to add include to these at the bottom of the main configuration file /etc/apache2/2.2/httpd.conf. If you haven't already configured your Apache server to use Virtual Hosts, you might have to add NameVirtualHost to your configuration:
NameVirtualHost *:80 Include /etc/apache2/2.2/sites/*
Now just enable (or restart) your Apache 2.2 server:
$ pfexec svcadm enable apache22 $ pfexec svcadm restart apache22
TODO: Nginx frontend, Linux init.rd start/stop script. Formatting.