Naftoli Gugenheim wrote: > What's the best way to get a lift app running on a Ubuntu web server I can > SSH into with full permissions? It came with almost nothing installed. > Thanks.
I'll take a shot at this, since the answer primarily involves Java and an application server. It's not too difficult really. You'll need to have a Java runtime installed, the latest Java 6 release recommended. You can probably install this in /usr/local/java, and point JAVA_HOME to that directory. Or without any root access, install it to your home directory and point JAVA_HOME there. Try "java -version" and "which java" before you do that to see what's already on the machine. Then get the latest Tomcat and unpack it in a directory as well. Maven will build your WAR file with the "mvn package" command. Drop the WAR file in Tomcat's webapps directory, and start up Tomcat. By default your app will appear on the server's port 8080. Or you can use Jetty instead of Tomcat, just as the Maven plug-in does. Hope that helps a little ... Mojo -- Morris Jones Monrovia, CA http://www.whiteoaks.com Old Town Astronomers: http://www.otastro.org http://twitter.com/mojo_la --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~----------~----~----~----~------~----~------~--~---
