JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle GlassFish Server 3.1 Administration Guide
search filter icon
search icon

Document Information

Preface

1.  Overview of GlassFish Server Administration

Default Settings and Locations

Configuration Tasks

Administration Tools

Instructions for Administering GlassFish Server

Part I Runtime Administration

2.  General Administration

Using the asadmin Utility

Path to the asadmin Utility

asadmin Utility Syntax

Subcommands of the asadmin Utility

asadmin Utility Options and Subcommand Options

Operands of asadmin Utility Subcommands

To Run an asadmin Utility Subcommand in Single Mode

To Display Help Information for the asadmin Utility or a Subcommand

To Start a Multimode Session

To End a Multimode Session

To Run a Set of asadmin Subcommands From a File

Administering System Properties

To Create System Properties

To List System Properties

To Delete a System Property

Administering Resources

To Add Resources From an XML File

Listing Various System Elements

To Display the GlassFish Server Version

To List Applications

To List Containers

To List Modules

To List Subcommands

To List Timers

To Show Component Status

Using REST Interfaces to Administer GlassFish Server

Using REST URLs to Administer GlassFish Server

REST URLs to Resources for Configuration and Monitoring Objects

REST URLs for Accessing the Log File

Using REST Resource Methods to Administer GlassFish Server

To Determine the Methods and Method Parameters That an Object in the Tree Supports

To Retrieve Data for an Object in the Tree

To Add an Object to the Tree

To Update an Object in the Tree

To Delete an Object From the Tree

Resources for asadmin Subcommands That Perform Non-CRUD Operations

Securing GlassFish Server REST Interfaces

Setting Up Basic Authentication Over a Secure Connection

To Secure REST Interfaces by Using Session Tokens

Formats for Resource Representation of Configuration Objects

JSON Resource Representation for Configuration Objects

XML Resource Representation for Configuration Objects

HTML Resource Representation for Configuration Objects

Formats for Resource Representation of Monitoring Objects

JSON Resource Representation for Monitoring Objects

XML Resource Representation for Monitoring Objects

HTML Resource Representation for Monitoring Objects

Formats for Resource Representation of Log File Details

JSON Resource Representation for Log File Details

XML Resource Representation for Log File Details

Supported Content Types in Requests to REST Resources

3.  Administering Domains

4.  Administering the Virtual Machine for the Java Platform

5.  Administering Thread Pools

6.  Administering Web Applications

7.  Administering the Logging Service

8.  Administering the Monitoring Service

9.  Writing and Running JavaScript Clients to Monitor GlassFish Server

10.  Administering Life Cycle Modules

11.  Extending and Updating GlassFish Server

Part II Resources and Services Administration

12.  Administering Database Connectivity

13.  Administering EIS Connectivity

14.  Administering Internet Connectivity

15.  Administering the Object Request Broker (ORB)

16.  Administering the JavaMail Service

17.  Administering the Java Message Service (JMS)

18.  Administering the Java Naming and Directory Interface (JNDI) Service

19.  Administering Transactions

Part III Appendixes

A.  Subcommands for the asadmin Utility

Index

Administering Resources

This section contains instructions for integrating resources into the GlassFish Server environment. Information about administering specific resources, such as JDBC, is contained in other chapters.

To Add Resources From an XML File

Use the add-resources subcommand in remote mode to create the resources named in the specified XML file. The following resources are supported: JDBC connection pool and resource, JMS, JNDI, and JavaMail resources, custom resource, connector resource and work security map, admin object, and resource adapter configuration.

The XML file must reside in the as-install/domains/domain1/config directory. If you specify a relative path or simply provide the name of the XML file, this subcommand will prepend as-install/domains/domain1/config to this operand.

  1. Ensure that the server is running.

    Remote subcommands require a running server.

  2. Add resources from an XML file by using the add-resources(1) subcommand.

    Information about properties for the subcommand is included in this help page.

  3. Restart GlassFish Server.

    See To Restart a Domain.

Example 2-13 Adding Resources

This example creates resources using the contents of the resource.xml file on localhost.

asadmin> add-resources c:\tmp\resource.xml
Command : JDBC resource jdbc1 created successfully.
Command : JDBC connection pool poolA created successfully.
Command add-resources executed successfully.

See Also

You can also view the full syntax and options of the subcommand by typing asadmin help add-resources at the command line.