Activate a Database listener

Hi Friends,
I have created a database in 10g. The same machine has 9i instance of DB running in it.
After creating the 10g DB i could see a red arrow pointing downward for all the three divisions (DB instance, Listener, Agent connection to database) in this URL of my oracle server http://localhost:1158/em/
Someone guide me on how to start the DB instance and activate the DB listener

Please follow my next article which use :
I need a second listener because the node that I worked has two oracle software one for oracle9i and for oracle10g. I leave the listener LISTENER for the oracle9i software and I create a new one LISTERNER10G for oracle10g software.
I create the second listener via netca and I statically configure the database sid via netmgr .After that I made the following changes in init<SID>.ora and tnsnames.ora file.
tnsnames.ora
LISTENER10G=
(DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.40.250)(PORT=1526)))
alter system set LOCAL_LISTENER= LISTENER10G scope=both;
Some very importand database parameters are the following.
service_names=DB_SISII
db_name=DB_SISII
instance_name=DBSISII
Note that when I create the database I set database name as DB_SISII and SID as DBSISII
Lsnrctl>set current_listener LISTENER10G
Lsnrctl>services
Service "DB_SISII" has 2 instance(s).
Instance "DBSISII", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:0
LOCAL SERVER
Instance "DBSISII", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:0 state:ready
LOCAL SERVER
I can access the database via the following tnsnames.ora entry
DBSISII =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.40.250)(PORT = 1526))
(CONNECT_DATA =
(SERVICE_NAME = DB_SISII)
Some issues exist for database console and may be able to be solved by:
/home/oracle10g/product/10.2.0/netudevsrv1_DBSISII/sysman/emd
Edit the target.xml
<Targets AGENT_SEED="279319488">
<Target TYPE="oracle_emd" NAME="netudevsrv1:3938"/>
<Target TYPE="host" NAME="netudevsrv1"/>
<Target TYPE="oracle_database" NAME="DB_SISII">
<Property NAME="MachineName" VALUE="netudevsrv1"/>
<Property NAME="Port" VALUE="1526"/>
<Property NAME="SID" VALUE="DBSISII"/>
<Property NAME="OracleHome" VALUE="/home/oracle10g/product/10.2.0"/>
<Property NAME="UserName" VALUE="76469754bb6a6e14" ENCRYPTED="TRUE"/>
<Property NAME="password" VALUE="6250d1bedd187e98" ENCRYPTED="TRUE"/>
</Target>
<Target TYPE="oracle_listener" NAME="LISTENER10G_netudevsrv1">
<Property NAME="Machine" VALUE="netudevsrv1"/>
<Property NAME="LsnrName" VALUE="LISTENER10G"/>
<Property NAME="Port" VALUE="1526"/>
<Property NAME="OracleHome" VALUE="/home/oracle10g/product/10.2.0"/>
<Property NAME="ListenerOraDir" VALUE="/home/oracle10g/product/10.2.0/network/admin"/>
</Target>
</Targets>
/home/oracle10g/product/10.2.0/netudevsrv1_DBSISII/sysman/config
Edit the following line in emoms.properties
oracle.sysman.eml.mntr.emdRepConnectDescriptor=(DESCRIPTION\=(ADDRESS_LIST\=(ADDRESS\=(PROTOCOL\=TCP)(HOST\=netudevsrv1)(PORT
\=1526)))(CONNECT_DATA\=(SERVICE_NAME\=DB_SISII)))
emctl stop dbconsole
emctl start dbconsole

Similar Messages

  • How to activate the database

    after create the database using the database configuration asistant, what the next step that we should done to activate the database. i just know that we should create the listener. other than this what should we done..pls kindly help me.im just a new hire who working as a database administrator

    user12103692 wrote:
    after create the database using the database configuration asistant, what the next step that we should done to activate the database. i just know that we should create the listener. other than this what should we done..pls kindly help me.im just a new hire who working as a database administratorThen the best advice for you would be to visit http://tahiti.oracle.com/ and find answers there.
    Question you asked is very common and demands very common answer ,so don't get used to ask this kind of questions in forums as the best place to find the answer , when in a situation like you is , is reading the books, papers and posts on the net where discussion about this already hapened.

  • Unable to auto start database/listener/EM on Oracle Enterprise Linux 5

    All Experts
    I have install oracle 11g on Oracle Enterprize Linux 5 successfully.
    done all post installating steps, but when i restart server oracle listener/database/EM not automatically start.
    Please guide what is wron (server dbora error: /bin/sh: :No such file or directory).
    1. Log in as the root user
    2. Edit the oratab file (SID=Y)
    3. Create a file called dbora
    4.Run chmod and chgrp on the dbor file
    # chgrp dba dbora
    # chmod 750 dbora
    6.Creat symbolic links to the dbora script
    # ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    7. add service
    # chkconfig --add dbora
    # chkconfig –list dbora
    0:off 1:off 2:off 3:on 4:off 5:on 6:off
    # ls -l /etc/rc*.d/*dbora
    # !/bin/sh -X
    # chkconfig: 35 99 10
    # description: Start and stop the Oracle database, listener, EM, and iSQLPlus
    # Change the value of ORACLE_HOMe to specify the correct Oracle Home Firectory for your installation.
    # Change the value of ORACLE to the login name of the oracle owner at your site
    ORACLE_HOME=/oradisk/app/oracle/product/11.1.0/db
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST="hostname"
    PLATFORM="uname"
    export ORACLE_HOME PATH
    if [ ! -f $ORACLE_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case $1 in
    'start')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
    'stop')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
    echo "usage: $0 {start|stop}"
    exit
    esac
    exit

    does the script work when you log on to your freshly started system, logon as root and execute /etc/init.d/dbora start?
    the script does not have to have group membership of the dba group.
    also, do not create symlinks yourself.
    by adding the service using chkconfig the script is started and stopped as indicated by chkconfig --list, no need to do additional steps like creating symlinks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Standby database(11g) was still in sync after stopping the primary and standby database listener.

    Hello !!!
    I have noticed that my standby database(11g) was still in sync after stopping the primary and standby database listener.
    If this is the case then how log is transferring from primary to standby ? it is not using listener service ? kindly clarify

    Read this Metalink Note:407040.1

  • What is default database listener port number

    Running emca script requested for database listener port number. Where do I get this information from.

    If the port number is not specified in listener.ora,
    you may get different values with 10gR1 such as 1509,
    1525, 1525 or 1531 (on Windows XP SP2).
    I guess this depends also on whether the TCP/IP port
    1521 is really released or notI have seen what you have described above when port 1521 was in use by another process. If the port is not in use, I have not seen any thing other then 1521 assigned when the listener was created either during installation or afterwards using Net Assistant.

  • What is the Use of  "Alter database activate standby database"

    Hi ,
    I appreciate your time.
    I just wanted to know what is the use of "Alter database activate standby database" command when doing the failover. How different it will act in failover process. Can we use this command in SwitchOver.
    Thanks in advance.

    Hi Uwe Hesse,
    Wonderfull... good info....
    So my understanding is that the use of "ACTIVATE PHYSICAL STANDBY DATABASE" is conditional and depends on the redo log gap and the Database status(Able to mount or not).
    Condition 1: If the Db is in Mount state and Redo log gap is successfully filled.
    1) Flush any unsent redo from the primary database to the target standby database.
    SQL> ALTER SYSTEM FLUSH REDO TO target_db_name;
    Note: If the above Statement Completes successfully without any errors.
    2) Stop Redo Apply.
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    3) Finish applying all received redo data.
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE FINISH;
    4) Verify that the target standby database is ready to become a primary database.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    5) Switch the physical standby database to the primary role.
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY WITH SESSION SHUTDOWN;
    Condition 2: If the DB is not able Mount and Redo Gap can't be filled.
    Important Note: If the the above command in STEP3 gives error, some received redo data was not applied. Try to resolve the cause of the error and re-issue the statement before proceeding.
    If the error condition cannot be resolved, a failover can still be performed (with some data loss) by issuing the following SQL statement on the target standby database:
    SQL> ALTER DATABASE ACTIVATE PHYSICAL STANDBY DATABASE;
    Thanks in advance.

  • Oracle 10g database listener port range?

    Hi there
    Can you share me oracle 10g database listener port range (start port to end port No). default port is 1521
    Regards
    Jewel
    Edited by: user623166 on Jul 31, 2012 10:41 PM

    I think you will find your answer in below thread :
    listener port number
    Osama ..

  • Database: Listener refused the connection -please help

    middlegen:
    [middlegen] Database URL:jdbc:oracle:thin:@localhost:1521:PUSSDB
    BUILD FAILED
    C:\cvs-1-11-17\middlegen\samples\build.xml:232: middlegen.MiddlegenException: Couldn't connect to database: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    The Connection descriptor used by the client was:
    localhost:1521:PUSSDB
    Total time: 8 seconds
    C:\cvs-1-11-17\middlegen\samples>

    Did you try a tnsping to see if it can provide name resolution? Can you connect to the database using the connect string service name such as sys@pussdb? These would indicate whether the database has been properly defined in your databse names resolution method (e.g. tnsnames).

  • EBS 11.5.10.2 database listener can't stop

    Hi All,
    Today, I planed to shutdown my desktop. So I did the EBS shutdown process before shutdown the PC. My action details as below:
    1. Stop the Application services
    Execute $OAD_TOP/admin/scripts/<SID>/adstpall.sh apps/<apps password>.
    All the applciate services are stop with the status 0
    2. Stop the database listener:
    [oravis@vostro VIS_vostro]$ pwd
    /u01/oracle/ora/visdb/9.2.0/appsutil/scripts/VIS_vostro
    [oravis@vostro VIS_vostro]$ sh addlnctl.sh stop
    You are running addlnctl.sh version 115.6
    addlnctl.sh: too few arguments specified.
    addlnctl.sh start listener_name
    In general, available listeners are
    Database Net8 listener : <ORACLE_SID>
    [oravis@vostro VIS_vostro]$ sh addlnctl.sh stop ORACLE_VIS
    You are running addlnctl.sh version 115.6
    Logfile: /u01/oracle/ora/visdb/9.2.0/appsutil/log/VIS_vostro/addlnctl.txt
    Shutting down listener process ORACLE_VIS ...
    addlnctl.sh: exiting with status 1
    Check the logfile details
    [oravis@vostro VIS_vostro]$ cat /u01/oracle/ora/visdb/9.2.0/appsutil/log/VIS_vostro/addlnctl.txt
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 01:30:28
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCVIS))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 2: No such file or directory
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=vostro.oraebs11i.com)(Port=1521))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 01:30:28
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Starting /u01/oracle/ora/visdb/9.2.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 9.2.0.6.0 - Production
    System parameter file is /u01/oracle/ora/visdb/9.2.0/network/admin/VIS_vostro/listener.ora
    Log messages written to /u01/oracle/ora/visdb/9.2.0/network/admin/vis.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROCVIS)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vostro.oraebs11i.com)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCVIS))
    STATUS of the LISTENER
    Alias VIS
    Version TNSLSNR for Linux: Version 9.2.0.6.0 - Production
    Start Date 11-SEP-2009 01:30:28
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File /u01/oracle/ora/visdb/9.2.0/network/admin/VIS_vostro/listener.ora
    Listener Log File /u01/oracle/ora/visdb/9.2.0/network/admin/vis.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROCVIS)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vostro.oraebs11i.com)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "VIS" has 1 instance(s).
    Instance "VIS", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 01:32:22
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCVIS))
    The command completed successfully
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 01:32:23
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCVIS))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 2: No such file or directory
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=vostro.oraebs11i.com)(Port=1521))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 01:32:23
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Starting /u01/oracle/ora/visdb/9.2.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 9.2.0.6.0 - Production
    System parameter file is /u01/oracle/ora/visdb/9.2.0/network/admin/VIS_vostro/listener.ora
    Log messages written to /u01/oracle/ora/visdb/9.2.0/network/admin/vis.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROCVIS)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vostro.oraebs11i.com)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCVIS))
    STATUS of the LISTENER
    Alias VIS
    Version TNSLSNR for Linux: Version 9.2.0.6.0 - Production
    Start Date 11-SEP-2009 01:32:23
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File /u01/oracle/ora/visdb/9.2.0/network/admin/VIS_vostro/listener.ora
    Listener Log File /u01/oracle/ora/visdb/9.2.0/network/admin/vis.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROCVIS)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vostro.oraebs11i.com)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "VIS" has 1 instance(s).
    Instance "VIS", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 11-SEP-2009 22:05:54
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(CONNECT_DATA=(SID=*)(SERVICE_NAME=ORACLE_VIS.oraebs11i.com))(ADDRESS=(PROTOCOL=TCP)(HOST=ORACLE_VIS)(PORT=1521)))
    TNS-12535: TNS:operation timed out
    TNS-12560: TNS:protocol adapter error
    TNS-00505: Operation timed out
    Linux Error: 110: Connection timed out
    This is my first time to shutdown the EBS, can someone help me?
    Thanks in advance!
    Jerome

    Hi Hsawwan,
    Thanks for your help. I'm totally confused of the useage of the addlnctl.sh below. See, when I type sh addlnctl.sh stop ,the system show the useage of the shell script. it's seems I need to put the listener name after sh addlnctl.sh stop. As I installed the demo in my PC, the database name known as VIS, I don't know I should put the listener name as ORACLE_VIS or VIS only. I have tired the sh addlnctl.sh stop ORACLE_VIS, the script returned the status 1 and log message in my priori update, but when I tried the sh addlnctl.sh stop VIS, the script returned the status 0 and completed fast. Could you tell me which one I should use for the addlnctl.sh ? ORACLE_VIS or VIS only?
    oravis@vostro VIS_vostro$ pwd
    /u01/oracle/ora/visdb/9.2.0/appsutil/scripts/VIS_vostro
    oravis@vostro VIS_vostro$ sh addlnctl.sh stop
    You are running addlnctl.sh version 115.6
    addlnctl.sh: too few arguments specified.
    addlnctl.sh start listener_name
    In general, available listeners are
    Database Net8 listener : <ORACLE_SID>
    Thanks & Best Regards,
    Jerome

  • Activate Standby Database

    Hi,
    I have a question regarding activation of an Oracle 8i Standby Database running under Manual Recovery mode.
    Assuming the Primary database has crashed, are there any steps that I should take other than issue the Command 'Alter Database Activate Standby Database'.
    Will the Standby controlfile automatically change status to "current" from "Standby".
    Thanks
    NewSolarisUser

    Try this
    1. Take it out of managed recovery mode.
    2. Manually recover it up to the last archive
    3. Execute 'clear' logfile.
    4. Activate the standby datase.

  • Automating Database, Listener, Entr. Manager Startup & Shutdown in OEL5

    Hi All,
    bq. I am a quite newbie to Linux, I have installed Oracle 11g on Oracle Enterprise Linux 5 on VMWare by following [this article|http://www.oracle.com/technology/pub/articles/smiley-11gr1-install.html] everything went fine. But my problem is I need to explicitly start and shutdown database, listener & EM. Is there is anyway to automate this, start services on linux startup and stop them during linux shutdown. \\ If any linux script or links/articles available for this requirement, it will be very helpful to me?
    Thanks,
    Sumanth

    I am following the below steps
    1) edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
    orcl:/u01/app/oracle/product/11.1.0:Y
    2) create a file called "/etc/init.d/dbora" as the root user, containing the following.
    #!/bin/sh
    # chkconfig: 345 99 10
    # description: Oracle auto start-stop script.
    # Set ORA_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME.
    ORA_HOME=/u01/app/oracle/product/10.2.0/db_1
    #ORA_HOME=/u01/app/oracle/product/11.1.0/db_1
    ORA_OWNER=oracle
    if [ ! -f $ORA_HOME/bin/dbstart ]
    then
        echo "Oracle startup: cannot start"
        exit
    fi
    case "$1" in
        'start')
            # Start the Oracle databases:
            # The following command assumes that the oracle login
            # will not prompt the user for any values
            su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
        'stop')
            # Stop the Oracle databases:
            # The following command assumes that the oracle login
            # will not prompt the user for any values
            su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
    esac3) set the privileges to 750.
    chmod 750 /etc/init.d/dbora
    4) Associate the dbora service with the appropriate run levels and set it to auto-start using the following command.
    chkconfig --level 345 dbora on
    if am doing anything wrong do let me know
    thanks

  • Database listener not starting

    hi all,
    Database listener is not starting at cloned instance. strange thing is that when listener name is 'PROD' I can not start listener , and when I set listener name to any other name then there is no problem i can start it normally.
    Please find details below.
    OS : Linux
    DB release: 9r2
    $ ./addlnctl.sh start PROD
    You are running addlnctl.sh version 115.7
    Logfile: /oradata/oradb/proddb/9.2.0/appsutil/log/PROD_proddb/addlnctl.txt
    Starting listener process PROD ...
    addlnctl.sh: exiting with status 1
    while viewing logfile (/oradata/oradb/proddb/9.2.0/appsutil/log/PRODproddb/addlnctl.txt)_*
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 28-JAN-2010 09:37:02
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCPROD))
    The command completed successfully
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 28-JAN-2010 09:37:17
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCPROD))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 2: No such file or directory
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=clondb.testdomain.com)(Port=1531))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    LSNRCTL for Linux: Version 9.2.0.6.0 - Production on 28-JAN-2010 09:37:17
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Starting /oradata/oradb/proddb/9.2.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 9.2.0.6.0 - Production
    .logd280: error creating log stream /oradata/oradb/proddb/9.2.0/network/admin
    NL-00278: cannot open log file
    SNL-00016: snlfohd: error opening file
    Linux Error: 2: No such file or directory
    Listener failed to start. See the error message(s) above...
    Permission for files is as folow*
    $ pwd
    /oradata/oradb/proddb/9.2.0/network/admin/PROD_proddb
    $ ls -l
    total 36
    -rwxr--r-- 1 oradb oinstall 1213 Sep 6 10:11 listener_ifile_old.ora
    -rw-r--r-- 1 oradb oinstall 1204 Jan 27 11:43 listener_ifile.ora
    -rwxr--r-- 1 oradb oinstall 1335 Jan 27 11:25 listener_old.ora
    -rw-r--r-- 1 oradb oinstall 1197 Jan 28 09:37 listener.ora
    -rwxr--r-- 1 oradb oinstall 324 Jan 23 09:13 PROD_proddb_ifile.ora
    -rw-r--r-- 1 oradb oinstall 2 Feb 21 2008 sqlnet_ifile.ora
    -rwxr--r-- 1 oradb oinstall 631 Sep 6 10:25 sqlnet.ora
    -rwxr--r-- 1 oradb oinstall 2530 Jan 27 11:25 tnsnames_old.ora
    -rwxr--r-- 1 oradb oinstall 2530 Sep 6 09:04 tnsnames.ora
    and permission for log files*
    $ pwd
    /oradata/oradb/proddb/9.2.0/network/log
    $ ls -l
    total 100
    -rw-r--r-- 1 oradb oradb 0 Jan 27 13:32 listener.log
    -rw-r--r-- 1 oradb oinstall 2170 Feb 21 2008 listener_old.log
    -rw-r--r-- 1 oradb oinstall 5020 Jan 28 09:37 proddg.log
    -rw-rw-r-- 1 oradb oradb 352 Jan 28 09:37 prod.log
    -rw-r--r-- 1 oradb oinstall 3168 Jan 27 12:01 prod_old.log
    -rw-r--r-- 1 oradb oinstall 74089 Sep 4 11:01 sqlnet.log
    regards

    user4041390 wrote:
    hi all,
    Database listener is not starting at cloned instance. strange thing is that when listener name is 'PROD' I can not start listener , and when I set listener name to any other name then there is no problem i can start it normally.
    <snip>Why not make life easier on yourself and just let the listener go with the default name of 'listener'?

  • Suppress database/listener/agent unreachable if host unavailable

    Hi,
    When a host becomes unavailable due to network issues we receive a deluge of agent/database/listener/host unreachable notifications. Is there a clean way to make sure that when a host is unreachable via ping for example other unreachable target notifications are suppressed?
    Thanks for any help in advance
    Phil
    Edited by: user10912727 on 11-Apr-2011 04:01
    Edited by: user10912727 on 11-Apr-2011 04:02

    Hi Rob,
    Thanks for taking the time to reply. Shame these is no way of doing this but I understand why.
    Regards
    Phil

  • JMS as database listener

    Hi, good day to you.
    I would like to know how to implement JMS as database listener, so that any CRUD process to the database will send a notification to JMS listener.
    Any tutorial or articles?
    Thanks.

    What you call a "database listener" is, in the database world, called a "trigger".
    Check the documentation for your database to see if it supports triggers (not all of them do) and what languages they can be written in.

  • Weblogic Connection pool active even database listener down

    Just wanted to check if sometime noticed this.
    Today.. In production our Database listener was down and connection pools in weblogic were still working fine. But, when tried making a explicit call to DB it throws exception "The Network Adapter could not establish the connection"..
    Couple of days back our production database was restarted. Sill weblogic connection pool was active without restart.
    Any info. is appreciate..
    Thanks

    Hi Jung,
    There is no timeout current that you can set on the connection pool. It will
    be in a future release of WebLogic
    sree
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]..
    Thanks.
    Yes I know that part.
    However, I still would like to know how to get time out settings andchange
    if I can.
    Where can I do that?
    - jung
    "Sree Bodapati" <[email protected]> wrote in message
    news:[email protected]..
    set TestConnectionsOnReserve="true" in the pool and you should be all
    set.
    >>
    sree
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]..
    I am currently using WLS 6.0 SP2 RP2 with jdbc thin oracle driver.
    What is the timeout setting on weblogic connection pool?
    I would like to set max number of seconds waiting for reply to connect
    to
    a
    database so that it does not wait too long before realizing that it isdown.
    Also if there is a setting that can be configured, is it jdbc api
    implementation or weblogic specific?
    Thanks in advance.

Maybe you are looking for

  • Every time I log in and try to post I get error message

    Error An error has occurred. We apologize for the inconvenience. Useful links: Forum Home -- browse the forums here. Search Forums -- visit the search page to query all forum content. Then I have to hit "Forum Home" re-log in, and then go and find th

  • Using a Mac Pro w / Apple Internal Hardware RAID Card?

    Anyone using a Mac Pro with a Apple Hardware RAID Card 2010? ( I have a 12 Core ) Is it worth the $600-700 ? How much faster than the software RAID 0? I see Hamm's RAID tips chart .. but it doesn't include such options .. plus it is based on a PC sys

  • How do I access all my music on authorized devices?

    I am having trouble accessing my music from all of my devices. My account shows that I have 3 devices that have access, but any music I have purchased on my laptop does not show up in my library on my iMac desktop computer. Help!

  • Photoshop CC 2014 and Indesign CC 2014 crash when printing

    Ever since I installed the CC 2014 versions of Indesign and Photoshop, I am absolutely incapable of printing. As soon as the print dialog comes up, the programs crash. (I don't have this issue with Illustrator CC 2014.) It's quite frustrating. Fortun

  • PDF attachment appears inline

    I've been struggling with this for two days now. So, I need some input. I have followed the JavaMail example for attaching a file, but it appears inline instead, looking like the pasted content below. I'm doing the typical: MimeBodyPart mbp2 = new Mi