Home » RDBMS Server » Enterprise Manager » emctl start dbconsole ...... failed - in oracle 11g r2 (centos 6.4)
emctl start dbconsole ...... failed - in oracle 11g r2 [message #612483] Sat, 19 April 2014 14:53 Go to next message
rahulvishwakarma
Messages: 11
Registered: April 2014
Junior Member
hello ,
i have installed oracle database 11gr2, on my pc. it installed fine.
everything was fine. after restating pc "ttp://localhost:1158/em" is not connecting.
listener is ok and runnig fine.
some outputs are :-


[root@localhost /]# lsnrctl status

LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 20-APR-2014 01:24:57

Copyright (c) 1991, 2013, Oracle. All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
Start Date 19-APR-2014 20:52:07
Uptime 0 days 4 hr. 32 min. 49 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /opt/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
Listener Log File /opt/oracle/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)))
Services Summary...
Service "orcl" has 1 instance(s).
Instance "orcl", status READY, has 1 handler(s) for this service...
Service "orclXDB" has 1 instance(s).
Instance "orcl", status READY, has 1 handler(s) for this service...
The command completed successfully
--------------------------------------------------------------------------------
$dbstart $ORACLE_HOME

Processing Database instance "orcl": log file /opt/oracle/app/oracle/product/11.2.0/dbhome_1/startup.log

startup log is :-
----------------
SQL> Connected to an idle instance.
SQL> ORACLE instance started.

Total System Global Area 1603411968 bytes
Fixed Size 2253664 bytes
Variable Size 989858976 bytes
Database Buffers 603979776 bytes
Redo Buffers 7319552 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

/opt/oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart: Database instance "orcl" warm started.
----------------------------------------------------------------------------------

and output of emctl :-
[oracle@localhost dbhome_1]$ emctl start dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.4.0
Copyright (c) 1996, 2013 Oracle Corporation. All rights reserved.
https://localhost:1158/em/console/aboutApplication
Starting Oracle Enterprise Manager 11g Database Control ............................................................................................. failed.
------------------------------------------------------------------
Logs are generated in directory /opt/oracle/app/oracle/product/11.2.0/dbhome_1/localhost.localdomain_orcl/sysman/log

I also checked connection for $ sqlplus / as sysdba, it fine(startup and shutdown are ok)

SQL> [oracle@localhost ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.4.0 Production on Sun Apr 20 01:14:06 2014

Copyright (c) 1982, 2013, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup
ORACLE instance started.

Total System Global Area 1603411968 bytes
Fixed Size 2253664 bytes
Variable Size 989858976 bytes
Database Buffers 603979776 bytes
Redo Buffers 7319552 bytes
Database mounted.
Database opened.
SQL> connect scott/tiger@orcl;
Connected.
SQL> show user;
USER is "SCOTT"
SQL>

problem is that em is not running and emctl start dbconsole fails.
Also "http://localhost:1158/em" is replies "unable to connect"

please help to fix this problem.

thanks in advance.

[Updated on: Sat, 19 April 2014 14:59]

Report message to a moderator

Re: emctl start dbconsole ...... failed - in oracle 11g r2 [message #612485 is a reply to message #612483] Sat, 19 April 2014 15:32 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
Welcome to this forum.


Please read and follow the forum guidelines, to enable us to help you:

http://www.orafaq.com/forum/t/88153/0/ and please read http://www.orafaq.com/forum/t/174502/102589/

> emctl start dbconsole
above needs to occur after the database has been started
Re: emctl start dbconsole ...... failed - in oracle 11g r2 [message #612507 is a reply to message #612485] Sun, 20 April 2014 09:29 Go to previous messageGo to next message
rahulvishwakarma
Messages: 11
Registered: April 2014
Junior Member
thank you sir, i will follow these guidelines given by your link.

yes sir i agree with this
# emctl start dbconsole 
 


above needs to occure when databse has been created.

i have to mention here that i have installed oracle database successfully. And
after that when i restarted pc, i want to make oracle database start
automatically. For that I used follwing code in file "oracle" :-
(in path :- /etc/rc.d/init.d/oracle)

#!/bin/bash
# chkconfig : 2345 90 90

# oracle : Start/Stop Oracle 11gr2 
#
# 
# description : The Oracle database is an Objet-Relational databse management system
#
# processname : oracle

. /etc/rc.d/init.d/functions

LOCKFILE=/var/lock/subsys/oracle
ORACLE_HOME=/opt/oracle/app/oracle/product/11.2.0/dbhome_1
ORACLE_USER=oracle

case "$1" in
  'start')
     if [ -f $LOCKFILE ]; then
        echo $0 already running.
        exit 1
     fi
     echo -n $"Starting oracle database"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/lsnrctl start"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/emctl start dbconsole"
     touch $LOCKFILE
     ;;
  'stop')
     if [ ! -f $LOCKFILE ]; then
        echo $0 already stopping
        exit 1
     fi
     echo -n $"Stoping oracle database"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/lsnrctl stop"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/dbshut"
     su - $ORACLE_USER -c "$ORACLE_HOME/bin/emctl stop dbconsole"
     rm -f $LOCKFILE
     ;;
  'restart')
     $0 stop
     $0 start
     ;;
  'status')
     if [ -f $LOCKFILE ]; then
        echo $0 started.
     else
        echo $0 stopped.
     fi
     ;;
  *)
     echo "Usage : $0 [start|stop|status]"
     exit 1
  esac
  
  exit 0     


and for testing whether or not oracle is starting successfully, I was appliying those commands manually:-

# lsnrctl start
.
.
.
 command completed successfully.

# dbstart $ORACLE_HOME
.
.
.
Processing Database instance "orcl" ...

database successfully started

and at last command
# emctl start dbconsole 
.
.
.
Starting Oracle Enterprise Manager 11g Database Control ....................... failed

why it is doing so, that is out of mind.
Re: emctl start dbconsole ...... failed - in oracle 11g r2 [message #612509 is a reply to message #612507] Sun, 20 April 2014 09:53 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
what is content of EM logfile?

>emctl start dbconsole
does above work without error when run manually as OS user oracle?


Re: emctl start dbconsole ...... failed - in oracle 11g r2 [message #612510 is a reply to message #612509] Sun, 20 April 2014 10:55 Go to previous messageGo to next message
rahulvishwakarma
Messages: 11
Registered: April 2014
Junior Member
respected sir :- i am sending log content in path :-

in path :- /opt/oracle/app/oracle/product/11.2.0/dbhome_1/localhost.localdomain_orcl/sysman/log/emagent.log

2014-04-20 20:58:18,082 Thread-597284608 Starting Agent 10.2.0.4.5 from /opt/oracle/app/oracle/product/11.2.0/dbhome_1 (00701)
2014-04-20 20:58:18,186 Thread-597284608 Undefined column name __intervalONNECT_DATA in expression ((gc_cr_recv < _gc_cr_recv) ? 0 : (gc_cr_recv - _gc_cr_recv))/__intervalONNECT_DATA=(SID=%SID%)))
             (00104)
2014-04-20 20:58:18,186 Thread-597284608 Undefined column name __intervalCT_DATA in expression ((gc_cur_recv < _gc_cur_recv) ? 0 : (gc_cur_recv - _gc_cur_recv))/__intervalCT_DATA=(SID=%SID%)))
             (00104)
2014-04-20 20:58:18,186 Thread-597284608 Undefined column name __intervalrvalCT_DATA in expression ((gc_cr_serv < _gc_cr_serv) ? 0 : (gc_cr_serv - _gc_cr_serv))/__intervalrvalCT_DATA=(SID=%SID%)))
             (00104)
2014-04-20 20:58:18,186 Thread-597284608 Undefined column name __intervalCT_DATA in expression ((gc_cur_serv < _gc_cur_serv) ? 0 : (gc_cur_serv - _gc_cur_serv))/__intervalCT_DATA=(SID=%SID%)))
             (00104)
2014-04-20 20:58:18,186 Thread-597284608 Undefined column name __intervalATA in expression ((msg_sent_dir < _msg_sent_dir) ? 0 : (msg_sent_dir - _msg_sent_dir))/__intervalATA=(SID=%SID%)))
             (00104)
2014-04-20 20:58:18,187 Thread-597284608 Undefined column name __intervalinterval in expression ((msg_recv_act < _msg_recv_act) ? 0 : (msg_recv_act - _msg_recv_act))/__intervalinterval=%SID%)))
             (00104)
2014-04-20 20:58:18,267 Thread-597284608 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
2014-04-20 20:58:19,814 Thread-597284608 EMAgent started successfully (00702)
2014-04-20 20:58:28,375 Thread-497309728 <HTTP Listener> Agent Signaled to EXIT by emctl (00800)
2014-04-20 20:58:29,376 Thread-597284608 EMAgent normal shutdown (00703)

same problem when running emctl as user "oracle"

[Updated on: Sun, 20 April 2014 11:08]

Report message to a moderator

Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615491 is a reply to message #612510] Wed, 04 June 2014 12:22 Go to previous messageGo to next message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
I'm experiencing the same difficulty in getting OEM to run. I met this production database up and running but just can't get OEM to run:
Windows 2008R2 64bit:

C:\Users\ppcass>emctl status dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
https://USMTNPMDEBSDB03.emrsn.org:5500/em/console/aboutApplication
Oracle Enterprise Manager 10g is not running.
------------------------------------------------------------------
Logs are generated in directory D:\oracle\product\10.2.0\db_1/USMTNPMDEBSDB03.em
rsn.org_wm/sysman/log

C:\Users\ppcass>emctl start dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
https://USMTNPMDEBSDB03.emrsn.org:5500/em/console/aboutApplication
Starting Oracle Enterprise Manager 10g Database Control ...The OracleDBConsoleWM
service is starting............................................................
................................................................................
................................................................................
.........
The OracleDBConsoleWM service could not be started.

A service specific error occurred: 1.

More help is available by typing NET HELPMSG 3547.

C:\Users\ppcass>lsnrctl status

LSNRCTL for 64-bit Windows: Version 10.2.0.4.0 - Production on 04-JUN-2014 12:17
:51

Copyright (c) 1991, 2007, Oracle. All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=USMTNPMDEBSDB03.emrsn.or
g)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for 64-bit Windows: Version 10.2.0.4.0 - Produ
ction
Start Date 17-MAY-2014 23:45:28
Uptime 17 days 12 hr. 32 min. 23 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File D:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\listener.o
ra
Listener Log File D:\oracle\product\10.2.0\db_1\network\log\listener.log

Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=USMTNPMDEBSDB03.emrsn.org)(PORT=1521
)))
Services Summary...
Service "WM" has 1 instance(s).
Instance "WM", status UNKNOWN, has 1 handler(s) for this service...
Service "WM.USMTNPMDEBSDB03" has 1 instance(s).
Instance "wm", status READY, has 1 handler(s) for this service...
Service "WMXDB.USMTNPMDEBSDB03" has 1 instance(s).
Instance "wm", status READY, has 1 handler(s) for this service...
Service "WM_XPT.USMTNPMDEBSDB03" has 1 instance(s).
Instance "wm", status READY, has 1 handler(s) for this service...
Service "orcl" has 1 instance(s).
Instance "orcl", status READY, has 1 handler(s) for this service...
Service "orclXDB" has 1 instance(s).
Instance "orcl", status READY, has 1 handler(s) for this service...
Service "orcl_XPT" has 1 instance(s).
Instance "orcl", status READY, has 1 handler(s) for this service...
The command completed successfully
Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615494 is a reply to message #615491] Wed, 04 June 2014 12:35 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
Is Windows 2008R2 64bit: & Release 10.2.0.4.0 a supported combination?

what additional clues exist in D:\oracle\product\10.2.0\db_1/USMTNPMDEBSDB03.emrsn.org_wm/sysman/log

Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615499 is a reply to message #615491] Wed, 04 June 2014 13:38 Go to previous messageGo to next message
John Watson
Messages: 8922
Registered: January 2010
Location: Global Village
Senior Member
Could be a Windows security thing. Does it start if you use the services interface:

net start OracleDBConsoleWM

Also, you may need to use admin privileges.
Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615500 is a reply to message #615491] Wed, 04 June 2014 13:50 Go to previous messageGo to next message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
emagent.TXT


[EDITED by LF: applied [spoiler] tags]

[Updated on: Thu, 05 June 2014 00:09] by Moderator

Report message to a moderator

Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615501 is a reply to message #615500] Wed, 04 June 2014 13:52 Go to previous messageGo to next message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
Hey John: No it doesn't start if I use net start OracleDBConsoleWM, brings the same error.
Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615502 is a reply to message #615501] Wed, 04 June 2014 13:55 Go to previous messageGo to next message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
emdb (nohup file)
(pid=5544): starting emagent version 10.1.0.6.0
ring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 1608
----- Wed May 21 01:42:24 2014::Console Launched with PID 1608 at time Wed May 21 01:42:24 2014 -----
----- Wed May 21 01:43:55 2014::Property 'agentTZRegion' is missing from D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman/config/emd.properties. This is normal when the agent is started for the very first time.Updating it... -----
----- Wed May 21 01:43:55 2014::D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman/config/emd.properties copied to D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman/config/emd.properties.2014-05-21-01-43-55 while updating the property 'agentTZRegion' -----
----- Wed May 21 01:43:56 2014::An agentTZregion of 'America/Chicago' is installed in D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman/config/emd.properties. -----
----- Wed May 21 01:43:56 2014::Agent Launched with PID 5544 at time Wed May 21 01:43:56 2014 -----
(pid=7824): starting emagent version 10.1.0.6.0
ring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 6560
----- Tue Jun 3 11:53:43 2014::Console Launched with PID 6560 at time Tue Jun 3 11:53:43 2014 -----
----- Tue Jun 3 11:55:14 2014::Agent Launched with PID 7824 at time Tue Jun 3 11:55:14 2014 -----
(pid=6600): starting emagent version 10.1.0.6.0
ring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 2608
----- Tue Jun 3 12:11:05 2014::Console Launched with PID 2608 at time Tue Jun 3 12:11:05 2014 -----
----- Tue Jun 3 12:12:36 2014::Agent Launched with PID 6600 at time Tue Jun 3 12:12:36 2014 -----
(pid=7900): starting emagent version 10.1.0.6.0
ring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 5992
----- Wed Jun 4 11:58:45 2014::Console Launched with PID 5992 at time Wed Jun 4 11:58:45 2014 -----
----- Wed Jun 4 12:00:16 2014::Agent Launched with PID 7900 at time Wed Jun 4 12:00:16 2014 -----

emdb.nohup lr file:
ory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 6560
----- Tue Jun 3 11:53:43 2014::Console Launched with PID 6560 at time Tue Jun 3 11:53:43 2014 -----
----- Tue Jun 3 11:55:14 2014::Agent Launched with PID 7824 at time Tue Jun 3 11:55:14 2014 -----
(pid=6600): starting emagent version 10.1.0.6.0
ring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 2608
----- Tue Jun 3 12:11:05 2014::Console Launched with PID 2608 at time Tue Jun 3 12:11:05 2014 -----
----- Tue Jun 3 12:12:36 2014::Agent Launched with PID 6600 at time Tue Jun 3 12:12:36 2014 -----
----- Wed Jun 4 11:58:45 2014::DBConsole. Monitoring Agent+Console -----
launchprocess::Launching process : D:\oracle\product\10.2.0\db_1\jdk/bin/java -server -Xmx256M -XX:MaxPermSize=96m -XX:MinHeapFreeRatio=20 -XX:MaxHeapFreeRatio=40 -DORACLE_HOME=D:\oracle\product\10.2.0\db_1 -Doracle.home=D:\oracle\product\10.2.0\db_1/oc4j -Doracle.oc4j.localhome=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM/sysman -DEMSTATE=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Doracle.j2ee.dont.use.memory.archive=true -Djava.protocol.handler.pkgs=HTTPClient -Doracle.security.jazn.config=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/jazn.xml -Djava.security.policy=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/java2.policy -Djava.security.properties=D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/config/jazn.security.props -DEMDROOT=D:\oracle\product\10.2.0\db_1\USMTNPMDEBSDB03.emrsn.org_WM -Dsysman.md5password=true -Drepapi.oracle.home=D:\oracle\product\10.2.0\db_1 -Ddisable.checkForUpdate=true -Djava.awt.headless=true -jar D:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/oc4j.jar -config D:\oracle\product\10.2.0\db_1/oc4j/j2ee/OC4J_DBConsole_USMTNPMDEBSDB03.emrsn.org_WM/config/server.xml
launchprocess::Launched process successfuly. Process Id is : 5992
----- Wed Jun 4 11:58:45 2014::Console Launched with PID 5992 at time Wed Jun 4 11:58:45 2014 -----

Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615503 is a reply to message #615502] Wed, 04 June 2014 14:10 Go to previous messageGo to next message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
C:\Users\ppcass>net start OracleDBConsoleWM
The OracleDBConsoleWM service is starting.......................................
................................................................................
................................................................................
.................................
The OracleDBConsoleWM service could not be started.

A service specific error occurred: 1.

More help is available by typing NET HELPMSG 3547.
Re: emctl start dbconsole ...... failed - in oracle 10g r2 [message #615504 is a reply to message #615503] Wed, 04 June 2014 14:16 Go to previous message
Dyshikii
Messages: 6
Registered: June 2014
Junior Member
Tried starting from Windows services -- ORACLEDBCONSOLEWM- ERROR: WINDOWS COULD NOT START THE ORACLEDBCONSOLEWM SERVICE on local computer: error 1053
Previous Topic: Error : Opatch upload to Software Library
Next Topic: Oracle 11g RAC EM rebuilding failed.
Goto Forum:
  


Current Time: Fri Mar 29 02:48:26 CDT 2024