You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Anita Kulshreshtha (JIRA)" <ji...@apache.org> on 2007/04/29 15:48:15 UTC

[jira] Created: (GERONIMO-3123) Create a template/var for creaitng additional instances of geronimo

Create a template/var for creaitng additional instances of geronimo
-------------------------------------------------------------------

                 Key: GERONIMO-3123
                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
             Project: Geronimo
          Issue Type: Improvement
      Security Level: public (Regular issues)
          Components: buildsystem
    Affects Versions: 2.0-M6
         Environment: All
            Reporter: Anita Kulshreshtha
         Assigned To: Anita Kulshreshtha
            Priority: Minor
             Fix For: 2.0-M6


Related discussions:
http://www.nabble.com/Naming-the-servers-tf3655401s134.html
http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
The instances can be named using 
set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
...........................................................................................
copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Anita Kulshreshtha (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12493848 ] 

Anita Kulshreshtha commented on GERONIMO-3123:
----------------------------------------------

Some clarifications- 
1. template/var does not cause any problem, either in TCK or otherwise. We should consider keeping that..
2. The problem is geronimo0/var. It appears that TCK is setting some dir to an absolute path GHOME.  If not, then we have a problem that something in server is still
 accessing var. I have run webservices testsuit successfully which uses geronimo-maven-plugin to start the server. I have used console extensively. The only problem 
I am aware of is that sometimes (not sure when) a stray derby.log (0 bytes) is created in GHOME  in addition to the real derby.log in var\derby. 
3. This change does not affect how users name their instances. As explained in another mail users can name their instances in any way they please. They can even delete geronimo0/var.
ServerInfo allows lots of flexiblity in naming once we ensure that Geronimo is not tied to anything in 'var' directory.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "David Jencks (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Jencks updated GERONIMO-3123:
-----------------------------------

    Fix Version/s:     (was: 2.1)
                   Wish List

didn't get into 2.1 either, but now I am even more certain that the way to do this is with plugins.  An extreme example is the geronimo-boilerplate-minimal plugin which sets up all the stuff needed for a base server, except the additional stuff installed from other plugins.  However it should certainly be possible to set up a new var directory and a repo gbean to point into it using a plugin.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>            Assignee: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: Wish List
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Anita Kulshreshtha (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492581 ] 

Anita Kulshreshtha commented on GERONIMO-3123:
----------------------------------------------

:)
If someone wanted to name their servers like that they could make dirs like that and run instances like that! I would be interested in knowing if daytrader can be run on an instance named like this...

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Prasad Kashyap (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Prasad Kashyap updated GERONIMO-3123:
-------------------------------------

       Patch Info: [Patch Available]
    Fix Version/s:     (was: 2.0-M6)
                   2.0

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>            Assignee: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Ted Kirby (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492580 ] 

Ted Kirby commented on GERONIMO-3123:
-------------------------------------

I can't believe Matt was really serious about that long name.  In any case, I prefer "servers" to that excessively long name.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Donald Woods (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12493794 ] 

Donald Woods commented on GERONIMO-3123:
----------------------------------------

Since creating a template/var and default geronimo0/ server instance caused major TCK problems, what if we just create multiple instances of var?  So you'd have -
   GHOME/var      - default server instance
   GHOME/var1     - next server instance
. . .
   GHOME/varN     - Nth server instance
and if someone wants to use something besides "varN", then thats their prerogative....

This way, we don't have to update all the TCK automation code or the docs and users of 1.0/1.1.x will be use to the layout....


> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "David Jencks (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Jencks updated GERONIMO-3123:
-----------------------------------

    Fix Version/s:     (was: 2.0)
                   2.1

IIUC this didn't make it into 2.0.

I wonder if it would be possible to package this template as a plugin that when you installed it got copied into the new server location?  I haven't thought this through but wonder if there is some way to use the plugin installer facilities to make this work.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>            Assignee: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.1
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Anita Kulshreshtha (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Anita Kulshreshtha updated GERONIMO-3123:
-----------------------------------------

    Summary: Create a template/var directory for creating additional instances of geronimo  (was: Create a template/var for creaitng additional instances of geronimo)

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "Anita Kulshreshtha (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Anita Kulshreshtha updated GERONIMO-3123:
-----------------------------------------

    Attachment: asm.patch

This patch creates a GHOME/template/var and GHOME/geronimo0/var and removes the exisiitng 'var'. 
Similar changes will be made to jetty and minimal assemblies.
If the server is started using java -jar bin\server.jar or bin\startup the default instance will be run from geronimo0/var.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>         Assigned To: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: 2.0-M6
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "David Jencks (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12643320#action_12643320 ] 

David Jencks commented on GERONIMO-3123:
----------------------------------------

I thought of a new way to do this using plugin installation, see GERONIMO-4382.  I don't know if the approach in this jira offers things the plugin approach doesn't.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>            Assignee: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: Wish List
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (GERONIMO-3123) Create a template/var directory for creating additional instances of geronimo

Posted by "David Jencks (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-3123?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Jencks closed GERONIMO-3123.
----------------------------------

    Resolution: Fixed

Implemented using plugins in a different way, no comments since then.

> Create a template/var directory for creating additional instances of geronimo
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-3123
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3123
>             Project: Geronimo
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>          Components: buildsystem
>    Affects Versions: 2.0-M6
>         Environment: All
>            Reporter: Anita Kulshreshtha
>            Assignee: Anita Kulshreshtha
>            Priority: Minor
>             Fix For: Wish List
>
>         Attachments: asm.patch
>
>
> Related discussions:
> http://www.nabble.com/Naming-the-servers-tf3655401s134.html
> http://www.nabble.com/Re%3A-Help-needed-with-geronimo.sh-p10200885s134.html
> Create a template/var and <defaultName>/var in GHOME. If the server is started using java -jar bin\server.jar, the default will be used. It is not necessary to use the default server.
> The instances can be named using 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01, portOffset=0, i.e. it behaves like the default server 
> set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo02, portOffset=10,
> ...........................................................................................
> copy 'var' to GHOME/thisIsWhereTheServerInstanceDataIsLocatedIfYourLookingForIt/geronimo01 and use bin\startup.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.