How to manually remove dbconsole repository
Login to the database server as
oracle
Login to database as sys
Verify the sysman is dropped
select username, account_status,
created from dba_users where username in ('SYSMAN');
|
How to DROP DBConsole configuration files using
EMCA (leave repository intact) ?
$ORACLE_HOME/bin/emca
-deconfig dbcontrol db
How to DROP DBConsole using EMCA or manually (with
and without repository)
$ORACLE_HOME/bin/emca
-deconfig dbcontrol db -repos drop
How to configure/CREATE DBConsole along with the repository?
$ORACLE_HOME/bin/emca -config
dbcontrol db -repos create
|
How to RE-CREATE DBConsole using EMCA? (files and repository using a single command)
$ORACLE_HOME/bin/emca
-config dbcontrol db -repos recreate
How to CREATE DBConsole configuration files?
$ORACLE_HOME/bin/emca
-config dbcontrol db
EMCA Ports
- JMS [5540-5559],
Default port 5540
- RMI [5520-5539],
Default port 5520
- Database Control
[1158, 5500-5519], Default port 1158
- EM Agent [3938] |
[1830-1849], Default port 3938
Error securing
Database Control, Database Control has been brought up in non-secure mode. To
secure the Database Control execute the following command(s):
1) Set the
environment variable ORACLE_SID to ShibaDB
2) /u01/app/oracle/product/10.2.0/db_1/bin/emctl
stop dbconsole
3)
/u01/app/oracle/product/10.2.0/db_1/bin/emctl config emkey -repos -sysman_pwd
< Password for SYSMAN user >
4)
/u01/app/oracle/product/10.2.0/db_1/bin/emctl secure dbconsole -sysman_pwd <
Password for SYSMAN user >
5)
/u01/app/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
Reference:
Master Note for
Enterprise Manager Configuration Assistant (EMCA) in Single Instance Database
Environment [ID 1099271.1]
Comments
Post a Comment