Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Listener
If you are having problems with the number of sessions being allowed to connect
to the listener then its probably a UNIX kernel issue (I assume you are using
UNIX). The port connection limitation is O/S related ... SQL*NET could care
less.
The reason you would want to create another listener is to speed up connect time for client/server aps that constantly build-up/tear-down connections (Oracle Web Server is a good example). Separating different types of clients to be served by different listeners can help optimize your resources. You can further speed it up by creating dedicated listener processes to avoid the 'build-up/tear-down' process .... but thats another topic ....
DerKommisar wrote:
> Hi all,
> Is There a max value of concurrent sessions for an only Listener ?
>
> For example :
> LISTENER =
> (ADDRESS_LIST =
> (ADDRESS= (PROTOCOL= TCP)(Host= sys1)(Port= 1521))
> )
>
> SID_LIST_LISTENER =
> (SID_LIST =
> (SID_DESC =
> (GLOBAL_DBNAME= zuri)
> (ORACLE_HOME= /dk4fs1/oracle)
> (SID_NAME = zuri)
> )
> )
>
> This LISTENER above, with this Port (1521) is able than has also 300 users
> at the same time?
> Or I have to do another Listener (ex. LIST1) with another Port (ex. 1526) ?
Received on Sun Jan 23 2000 - 18:11:57 CST
![]() |
![]() |