Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How do I rename the listener process
joes garage wrote:
> If I set up sqlnetV2 it starts a process called listener. If I
> do a lsnrctl stat I see there can be an alias. I would like to know
> where/how to change the process to something a bit more descriptive.
>
> ie DATA_BASE_listener. I assume by doing this I can run multiple
> listener processes on the same machine, which is my ultimate goal.
Hi,
you can set the name of the listener by listener_name:
listener_name=(ADDRESS=
[(COMMUNITY=community name)] (PROTOCOL=protocol name) (protocol specific information))
in the file listener.ora (/var/oracle?). If you don't specify the listener_name the default name of the listener is "listener".
If you have more database (more SID) on the same machine and you want a listener with the name of the database you can:
SID_LIST_listener_name=[(SID_LIST=]
(SID_DESC= (GLOBAL_DBNAME=global_database_name) (SID_NAME=SID) (operating_system_specific_ string=db_location) ) [(SID_DESC= (GLOBAL_DBNAME=global_database_name) (SID_NAME=SID) (operating_system_specific_ string=db_location) )] [)]
Bye
Giuseppe De Donno
Received on Thu Oct 15 1998 - 00:00:00 CDT