Multiple listener

hi,
I hav one doubt regarding listener .question is,
is it possible to run more than one listener at a time?
so far i know is only one listener can be run at a time and can listen for more than one database.
But in the document itz given that "multiple listeners can also listen on behalf of a single database to perform load balancing".so i didnt understand at this point.....
so is it possible to run more than one listener.
can any one explain me abt this plz?
With Regards
Boo

After configuring as you said :
Still I Am not able to tnsping to 9i through 10g
#tnsnames at 10g
test=
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = surbhi)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = aj)
Tnsping fails
C:\oraclexe\app\oracle\product\10.2.0\server\BIN>tnsping test
TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 07-DEC-2
006 11:00:47
Copyright (c) 1997, 2005, Oracle. All rights reserved.
Used parameter files:
C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
TNS-03505: Failed to resolve name
Albeit listesner configured as you stated above
LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on
LSNRCTL> STATUS
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
STATUS of the LISTENER
Alias listener
Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
ction
Start Date 07-DEC-2006 10:49:32
Uptime 0 days 0 hr. 3 min. 15 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Default Service XE
Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\a
dmin\listener.ora
Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\l
og\listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=surbhi.Secf.com)(PORT=1522)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8081))(Presentation=
HTTP)(Session=RAW))
Services Summary...
Service "CLRExtProc" has 1 instance(s).
Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "XE" has 2 instance(s).
Instance "XE", status UNKNOWN, has 1 handler(s) for this service...
Instance "xe", status READY, has 1 handler(s) for this service...
Service "XEXDB" has 1 instance(s).
Instance "xe", status READY, has 1 handler(s) for this service...
Service "XE_XPT" has 1 instance(s).
Instance "xe", status READY, has 1 handler(s) for this service...
The command completed successfully
LSNRCTL> SET CURRENT_LISTENER LISTENER_9
Current Listener is LISTENER_9
LSNRCTL> STATUS
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
STATUS of the LISTENER
Alias LISTENER
Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Produc
tion
Start Date 06-DEC-2006 16:48:31
Uptime 0 days 18 hr. 4 min. 50 sec
Trace Level off
Security OFF
SNMP OFF
Listener Parameter File C:\oracle\ora92\network\admin\listener.ora
Listener Log File C:\oracle\ora92\network\log\listener.log
(ENDPOINT=(HANDLER=(HANDLER_MAXLOAD=0)(HANDLER_LOAD=0)(ESTABLISHED=0)(REFUSED=
0)(HANDLER_ID=010F2F81353C-4C91-91B2-1A5002AB870D)(PRE=any)(SESSION=NS)(DESCRIPT
ION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))))
The command completed successfully

Similar Messages

  • MULTIPLE LISTENER의 LOAD BALANCING 및 2개의 NETWORK CARD 사용 시 SETUP

    제품 : SQL*NET
    작성날짜 : 1997-11-24
    MULTIPLE LISTENER의 LOAD BALANCING 및 2개의 NETWORK CARD 사용 시 SETUP
    =====================================================================
    Oracle V7.3의 SQL*Net 2.3의 새로운 기능으로 여러 개의 Listener를 띄우면서
    상호 Load Balancing을 유지하는 기능을 소개하고자 한다.
    Load Balancing 기능을 이용하여 각각의 Listener와 Oracle Instance 간의
    Overloading을 줄일 수 있다.
    다음의 예는 하나의 장비 내에 2개의 Network Card가 있을 경우에 대해 setup을
    하는 방법이며 만일 하나의 Network Card가 있을 경우는 Host는 하나만 지정
    하면 된다.
    1. init<SID>.ora file을 지정할 Parameter
    MTS_MULTIPLE_LISTENERS=TRUE
    COMPATIBLE=7.3.2.0
    2. 예를 들어 Listener를 2개 사용하는 경우라면 initSID.ora에
    mts_dispatchers="tcp,10"
    mts_max_dispatchers=20
    mts_servers=20
    mts_max_servers=40
    mts_service=ORA73
    mts_listener_address="(address_list=
    (address=(protocol=tcp)(port=1621)(host=152.69.30.100))
    mts_listener_address="(address_list=
    (address=(protocol=tcp)(port=1622)(host=152.69.30.100))
    mts_listener_address="(address_list=
    (address=(protocol=tcp)(port=1623)(host=152.69.30.102))
    mts_listener_address="(address_list=
    (address=(protocol=tcp)(port=1624)(host=152.69.30.102))
    3. listener.ora file에 설정되는 내용은
    LISTENER1 =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = tcp)
    (HOST = 152.69.30.100)
    (PORT=1621)
    (ADDRESS =
    (PROTOCOL = tcp)
    (HOST = 152.69.30.100)
    (PORT=1622)
    LISTENER2 =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = tcp)
    (HOST = 152.69.30.102)
    (PORT=1623)
    (ADDRESS =
    (PROTOCOL = tcp)
    (HOST = 152.69.30.102)
    (PORT=1624)
    SID_LIST_LISTENER1 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORA73)
    (ORACLE_HOME=/oracle2/ora73/app/oracle/product/7.3.2)
    SID_LIST_LISTENER2 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORA73)
    (ORACLE_HOME=/oracle2/ora73/app/oracle/product/7.3.2)
    STARTUP_WAIT_TIME_LISTENER1 = 0
    STARTUP_WAIT_TIME_LISTENER2 = 0
    CONNECT_TIMEOUT_LISTENER1 = 0
    CONNECT_TIMEOUT_LISTENER2 = 0
    4. tnsnames.ora file에 설정되는 내용들
    * 다수의 port에 Random하게 접속하는 경우
    RANDOM =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 152.69.30.100)
    (Port = 1621)
    (CONNECT_DATA =
    (SID = ORA73)
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 152.69.30.100)
    (Port = 1622)
    (CONNECT_DATA =
    (SID = ORA73)
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 152.69.30.102)
    (Port = 1623)
    (CONNECT_DATA =
    (SID = ORA73)
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host = 152.69.30.102)
    (Port = 1624)
    (CONNECT_DATA =
    (SID = ORA73)
    * 개개의 Port로 접속하는 경우
    TORA1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host =krrcsun)
    (Port = 1621)
    (CONNECT_DATA =
    (SID = ORA73)
    TORA2 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host =krrcsun)
    (Port = 1622)
    (CONNECT_DATA =
    (SID = ORA73)
    TORA3 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host =krrcsun)
    (Port = 1623)
    (CONNECT_DATA =
    (SID = ORA73)
    TORA4 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (Host =krrcsun)
    (Port = 1624)
    (CONNECT_DATA =
    (SID = ORA73)
    5. 각각의 Listener를 띄우는 방법
    $ lsnrctl start LISTENER1
    $ lsnrctl start LISTENER2

  • Configure Enterprise Manager with multiple Listener

    Configure Enterprise Manager with multiple Listener
    I have created 2 listeners and connected my database with both the listeners. If I stop one listener then it automatically uses second listener vice versa. But facing problem in case of enterprise manager. If i stop first listener which is on 1521 port it is not connecting to another listener which is on 1522 port.
    any help ?

    Your potential problem is Enterprise Manager simply doesn't KNOW about that second listener. You can easily verify that when you look at the monitored targets.
    Enterprise Manager also reconstructs automagically it's own tnsnames.ora! So, it doesn't connect to second -completely redundant and useless - listener, because the tnsnames.ora entry on the Management Sever is incorrect.
    Simply because you didn't made sure OEM could discover the second -completely redundant and useless- listener.
    I notice you apparently don't want to read documentation. Yet the only way to work successfully with Oracle, and to become independent, is to read that documention.
    Apart from that you should be able to find agentca.bat on your OS with one command, so, yes, I pointed you to the documentation, yes, you can find agentca.bat.
    Sybrand Bakker
    Senior Oracle DBA

  • Multiple listener running (hanging) on the same port  //weird..

    Hi there,
    today we encountered a strange problem regarding the listener process. (multiple process with the same listener name.. :-( )
    versions: rdbms/listener 10.2.0.2
    OS: AIX 5L 5200-09-04
    so; from the process list of the AIX:
    594032 991330 0 03:43:18 - 0:00 /orabinp/product/ora10g/bin/tnslsnr LSNRprod -inherit
    991330 1 0 Mar 04 - 29:17 /orabinp/product/ora10g/bin/tnslsnr LSNRprod -inherit
    as you see the 2nd listener was initiated from the "original" listener, (the parent ID is 991330)
    the lsnrctl status, stop commands were hanging, the lsnr processes were terminated with -USR2 signal. lsnr start was ok, after this the application was able to connect.
    resolution took around 3 mins, but there is a need to have a root cause analysis. usually when you want to start an already running listener,it results in a "TNS-01106: Listener using listener name 'LISTENERname' has already been started".
    during this double operation there were no connection available (it is clear from listener.log)
    Anyone had this issue?
    Any comments welcome and highly appreciated.
    p.s.
    (oracle version 10.2.0.2 - first question -is it a known bug?- I have not found it in a bug list.. the db will be patched/migrated to 10.2.0.3 at next available downtime)

    Virtual PC can do it, but it's not free. I think VMware as well, but likely not free. Actually, it seems you can evaluate VMware:
    http://www.vmware.com/download/

  • Multiple listen ports for one weblogic instance

    Can anybody confirm that you can have only one listen port defined for a single
    weblogic instance (i.e. one instance cannot be listening to multiple ports at
    the same time)?
    Thanks

    you can have multiple ip's assigned to the same box
    and bind each WLS instance to a unique which will listen
    on the same port.
    Kumar
    Gary Wong wrote:
    Can anybody confirm that you can have only one listen port defined for a single
    weblogic instance (i.e. one instance cannot be listening to multiple ports at
    the same time)?
    Thanks

  • ORDS_METADATA & multiple listener versions

    Is anyone able to explain the ORDS_METADATA requirement (beyond that in the doco that is)?
    The doco indicates that the ORDS_METADATA user is required. Which is does seem to be, as evidenced by ORDS standalone not working if the ORDS_METADATA schema does not exist.
    I have 4 distinct installations of ords.3.0.0.65.09.31 on a server pointing to a particular database, and yet another server with another ords.3.0.0.65.09.31 install pointing to the same database. All work fine as standalones (without REST).
    On this database, select * from ords_metadata.ords_version; returns one row, 3.0.0.343.08.03.
    How do I update the ords version? Do I drop the ords_metadata schema and then allow the install process to recreate it? Assuming the new version of the install actually creates it as 3.0.0.65.09.31 (which it does not seem to do).
    I would think that it possible to have multiple versions of ords all connecting to the same database. Thence I would expect that the ords_schemas table to have multiple rows, one for each ords instance running against this database. Or doesn't it matter? Am I not having problems because I am avoiding the REST side of things?
    If we have more than one configured ords listener pointing at the same database, should each have its own "ords_metadata" schema?
    Should we have more than one configured ords listener pointing at the same database? (With the same ORDS_METADATA?)
    cheers
    teedub

    The normal oracle listener process will happily connect users to a number of databases from a number of versions - it is just told the database service name as part of the connection information.
    I don't know much about the JDBC thin driver, but if its connection information includes the database service name, then I expect the listener to do what you want without trouble.

  • Multiple listener on 9i and 11g

    Hi all
    I have 9i and 11g installation on same oracle user.
    3 of db are using 9i and 1 of db is using 11g binaries
    my 9i listener is working fine but when i try to do tnsping for 11g db which is upgraded from 9i is not working.... TNS_ADMIN is set 11g.
    echo $TNS_ADMIN
    /spqa01/app/oracle/product/11.1.0/network/admin
    which tnsping
    /spqa01/app/oracle/product/11.1.0/bin/tnsping
    when i do tnsping SPD1
    Attempting to contact (description=(address=(protocol=tcp)(host= qdchudaa)(port=1527))(connect_data=(sid=SPD1)))
    TNS-12541: TNS:no listener
    listener of the 9i have below entries
    LISTENER_SPQA =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx.qdx.com)(PORT = 1526))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = SPQA_EXTPROC))
    SID_LIST_LISTENER_SPQA =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /spqa01/app/oracle/product/9.2.0)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = SPQA1.QDX.COM)
    (ORACLE_HOME = /spqa01/app/oracle/product/9.2.0)
    (SID_NAME = SPQA1)
    (SID_DESC =
    (GLOBAL_DBNAME = SPQA2.QDX.COM)
    (ORACLE_HOME = /spqa01/app/oracle/product/9.2.0)
    (SID_NAME = SPQA2)
    (SID_DESC =
    (GLOBAL_DBNAME = RMANTST.QDX.COM)
    (ORACLE_HOME = /spqa01/app/oracle/product/9.2.0)
    (SID_NAME = RMANTST)
    (SID_DESC =
    (GLOBAL_DBNAME = SPD2.QDX.COM)
    (ORACLE_HOME = /spqa01/app/oracle/product/9.2.0)
    (SID_NAME = SPD2)
    ----------tnsnames.ora of 9i
    SPD1 =
    (DESCRIPTION =
    (ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1525)))
    (CONNECT_DATA =(SERVICE_NAME = SPD1.qdx.com) (INSTANCE_NAME = SPD1)))
    SPQA1.QDX.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1526))
    (CONNECT_DATA =
    (SERVICE_NAME=SPQA1.qdx.com)
    SPQA1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1526))
    (CONNECT_DATA =
    (SERVICE_NAME = SPQA1.qdx.com)
    INSTANCE_NAME = SPQA1)
    SPQA1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1526))
    (CONNECT_DATA =
    (SERVICE_NAME=SPQA1.QDX.COM)
    SPQA2.QDX.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1526))
    (CONNECT_DATA =
    (SERVICE_NAME=SPQA2.qdx.com)
    ====================listener.ora of 11g
    LISTENER_SP11 =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = extproc1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx.qdx.com)(PORT = 1527))
    SID_LIST_LISTENER_SP11 =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME= /spqa01/app/oracle/product/11.1.0 )
    (PROGRAM = extproc)
    same tnsnames.ora in 9i in 11g
    both compatible is set to 11.1.0 and local_listner is set to (ADDRESS =(PROTOCOL=TCP)(HOST=xxx)(PORT=1527))
    How to configure listener which can support 11g instances separatly
    please help

    How to configure listener which can support 11g instances separatly hi in this case you need to put 9i & 11g network files in different locations for example
    ORACLE 9i:-
    export TNS_ADMIN=/u01/app/oracle/product/9.2.0/db_1/network/admin
    ORACLE 11g:-
    export TNS_ADMIN=/u02/app/oracle/product/11.1.0/network/admin
    then export which listener you wan...
    TWO_TASK(tns connection string) & TNS_ADMIN(path of network files $ORACLE_HOME/network/admin) before if you want to use specific listener either 11g or 9i.
    HI Sb,
    can you correct if im wron. Thanks

  • Multiple listener ports

    I'm having various problems with my 1.0.2.1 install that I think are linked to my ports (iAS and 8.1.7 on same machine). I saw in the preinstallation instructions the following:
    Oracle9i Application Server installs another database that listens on port 1521. Change the port for the origin database listener to be, for example, 1526.
    Can anyone out there tell me how to do this? What is the new database it is installing? The portal30 schema? What's the password for that schema? Is the origin database the one where it installs the wireless repository?
    null

    If you can exactly mention what is the problem you are facing then I can probably look into it.
    Ias10210 Installs another database, which is used for icache alone. This database is installed on 1521 port and no option to change it. So to change the listener port of the database, go to your <ORACLE_DB_HOME>/network/admin/listener.ora file and modify the listener port to 1526 ( the default is 1521). You can do the same in tnsnames.ora also. After this you have to stop and start the listener
    cmd> lsnrctl stop
    cms> lsnrctl start
    For the db installed by IAS is for cache usage alone and is not advisable to use for any other purpose

  • Multiple listening sites

    I have a G4 hard wired to an Airport Base station. I have a Powerbook G4 that utilizes the airport base station to connect to the internet, IT IS NOT HARDWIRED. I also have an airport express in a seperate room of the house.
    When I want to listen to tunes I use the Powerbook to "send" the music to the airport express, HOWEVER, I can't listen to stations that are streaming on iTunes because I have to switch to the Airport Express which disconnects me from the base station and also I can't listen to the tunes on the Powerbook.
    I'm told with the latest update to iTunes, which I have installed (iTunes 7) I'm led to believe there is a way to do this. Can anyone explain how?

    Maybe this is all my fault. As I reviewed my very first message I should have stated that "I have a G4 Tower hard wired to an Airport Extreme NOT an Airport Express Base Station" and that "I have a Powerbook G4 that utilizes the airport base station to connect to the internet, IT IS NOT HARDWIRED", I receive the signal wirelessly.
    No fault at all, you explained it perfectly ... and my instructions would still be appropriate. With your current network configuration, you will want to reconfigure the AirPort Express Base Station (AX) as a wireless client to the wireless network being provided by your AirPort Extreme Base Station (AEBS).
    Also when I first open the Airport Admin Utility it only shows the BASE Station. Should it also be showing the Airport Express?
    Yes, it should show both. I suggest during the set up phase to bring the AX within near proximity of the AEBS, so that the utility has a better "chance" of "seeing" them both. Remember to "factory default" reset the AX. If you are still not seeing both in the utility, just connect the AX directly, using an Ethernet cable, to the LAN port of the AEBS during setup. You definitely should see both now. Once configured, you can go ahead and move the AX to its final desired location.

  • Multiple Oracle Listener 11gr2

    Dear Expert,
    There is user request to have multiple listener to control each different Oracle SID on same hosts. It is recommended to have multiple listener runing on same host machine.
    How to create different listener name to control each Oracle SID on same hosts machine. There is 4 database running on same hosts. Thanks
    Regard
    William Voong

    2a16cd8d-bd59-48b3-8561-15162010675e wrote:
    Dear Expert,
    There is user request to have multiple listener to control each different Oracle SID on same hosts. It is recommended to have multiple listener runing on same host machine.
    How to create different listener name to control each Oracle SID on same hosts machine. There is 4 database running on same hosts. Thanks
    Regard
    William Voong
    To put it bluntly, the "user" who made this request doesn't know what he's talking about and should be kept as far away from databases as is possible.
    One single listener, using the default name of LISTENER and the default port of 1521, is quite capable of -- indeed, WAS DESIGNED TO -- service multiple databases of multiple versions running from multiple homes.  Multiple listeners simply adds complications, and for no gain whatsoever.
    Having a listener for each database is like the telephone company having an entire switchboard for each customer.
    Having a listener for each database is like the bank having a teller for each customer.
    Please don't say "but this is the "user"'s requirement.  It is your job to educate the "user".

  • How to configure multiple listeners

    Hi All,
    I have installed 2 different Oracle instances on a single machine. I found that each oracle installation created its own Listener. I cant start both of the listeners at the same time. As a result, the respective applications cant talk to their corresponding database instances.
    I could start only one listener for one database instance at any given point of time. Therefore, I am unable to use the other application.
    Can any one please help me in configuring this appropriately so that both the applications can talk to their respective databases?
    Waiting for your kind replies.
    Regards,
    Syed

    Syed Abdul Rahman wrote:
    Hi All,
    I have installed 2 different Oracle instances on a single machine. I found that each oracle installation created its own Listener. I cant start both of the listeners at the same time. As a result, the respective applications cant talk to their corresponding database instances.
    I could start only one listener for one database instance at any given point of time. Therefore, I am unable to use the other application.
    Can any one please help me in configuring this appropriately so that both the applications can talk to their respective databases?
    Waiting for your kind replies.
    Regards,
    Syedit's better to configure a single listener . Configuring multiple listener will increased system resource usage. Multiple listener may be helpful in case of RAC .
    --neeraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can NI-Device be multiple addresses on 1 interface?

    We develop instrument cards in CompactPCI that use NI-Device and a PXI-GPIB card for their GPIB interface.
    We'd like to be able to put multiple instrument cards in the same CPCI chassis with the one GPIB card, but give each instrument a different address. This is important for backward compatibility with our existing line of equipment, because many of our customers have systems set up and software written to expect two different devices at two different addresses.
    Can this be done with NI-Device? Ideally I'd want to route incoming commands on address 14 to one piece of software and incoming commands on address 15 to another piece of software, etc.
    I guess the best analogy I can make for what I want would be si
    ngle-node multi-homing for TCP/IP. For example I can have a two applications using two different IP addresses on the same Ethernet card. I'd like to do the analogous thing in GPIB using NI-Device.
    Thanks!

    The standard version of NI-Device does not support multiple listening addresses for a single GPIB board. However, NI-Device version 1.0.1 does support multiple device simulation. There are a couple of restrictions, however, including the fact that you must be running Windows NT4. Currently NI-Device 1.0.1 only supports the PCI-GPIB board, but if you send me an email, we can discuss some options with the PXI-GPIB board.
    Thanks,
    Eric Singer
    [email protected]

  • Listener configuration for 2 db instance in a single node

    Hi,
    I have configure a 11gR2 server with 2 db instance (A and B), but I have only one listener (default) to server this two db instances.
    Is this the recommended configuration or should I have one listener for each db instance? e.g Listener_A and Listener_B. I think it will be usefull in cases when I need to block the access to one db instance (A) without shutting down the database, by just turning off the proper Listener.
    With my current configuration I am not able to do that since if I turn of the only listener that I have both dbs will not receive any other connections.
    Am I correct?
    Regards,
    Edited by: ashum on May 13, 2011 8:21 AM

    You are right that there is some value in going to the trouble to set up a separate listener for each database. Whether you take this approach depends mainly on how satisfied you are with the alternatives and how much trouble you want to incur in setting up and maintaining multiple listeners. We use separate listeners for each of our databases and really like the granularity it provides in limiting the scope of outages.
    If you take the multiple listener approach, you will need to either use separate ports for each listener, or bring up a virtual ip on your server so that the second listener can run on the virtual ip.

  • Listen socket

    Hello,
    Can a listen socket be used for multiple webservers? Is it necessary to have a listen socket for individual virtual server?

    Multiple listen sockets can use the same IP address, but they must be listening on different ports.
    Multiple listen sockets can use the same port as long as the IP addresses are different.
    Please verify the doc section about this with what you want to make exactly ===>
    http://docs.sun.com/source/819-0130/agvirtual.html#wp1011171

  • Register new listener for newDB(with new Home) in existing 10.2.0.2 cluster

    Dear Friends,
    UAT Instance:
    i have installed 10g cluster (10.2.0.2) and i have cretaed new 10g home and cretaed listener (with port ) and cretaed UAT database
    No issues on the above
    DEV Instance:
    Now we have another database DEV and for this i have differnt oracle home (not same as UAT) and i created databases and converted to RAC but i want this database to be registered in the 10g existing cluster and the listener also i want to have new one with different port (not same as UAT)
    so when we try to cretae new listener from new DB home it's throwing error.
    "CRS-0215: could not start resource"
    so please let me know how to
    creating new listener with different port for new database having new DB home
    and register it with the existing 10g cluster
    Regards,
    DB

    Hi,
    Is the database part of the cluster or not?
    srvctl config database -d ... to find out if not add it to cluster
    srvctl add database -d and then the instances
    srvctl add instance -d dbname -i instance name
    have a look in here for information related to listener/port
    Changing Default Listener Port Number [ID 359277.1]
    How to Create Multiple Oracle Listeners and Multiple Listener Addresses [ID 232010.1]

Maybe you are looking for