Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Newbie: Problems to connect using port 1521
At the begining, thank you to answer me so fast, but my problem is that I
think that my Listener.ora are correctly configured. This file contains:
LISTENER =
(DESCRIPTION_LIST=
(ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC))
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP) (HOST = theNameOfMyHost) (PORT = 1521))
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = /opt/oracle/product/9.0.1) (PROGRAM = extproc)
(GLOBAL_DBNAME = test.myDomain.es) (ORACLE_HOME = /opt/oracle/product/9.0.1) (SID_NAME = test)
I suppose that the Net8i dispatches every connection to another ports, but anything isn't working properly, because the connection fails. I would like to know what I have to do to connect to the data base using the same port always.
Thank you very much.
"Karsten Farell" <kfarrell_at_medimpact.com> escribió en el mensaje
news:SmKj9.64$xn7.7654718_at_newssvr13.news.prodigy.com...
> Port 1521 is monitored by Listener. When it "hears" a connection request
> (from the client), it spawns (or if MTS, perhaps uses an existing)
> dispatcher to handle the normal network "conversation" between client
> and server. The dispatcher has to "talk" over another port (since 1521
> is in use by Listener) ... so a "random" port is assigned for the
> dispatcher. You can make it less "random" by using MTS or Connection
> Manager.
>