Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Installing the extensible administration console into a Geronimo minimal assembly
  2. Installing an ACE in the .war format from disk
  3. Installing an ACE in the .car format from an online repository
    Info
    titleWhich kind of file format do I want ?
    • Need console extensions for a component you already have? If you are planning to add Administration Console portlets for a component that is already installed on your server, a .war file is simplest. A .war-format ACE has only the needed portlets, and is dependent on the component already being installed.
    • Need the component and its extensions? If you need to install both a new component and its associated Admin Console portlets, a .car file is the right choice. This will look up and download all the necessary components and dependencies, and will also install the new ACE file. A .car file can also be used if the component is already installed.
    • Not sure? If you aren't sure that you have all the pre-requisites installed, a .car is the safest option. This will work regardless of whether the component is pre-installed or not.
    Info
    titleWhat about installing a .car file from disk?

    Unfortunately, it is not possible to install a .car file from disk with the current Geronimo Administration Console. However you can still use the "You can use the deploy install-plugin" tool from the command line. For more information, read up on the deployer tool at httpsee https://cwiki.apache.org/GMOxDOC11GMOxDOC30/deployer-tooldeploy.html

Installing the Extensible Administration Console

...

  1. Start Geronimo
  2. Use the deploy : list-plugins command to download and install the administration console from the online plugin repository. Depending on the web container support in your minimal server, choose:
    No Format
     deploy: list-plugins -r http://geronimo.apache.org/plugins/geronimo-3.0/ org.apache.geronimo.plugins/console-tomcat/3.0/car
    or
    No Format
    deploy: list-plugins -r http://geronimo.apache.org/plugins/geronimo-3.0/ org.apache.geronimo.plugins/console-jetty/3.0/car

...

  1. Access the Extensible Administration Console by pointing a web browser to the following address http://localhost:8080/console.
  2. Select Plugins on the left navigation bar.
  3. Under Install Geronimo Plugins, click Update Repository List to add the default plugin repositories of Geronimo 3.0 into the repository list.
    • If the correct address does not appear in the Repository list, select Add Repository.
    • Type the repository's address in the New Repository textbox. Make sure to include the forward-slash( / ) at the end of the address. Select Add Repository.
    • Click Update Repository List. The new address will now appear in the Repository list. Note
  4. With the correct repository displayed in the Repository box, select Show Plugins in selected repository.
  5. Choose the plugin from the Available Plugins list by clicking directly on the plugin name.
    • If the Installable field of the desired plugin is marked as a red-cross, the plugin may already be installed on your server. Check for its name on the System Modules tab to make sure it is running, and to start or uninstall it if necessary.
    • If the list of Available Plugins does not display, or the desired plugin is not listed, you may have entered the wrong repository address. Try entering it again. If problems continue, contact the plugin provider or email the user mailing list at user@geronimo.apache.org.
      6. Select the plugins to be added and then click *Install at the bottom of the page.
      7. When the plugin installation is complete, refresh your browser. A new menu item will appear on the left. You can now configure this plugin's settings from the newly installed portlets.

...

Panel
titleDependency relationship of the pieces
indent
0
0
PortalContainer 
indent
1
1
\|\-_PortalContainerServiceGBean 
indent
2
2
\|\-_AdminConsoleExtensionGBean 
indent
1
1
\|\-_Pluto Portal 
indent
2
2
\|\-_Administration Console 
indent
3
3
\|\-_New Portlet 

The PortalContainer is the base requirement for the administration console. The Pluto Portal and the PortalContainerServiceGBean are the base requirements to install anything into the framework of the console. The administration console and the AdminConsoleExtensionGBean depends on the PortalContainerServiceGBean and the Pluto Portal. In order to add new console extensions, all of the described components must be in place.

...

Panel
titlesample structure for a simple war

HelloWorldPortlet.war

indent
1
1
 \|\-_WEB-INF/
indent
2
2
 \|\-_classes/
indent
3
3
 \|\-_(portlet class files)
indent
2
2
 \|\-_geronimo-web.xml
indent
2
2
 \|\-_portlet.xml
indent
2
2
 \|\-_web.xml

Deploying the application

...

  1. Command Line:
    Example:
    No Format
     deploy: deploy c:/HelloWorldPortlet.war
  2. Using the Admin Console:
    Center

...