Consultor Eletrônico



Kbase P137292: How to force the OE10.1C AdminServer to bind to a particular IP address?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   24/02/2009
Status: Verified

GOAL:

How to force the OE10.1C AdminServer to bind to a particular IP address?

GOAL:

How to bind a specific IP to OE10.1C AdminServer?

FACT(s) (Environment):

All Supported Operating Systems
OpenEdge 10.1C or higher

FIX:

You have the following options for forcing the AdminServer to bind to a particular IP address:
1. Add "-host <ip address>" to command line when you start the AdminServer.

For Example:

proadsv -start -host <ip address>

**Use the above commands when you start the AdminServer using a batch file or on the command line.

2. Add "-Djava.rmi.server.hostname=<ipaddr>" to "jvmArgs" property of the "AdminServer" group in $DLC/properties/AdminServerPlugins.properties.

For example:

[PluginPolicy.Progress.AdminServer]
<other existing parameters>
jvmargs=-Djava.rmi.server.hostname=<ip address> <more space separated arguments here>
3. Add command line args to "args" property of the "AdminServer" group in $DLC/properties/AdminServerPlugins.properties. For example:

For example:


[PluginPolicy.Progress.AdminServer]
<other existing parameters>
args=-host <ip address> -port <number> -start
*** The "args" specified in $DLC/properties/AdminServerPlugins.properties override the command line arguments.