First of all, I just want to say that I have Roller working on one server with Tomcat. This is not an ideal situation, so if you do not know how to install Roller on JRun then please do not respond.
I have posted here because this is a Roller mailing list, the other mailing is a Coldfusion mailing list and the likely hood of someone having done what I would like to do is slim. I do not want to install onto Tomcat because it is not an Application server, it does not handle clustering nor does it handle multiple instances. If I had problems installing on Tomcat I would have posted that, but I have followed the outdate installation notes and got Roller working on Tomcat, but that is not my ideal situation. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Raible Sent: Wednesday, 20 June 2007 2:16 PM To: [email protected] Subject: Re: Anyone installed roller onto JRun? It looks like you've asked this elsewhere and received similar advice: http://www.mail-archive.com/[EMAIL PROTECTED]/msg06952.html Your best best at this point is probably to try and run Roller on JRun and see what errors you get. Here's the 10 steps to installing Roller 3.1 on Tomcat: 1. Download Roller 3.1 from http://cwiki.apache.org/confluence/display/ROLLER/Roller+Downloads 2. Download Hibernate and other JARs from https://roller.dev.java.net/servlets/ProjectDocumentList?folderID=6962 3. Copy JARs from java.net download into apache-roller-3.1 /webapp/roller/WEB-INF/lib 4. Download and Install Java 5 from http://java.sun.com/javase/downloads 5. Download and install MySQL 5 from http://dev.mysql.com/downloads 6. Create database with files in WEB-INF/dbscripts: mysqladmin -u root -p create roller cd webapp/roller/WEB-INF/dbscripts/mysql mysql -u root -p roller < createdb.sql 7. Download and install Tomcat 6 from http://tomcat.apache.org/download-60.cgi 8. Copy apache-roller-3.1/webapp/roller to $CATALINA_HOME/webapps/ROOT 9. Copy activation.jar, mail.jar and mysql-connector-java-5.0.3-bin.jar to $CATALINA_HOME/lib (common/lib for Tomcat 5.x) 10. Create ROOT/META-INF/context.xml with the following contents: <Context path="" reloadable="false" antiJARLocking="true" antiResourceLocking="false" allowLinking="true"> <Resource name="jdbc/rollerdb" auth="Container" type="javax.sql.DataSource" maxActive="20" maxIdle="10" maxWait="100" driverClassName="com.mysql.jdbc.Driver" username="root" password="" url="jdbc:mysql://localhost/roller"/> <Resource name="mail/Session" auth="Container" type="javax.mail.Session" mail.smtp.host="localhost" /> </Context> Start Tomcat and create your weblog at http://localhost:8080 OK - maybe that's 11 steps. ;-) Matt On 6/19/07, Jeffrey Blattman <[EMAIL PROTECTED]> wrote: > tomcat is not an application server, it's a servlet + jsp container, > which in general terms means it consumes quite a bit fewer resources. > > Andrew Scott wrote: > > Because JRun is already installed on the server, and I would strongly prefer to only use one Application Server if I can help it. > > > > I thought I said rather than install another Application Server? > > > > > > Andrew Scott > > Senior Coldfusion Developer > > Aegeon Pty. Ltd. > > www.aegeon.com.au > > Phone: +613 8676 4223 > > Mobile: 0404 998 273 > > > > > > > > > -- http://raibledesigns.com
