1. Overview of Enterprise Server Administration
Default Settings and Locations
Instructions for Administering Enterprise Server
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 Run a Set of asadmin Subcommands From a File
To Add Resources From an XML File
Listing Various System Elements
To Display the Enterprise Server Version
Using REST Interfaces to Administer Enterprise Server
Using REST URLs to Administer Enterprise Server
Using REST Resource Methods to Administer Enterprise Server
To Determine the Methods and Method Parameters That a Node in the Tree Supports
To Retrieve Data for a Node in the Tree
To Delete a Node From the Tree
Child Resources for Non-CRUD Operations
Securing Enterprise Server REST Interfaces
Formats for Resource Representation
4. Administering the Virtual Machine for the Java Platform
6. Administering Web Applications
7. Administering the Logging Service
8. Administering the Monitoring Service
9. Administering Life Cycle Modules
10. Extending Enterprise Server
Part II Security Administration
11. Administering System Security
12. Administering User Security
13. Administering Message Security
Part III Resources and Services Administration
14. Administering Database Connectivity
15. Administering EIS Connectivity
16. Administering Internet Connectivity
17. Administering the Object Request Broker (ORB)
18. Administering the JavaMail Service
19. Administering the Java Message Service (JMS)
20. Administering the Java Naming and Directory Interface (JNDI) Service
21. Administering Transactions
Shared server instances will often need to override attributes defined in their referenced configuration. Any configuration attribute can be overridden through a system property of the corresponding name.
The following topics are addressed here:
Use the create-system-properties subcommand in remote mode to create or update one or more system properties of the domain or configuration. Any configuration attribute can be overwritten through a system property of the corresponding name.
Ensure that the server is running.
Remote subcommands require a running server.
Create system properties by using the create-system-properties(1) subcommand.
Information about properties for the subcommand is included in this help page.
This example creates a system property associated with http-listener-port=1088 on localhost.
asadmin> create-system-properties http-listener-port=1088 Command create-system-properties executed successfully.
You can also view the full syntax and options of the subcommand by typing asadmin help create-system-properties at the command line.
Use the list-system-properties subcommand in remote mode to list the system properties that apply to a domain or configuration.
Ensure that the server is running.
Remote subcommands require a running server.
List system properties by using the list-system-properties(1) subcommand.
The existing system properties are displayed, including predefined properties such as HTTP_LISTENER_PORT and HTTP_SSL_LISTENER_PORT.
This example lists the system properties on host localhost.
asadmin> list-system-properties http-listener-port=1088 Command list-system-properties executed successfully.
You can also view the full syntax and options of the subcommand by typing asadmin help list-system-properties at the command line.
Use the delete-system-property subcommand in remote mode to delete system properties.
Ensure that the server is running.
Remote subcommands require a running server.
List the existing system properties by using the list-system-properties(1) subcommand.
Delete the system property by using the delete-system-property(1) subcommand.
If necessary, notify users that the system property has been deleted.
This example deletes a system property named http-listener-port from localhost.
asadmin> delete-system-property http-listener-port Command delete-system-property executed successfully.
You can also view the full syntax and options of the subcommand by typing asadmin help delete-system-property at the command line.