Getting Railo installed and started on your Mac
These were instructions oringinally for the *nix platform (which is what Mac is in essence), so if you are having trouble getting off the ground with Ubuntu etc. you can use these steps as well.
So back to installing Railo on your Mac (in as easy as I could make it steps). You should know that we are going to use the application server that comes with Railo called Resin.- Goto Railo downloads section and get the "Railo Server unix/linux" version. At the moment this is Unix/Linux railo-1.0.0.027-resin-3.0.14-with-jre-linux.tar.gz (39 MB). I download everything to my desktop.
- Once downloaded unpack the contents. On your desktop you should now have a folder called "railo-1.0.0.027-resin-3.0.14-with-jre-linux", modify this to "railo" and copy it do your /applications/ folder.
- Via Finder open up /applications/railo/contrib/ and open "init.resin" with a text editor. This script is your start/stop script for the Resin server (and in affect Railo). You need to make the following changes to this file:
- Around line 12 change
JAVA_HOME=/usr/java
toJAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java
As you can see we are just pointing the variable JAVA_HOME to the location of the Java folder on your system. The above change "should" work for most Macs out of the box. If you have modified the location of the Java root then this will need to be reflected upon here. - The line after should read;
RESIN_HOME=/home/ferg/test/resin-pro
Change this toRESIN_HOME=/applications/railo
This is just the path we copied the Railo folder too.
- Around line 12 change
- Thats all the changes made to the configuration files done for now.. Next open up a Terminal window (found in /applications/utilities/terminal)
- Then via the command line navigate to the Railo/contrib folder put entering
cd /applications/railo/contrib
Then hit return - Now we are in the Contrib folder all we need to do is call our "init.resin" file we edited earlier
sudo -s init.resin start
You should then see something likeStarting resin: Resin httpd start at Wed Nov 29 13:01:30 GMT 2006
- Now open up your browser and goto http://localhost:8600/ to see it in action.
- To access the Railo Administator go to http://localhost:8600/railo-context/admin/index.cfm
- Thats it!
to
p.s. You might want to stop the server :o) if so just enter via the Terminal window:sudo -s init.resin stop