Help need in cloud computing.

Asked By 0 points N/A Posted on -
qa-featured

I am looking for help in configuring the listener in cloud computing. When it will restart it is assigning a totally different set of EC2 Private IP id and EC2 public IP id. Every time it is repeated. So it leads to failure to the listener. If anybody knows the solution for this problem, please help me. Thanks in advance.

SHARE
Answered By 25 points N/A #94282

Help need in cloud computing.

qa-featured

Dear Evelyn Marcial,

You might need to set the http listener end point using the package DB.dbms_xdb like:

Exec dbms_xdb.setlistenerendpoint(
Endpoint => dbms_xdb.XDB_ENDPOINT_HTTP
, host => 'hostname'
, port => 8080 
, protocol => dbms_xdb.XDB_PROTOCOL_TCP);

You might also need to set/reset the listener local access mode with either of the following:

Exec dbms_xdb.setListenerLocalAccess (l_access => TRUE);

Or

dbms_xdb.setListenerLocalAccess(l_access => FALSE);

Depending on your choice if you would like the service only to be available locally or also remotely.

When local access mode is enabled, the host name is localhost. When local access mode is disabled, the host name is null as returned by dbms_xdb.GetListenerEndpoint.

Hope this may help you.

Best of luck.

Related Questions