Adjustment oracle10G EM encountered several problems
When I first came on it was not long called for a solution to the problem of oracle10G EM dbconsole. Was not used to em, though it is a good thing, but occupied by a host of resources for no reason is not very fond of.
Be familiar with the look and the emctl command emca. Emctl start dbconsole after the start with and found the system clock error:
Exception in thread "main" java.lang.UnsatisfiedLinkError: haltImpl
at java.lang.Shutdown.halt (Shutdown.java: 184)
at java.lang.Shutdown.exit (Shutdown.java: 256)
at java.lang.Runtime.exit (Runtime.java: 123)
at java.lang.System.exit (System.java: 791)
at oracle.sysman.emSDK.conf.TargetInstaller.main (TargetInstaller.java: 4183)
The cycle of similar mistakes, unlike the em itself, a search which turns out to be a problem jdk autopilot oracle, why do not know. The system itself jdk (/ usr/java14) a direct link to the $ ORACLE_HOME / jdk, this issue is resolved, and then came new problems, the system error that EM can not find a directory, the directory format hostname_dbsid, and the implementation of emctl directory is always behind the run away with a big message:
ps: 0509-048 Flag-o was used with invalid list.
ps: Not a recognized flag: --
Usage: ps [-ANPaedfklmMZ] [-n namelist] [-F Format] [-o specifier [= header ],...]
[-p proclist] [-G |-g grouplist] [-t termlist] [-U |-u userlist] [-c classlist] [-T
pid] [-L pidlist]
Usage: ps [aceglnsuvwxU] [t tty] [processnumber]
This information is under aix a bug, oracle information is as follows:
Cause
In emctl.pl we have a command as below:
ps-p $ PID-o cmd - cols 1000 | grep DEMDROOT
In AIX platforms for some OS kernels, this command doesn't work. The correct command is:
ps-p $ PID-o args | grep DEMDROOT
Solution
If you get these errors while starting DBConsole, follow below action plan:
Follow below action plan.
a) Stop DBConsole - 'emctl stop dbconsole'
b) Take backup of 'emctl.pl' from $ ORACLE_HOME / bin
c) Edit emctl.pl and goto line number 1249, which is:
my $ ps = `ps-p $ PID-o cmd - cols 1000 | grep DEMDROOT`;
Modify above line as below:
my $ ps = `ps-p $ PID-o args | grep DEMDROOT`;
d) Save the file.
e) Start DBConsole - 'emctl start dbconsole' from $ ORACLE_HOME / bin
Was nothing we could do to find this deal, problem solving, followed by the directory does not exist is a problem. Check some information that this was the result after hostname change, probably to verify it, such is very high. Need to re-configure the em, so use the command:
emca-config dbcontrol db
Found the system to reform itself after the port has changed (it was 1158, it is now 5500), tried to change it back, was found to be occupied by 1158, does not matter anyway, and make on line 5500.
Em always found difficult to feel engaged, prompted a problem with too little information, do not like it.
Several documents attached to the back of the article, a closer look at the time.
Related Posts of Adjustment oracle10G EM encountered several problems
-
ORACLE10G full version centos5 installed (the installation has passed)
ORACLE10G full version centos5 installed (the installation has passed) 1. Centos 5.0 install rn GUI must be installed, it is best not to start selinux rn rn rn 2. . Ready to install the software: (this is very important, is the first installation fai ...
-
SGA extended the principle of 32bit oracle
SGA extended the principle of 32bit oracle From: http://www.itpub.net/247048.html Because the median 32bitrnoracle restrictions can only visit the oracle process 4g (2 of 32 power) following virtual memory address, the time at a lot of people this is ...
-
AX3.0 + Oracle 10G RAC installation
During these two days, you installed RAC, in a virtual machine inside, with a full day, there have been some questions on his way. Now have their own solution. In fact, it is loaded, it is easy, as long as planned, carefully point on OK, the trouble ...
-
Oracle in the relationship between User and Schema
If we want to know the database and the User What is the relationship between Schema, we must first know about User and Schema database What is the concept in the end. In SQL Server2000 in architecture because of the reason, User and Schema there is ...
-
High Availability Oracle Flashback
Brief introduction Flashback Database is a point in time (PIT) restore the database approach. This incomplete recovery strategy can be used to restore the logic because of human error cause damage to the database. At the introduction of 10g, it is de ...
-
An example of the use of TKPROF
First, view and edit parameters SQL> show parameter max_dump_file_size NAME TYPE VALUE ------------------------------------ ----------- --- --------------------------- max_dump_file_size string UNLIMITED SQL> show parameter user_dump_dest NAME TYPE
-
Diagnosis and principles of order
SQL> select disk.value "Disk", mem.value "Mem", 2 (disk.value / mem.value) * 100 "Ratio" 3 from v $ sysstat mem, v $ sysstat disk 4 where mem.name = 'sorts (memory)' 5 and disk.name = 'sorts (disk)'; D ...
-
ORACLE 10G dataguard configuration Step by Step
oracle dataguard













Leave a Reply