Return-Path: Delivered-To: apmail-geronimo-user-archive@www.apache.org Received: (qmail 67570 invoked from network); 1 Mar 2008 23:57:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Mar 2008 23:57:14 -0000 Received: (qmail 40466 invoked by uid 500); 1 Mar 2008 23:57:03 -0000 Delivered-To: apmail-geronimo-user-archive@geronimo.apache.org Received: (qmail 40439 invoked by uid 500); 1 Mar 2008 23:57:03 -0000 Mailing-List: contact user-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: user@geronimo.apache.org List-Id: Delivered-To: mailing list user@geronimo.apache.org Received: (qmail 40428 invoked by uid 99); 1 Mar 2008 23:57:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Mar 2008 15:57:03 -0800 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [212.247.90.225] (HELO mail.scandorama.se) (212.247.90.225) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Mar 2008 23:56:13 +0000 Received: from localhost (kreon.scandorama.se [10.48.37.12]) by mail.scandorama.se (Postfix) with ESMTP id 279622850F for ; Sun, 2 Mar 2008 00:56:34 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at kreon.scandorama.se Received: from mail.scandorama.se ([10.48.37.4]) by localhost (kreon.scandorama.se [10.48.37.12]) (amavisd-new, port 10025) with ESMTP id T-PwQnEnwssm for ; Sun, 2 Mar 2008 00:54:32 +0100 (CET) Received: from [192.168.2.243] (h-240-180.A218.cust.bahnhof.se [85.24.240.180]) by mail.scandorama.se (Postfix) with ESMTP id C3BB22850E for ; Sun, 2 Mar 2008 00:54:30 +0100 (CET) Message-ID: <47C9ECA1.9070701@pmb.mine.nu> Date: Sun, 02 Mar 2008 00:54:09 +0100 From: Peter Petersson User-Agent: Thunderbird 2.0.0.6 (X11/20071022) MIME-Version: 1.0 To: user@geronimo.apache.org Subject: Re: How to install and run geronimo in linux? References: <15778008.post@talk.nabble.com> In-Reply-To: <15778008.post@talk.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi there, sry if this turns out to be a double post (I'm currently having some mailing problems) As you are new to linux maybe you also want some directions on bits and pieces specific to G on linux. The following is some basic stuff so if you feel you are comfortable with linux you wont find much of interest in it ;) Although it may (almost) be a question of taste (arguable) a good place to "untar" ( tar zxvf gernoimo-xxxxx-tar.gz ) Geronimo would be in /usr/local (at least on a server install) and to get it running without any special environment settings for java (as I assume you already have installed) you can create and place a file called setenv.sh (its a script file) in /bin (make it executable (x) with the command "chmod og+x") containing something like this ------------------------------------------------ #!/bin/sh JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun JAVA_OPTS="-Djava.awt.headless=true -XX:MaxPermSize=128m -Xms128M -Xmx512M -server" ------------------------------------------------ Naturally the JAVA_HOME setting depends on where your particular distribution puts java (or how you have it set up) the above is on a ubuntu system with sun:s java 1.5.x installed. Now to start the server just open a console and cd to /bin and execute the command "./startup.sh" it will start the server. To keep track on whats going on you may want to take a "tail" peek at G:s log files so in a console, cd to /var/log and execute the command "tail -f geronimo.log" (there is also a geronimo.out log file). Also as mentioned by others a good place start for the G bits is on http://cwiki.apache.org/GMOxDOC21/installation-and-configuration.html regards peter petersson newbie-gero wrote: > Hi, i just started to use linux and i like to start using geronimo on linux > platform. However i cannot find any installation guide for linux. Can i know > where i can find it or some guidance from you guys or did i miss the > installation guide? > > I saw there are 3 types to down load, one is j2ee certified, one is little g > and another is source. > Which one is better? currently i download the source type. > > Thanks >