Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: CMAN not utilizing port 1521

Re: CMAN not utilizing port 1521

From: Paul Drake <bdbafh_at_gmail.com>
Date: 8 Aug 2004 22:41:56 -0700
Message-ID: <910046b4.0408082141.7a3cc55a@posting.google.com>


dkolva_at_atlab.com (Don) wrote in message news:<7f205d5c.0408081525.2a3b0feb_at_posting.google.com>...
> Hello all, I'm having difficulty getting CMAN to work properly on a
> Windows 2003 server. The server is running CMAN and the database as
> well. It looks as though the connection is still getting forwarded to
> a random high port (9298 in this example). I am just learning Oracle,
> so appreciate any help!
>
> Thanks for all help in advance.
>
> The following is in the cman.log:
> ====================================
> (TIMESTAMP=08-AUG-2004 19:11:30)(EVENT=10)(VERSION=9.2.0.1.0)
> (TIMESTAMP=08-AUG-2004 19:11:30)(EVENT=36)(RULE_LIST=)
> (TIMESTAMP=08-AUG-2004
> 19:11:30)(EVENT=32)(PARAMETER_LIST=(MAXIMUM_RELAYS=1024)(RELAY_STATISTICS=yes)(AUTHENTICATION_LEVEL=0)(LOG_LEVEL=4)(SHOW_TNS_INFO=yes)(ANSWER_TIMEOUT=0)(MAXIMUM_CONNECT_DATA=1025)(USE_ASYNC_CALL=yes)(TRACING=no)(TRACE_DIRECTORY=default)(MAX_FREELIST_BUFFERS=0)(REMOTE_ADMIN=no))
> (TIMESTAMP=08-AUG-2004 19:11:30)(EVENT=34)(ADDRESS_LIST=
> (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1630)))
> (TIMESTAMP=08-AUG-2004
> 19:14:17)(EVENT=102)(RLYNO=0)(ADDRESS=(PROTOCOL=tcp)(HOST=66.26.17.87)(PORT=9298))
> ====================================
>
> The cman.ora file is as follows:
> ====================================
> cman = (ADDRESS_LIST=
> (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1630))
> )
>
> cman_admin = (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1830))
>
> cman_profile = (parameter_list=
> (MAXIMUM_RELAYS=1024)
> (LOG_LEVEL=16)
> (TRACING=off)
> (RELAY_STATISTICS=yes)
> (SHOW_TNS_INFO=yes)
> (USE_ASYNC_CALL=yes)
> (AUTHENTICATION_LEVEL=0)
> (REMOTE_ADMIN=FALSE)
> )
> ===================================
>
> and the client tns.ora is as follows:
> ===================================
> SLDBSRVR.ATL.LOCAL =
> (DESCRIPTION =
> (ADDRESS_LIST =
> (ADDRESS = (PROTOCOL = TCP)(HOST = ourdomain.com)(PORT = 1630))
> (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
> )
> (CONNECT_DATA =
> (SERVICE_NAME = SLDBSRVR)
> (SOURCE_ROUTE=YES)
> )
> )
> ====================================

take:

      (ADDRESS = (PROTOCOL = TCP)(HOST = ourdomain.com)(PORT = 1630))
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))

and replace it with:
      (ADDRESS = (PROTOCOL = TCP)(HOST = ourdomain.com)(PORT = 1630))
      (ADDRESS = (PROTOCOL = TCP)(HOST = ourdomain.com)(PORT = 1521))

and you should be set.

-bdbafh Received on Mon Aug 09 2004 - 00:41:56 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US