Grid Control Java Beans

Hi!
I am working on Forms 9i and need to implement a grid control (Like Flex Grid on Microsoft Platform) in one of my form. Regarding this can someone let me know -
1- Is there and control bean supplied by oracle itself which can be directly plugged? Where can I get some example code for the same?
2- If not by Oracle, is there any freeware available to achieve the same?
Need an urgent help.

Samir,
no, there is none provided by Oracle. There are many grids available and the simplest one owul be JTable in Swing, depending on what your requirements are.
Because a block does not allow PJCs you will have to substitute the block completely with a Hava Bean and thus also handle uodates - keep this in mind.
Frank

Similar Messages

  • How to create grid control in java

    hi,
    i want grid control in java like visual basic. can any one give me solution.

    I am new to this. I want to display the data from database like a grid control. Ok, what problems are you having. You been given a link to the tutorial which shows you how to build a table.
    There is also a tutorial on [url http://java.sun.com/docs/books/tutorial/]JDB Database Access here:
    http://java.sun.com/docs/books/tutorial/
    Start by creating your SQL statement and iterating throught the ResultSet. Once you know how to do that, instead of outputting the data you simply build a DefaultTableModel and create the JTable.

  • Replace VBX Control with Java Bean

    Hi All,
    While compiling 6i forms in 10g I got this error of VBX Control (Obsolete)
    The document says replace it with JavaBeans.
    I don’t know how to replace a VBS Control with Java Bean but this is what I did, I selected the item type as Bean Area.
    But the item do have a trigger
    begin
    control_lib.when_tab_changed(:control.tab_ctl)
    end
    The Package CONTROL_LIB is coded as below.
    Will this code work, technically I think yes, but its always better to ask experts before I move this to test...
    package body control_lib is
    g_tab_id number := 0
    procedure when_tab_changed
    (p_tab_id number) is
    l_err_txt varchar2(255);
    begin
    if :system.block_status != 'QUERY' then
    if not good_quiet_post(l_err_txt) then
    raise form_trigger_failure;
    end if
    end if
    if p_tab_id = 0 then
    rpt_ln_lib.new_tab;
    elsif p_tab_id = 1 then
    stat_lib.new_tab;
    elsif p_tab_id = 2 then
    per_acc_rl_lib.new_tab;
    end if
    g_tab_id := p_tab_id
    exception
    when form_trigger_failure then
    :control.tab_ctl := g_tab_id
    synchronize
    end when_tab_changed
    Thanks to all.
    Habeeb

    A Java bean is another technology than VBX control.
    If some document says: Replace it with java bean it certainly means to use a similar java bean with a similar functionality.
    I do not know a java bean, which runs VBX controls.
    So you surely have to look at what yout VBX does an than to look after a proper java bean (or to write an own one).

  • Help me to control the transactions from jsp to java bean

    Please anyone can guide me how to control the transactions from jsp to java bean. I am using the Websphere studio 5.1 to develop the database application. I would like to know two method to handle the database. First, I would like to know how I can control the transactions from jsp by using java bean which is auto generated for SQL statement to connect to the database. Following code are jsp and java bean.....
    // call java bean from jsp
    for (i=0;i<10;i++)
    addCourse.execute(yr,sem,stdid,course,sec);
    I write this loop in jsp to call java bean..
    here is java bean for AddCourse.java
    package com.abac.preregist.courseoperation;
    import java.sql.*;
    import com.ibm.db.beans.*;
    * This class sets the DBModify property values. It also provides
    * methods that execute your SQL statement and return
    * a DBModify reference.
    * Generated: Sep 7, 2005 3:10:24 PM
    public class AddCourse {
         private DBModify modify;
         * Constructor for a DBModify class.
         public AddCourse() {
              super();
              initializer();
         * Creates a DBModify instance and initializes its properties.
         protected void initializer() {
              modify = new DBModify();
              try {
                   modify.setDataSourceName("jdbc/ABAC/PreRegist/PRERMIS");
                   modify.setCommand(
                        "INSERT INTO informix.javacourseouttemp " +
                        "( yr, sem, studentid, courseid, section ) " +
                        "VALUES ( :yr, :sem, :studentid, :courseid, :section )");
                   DBParameterMetaData parmMetaData = modify.getParameterMetaData();
                   parmMetaData.setParameter(
                        1,
                        "yr",
                        java.sql.DatabaseMetaData.procedureColumnIn,
                        java.sql.Types.SMALLINT,
                        Short.class);
                   parmMetaData.setParameter(
                        2,
                        "sem",
                        java.sql.DatabaseMetaData.procedureColumnIn,
                        java.sql.Types.SMALLINT,
                        Short.class);
                   parmMetaData.setParameter(
                        3,
                        "studentid",
                        java.sql.DatabaseMetaData.procedureColumnIn,
                        java.sql.Types.CHAR,
                        String.class);
                   parmMetaData.setParameter(
                        4,
                        "courseid",
                        java.sql.DatabaseMetaData.procedureColumnIn,
                        java.sql.Types.CHAR,
                        String.class);
                   parmMetaData.setParameter(
                        5,
                        "section",
                        java.sql.DatabaseMetaData.procedureColumnIn,
                        java.sql.Types.SMALLINT,
                        Short.class);
              } catch (SQLException ex) {
                   ex.printStackTrace();
         * Executes the SQL statement.
         public void execute(
              String userid,
              String password,
              Short yr,
              Short sem,
              String studentid,
              String courseid,
              Short section)
              throws SQLException {
              try {
                   modify.setUsername(userid);
                   modify.setPassword(password);
                   modify.setParameter("yr", yr);
                   modify.setParameter("sem", sem);
                   modify.setParameter("studentid", studentid);
                   modify.setParameter("courseid", courseid);
                   modify.setParameter("section", section);
                   modify.execute();
              // Free resources of modify object.
              finally {
                   modify.close();
         public void execute(
                   Short yr,
                   Short sem,
                   String studentid,
                   String courseid,
                   Short section)
                   throws SQLException {
                   try {
                        //modify.setUsername(userid);
                        //modify.setPassword(password);
                        modify.setParameter("yr", yr);
                        modify.setParameter("sem", sem);
                        modify.setParameter("studentid", studentid);
                        modify.setParameter("courseid", courseid);
                        modify.setParameter("section", section);
                        modify.execute();
                   // Free resources of modify object.
                   finally {
                        modify.close();
         * Returns a DBModify reference.
         public DBModify getDBModify() {
              return modify;
    I would like to know that how can I do for autocommit from jsp. For example, the looping is 10 times which mean I will add 10 records to the db. If the last record is failed to add to db, "how can I rollback the perivious records?" or guide me to set the commit function to handle that case. Thanks a lot for take your time to read my question.

    Hello.
    The best method is using a session bean and container managed transactions. Other method is using sessions bean and the user transaction object (JTA-JTS).
    so, JDBC has transaction management too.
    good luck.

  • Can Oracle Application Diagnostics for Java used with Grid Control 10.2.0.3

    I have installed Grid Control 10.2.0.3 in Solaris 10.
    I was asked to install AD4J . Is it necessary to upgrade Grid Control to 10.2.0.4 for installing AD4J or can I use the present 10.2.0.3 version withour upgrading it ?

    Hello.
    We already have Grid Control 10.2.0.4 and just installed AD4J 10.2.0.4. This version of AD4J is not integrated with Grid Control, and can be setup on any server by unzipping the downloaded file (no installer). I did find the installation/configuration documentation lacking, but worked through it with a little help from Oracle Support.
    The AD4J console has the look and feel of Grid Control, but is totally separate app with its own Apache server, etc.
    Daren

  • Installing Oracle 10g Grid Control on Winxp

    Hi All,
    I am facing a problem while installing Grid controls on Winxp. The installation completes everytime but it just hangs when configuring componenet Java Security.
    Do you have any idea how can I get rid of this. I tried running using configtools from command prompt but it seems the same problem, it hangs...I am trying first time on Windows system but its never install....
    Thanks
    Namit Sehgal

    Don't you get some details on the screen as to what exactly is being run? If not check the logs and post the error here.

  • Atempt to start OMS for Grid Control 11g fails with - Unexpected error occu

    Hello,
    I am running Grid Control 11g.
    Repository DB is 11.2.0.1
    Both the Grid Control and DB server are running in same machine - redhat 5.
    When trying to start the oms, this fails with the below error:
    Oracle Enterprise Manager 11g Release 1 Grid Control
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Starting WebTier...
    WebTier Successfully Started
    Starting Oracle Management Server...
    Oracle Management Server is not functioning because of the following reason:
    Unexpected error occurred. Check error and log files.
    The emctl.log shows the following error which I am unable to debug:
    2011-09-13 11:20:05,619 [main] DEBUG oms.StatusOMSCmd processStatusOMS.138 - HTTP port in emgc property file: 7202
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.139 - HTTPS port in emgc property file: 7301
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.155 - Using http port.
    2011-09-13 11:20:05,620 [main] DEBUG oms.StatusOMSCmd processStatusOMS.195 - Attempting to connect to http://<host>.<domain>:7202/em/console/logon/logon
    2011-09-13 11:23:05,596 [main] ERROR oms.StatusOMSCmd processStatusOMS.239 - Read timed out
    java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at HTTPClient.BufferedInputStream.fillBuff(BufferedInputStream.java:206)
    at HTTPClient.BufferedInputStream.read(BufferedInputStream.java:126)
    at HTTPClient.StreamDemultiplexor.read(StreamDemultiplexor.java:348)
    at HTTPClient.RespInputStream.read(RespInputStream.java:147)
    at HTTPClient.RespInputStream.read(RespInputStream.java:108)
    at HTTPClient.Response.readResponseHeaders(Response.java:1107)
    at HTTPClient.Response.getHeaders(Response.java:832)
    at HTTPClient.Response.getStatusCode(Response.java:331)
    at HTTPClient.RetryModule.responsePhase1Handler(RetryModule.java:92)
    at HTTPClient.HTTPResponse.handleResponseImpl(HTTPResponse.java:872)
    at HTTPClient.HTTPResponse.access$000(HTTPResponse.java:62)
    at HTTPClient.HTTPResponse$2.run(HTTPResponse.java:839)
    at HTTPClient.HTTPResponse$2.run(HTTPResponse.java:837)
    at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:666)
    at HTTPClient.HTTPResponse.handleResponse(HTTPResponse.java:837)
    at HTTPClient.HTTPResponse.getStatusCode(HTTPResponse.java:242)
    at oracle.sysman.emctl.oms.StatusOMSCmd.processStatusOMS(StatusOMSCmd.java:199)
    at oracle.sysman.emctl.wls.OMSController.statusOMS(OMSController.java:867)
    at oracle.sysman.emctl.wls.OMSController.startOMS(OMSController.java:606)
    at oracle.sysman.emctl.wls.OMSController.main(OMSController.java:213)
    2011-09-13 11:23:05,597 [main] INFO wls.OMSController statusOMS.950 - statusOMS finished with result: 9
    In emgc.properties, I have MSPORT=7202.
    I have used the notes in Metalink 1287904.1, but without resolution.
    I am able to connect with sqlplus, with user sysman, without issues. There are no invalid objects under sysman.
    emoms.trc shows the following:
    2011-09-11 15:51:53,160 [JobWorker 22356:Thread-108] WARN jdbc.ConnectionCache _getConnection.353 - Invalid or Stale Connection found in the Connection Cache
    java.sql.SQLException: Invalid or Stale Connection found in the Connection Cache
    Thank you for support.
    Regards,
    Horia
    Edited by: horia.berca on Sep 13, 2011 5:29 AM
    Edited by: horia.berca on Sep 13, 2011 5:32 AM
    Edited by: horia.berca on Sep 13, 2011 5:35 AM
    Edited by: horia.berca on Sep 13, 2011 5:45 AM

    Hello again;
    Check the solution in this: ( and note the multiple versions of oracle it covers )
    UNABLE TO FIND GRID INFRASTRUCTURE LISTENER (Doc ID 1483234.1)
    Best Regards
    mseberg

  • How to make view Java Bean as .ocx file.

    Hi All,
    I want to use a visual Java Bean in Visual basic. So that I can modify all the bean properties as modify properties in a ocx file.
    I used ActiveX Com bridge downloaded from Sun's site. But the packager
    makes a .tlb file .
    This file can only be added as a reference in visual basic but not as a ActiveX control. Is there any way out to do that???
    Thanks & regards.
    Nimesh

    The packager creates a registry file and a tlb file.
    After registering this .reg file, java bean can be used as an ActiveX control.
    From within Visal Basic, select the "Tools" menu and "Custom Controls" item and add the Bean control that was generated.
    Avinash.

  • How to read the current value of hyperlink java bean in multiple record,

    I have used a java bean for a multi-record block item. On When-new form-instance I m using fbean package as follows
    FBean.Register_Bean(hHyperlink,1,'oracle.forms.demos.beans.Hyperlink');
    FBean.Invoke(hHyperlink,1,'setURL','Abc_Entry');
    FBean.Invoke(hHyperlink,1,'setLabel','Abc Document');
    FBean.Enable_Event(hHyperlink,1,'actionListener',true);
    You can see that I am using the number 1 which is hardcoded,for which I will replace with a incremental loop and remove it. Now when I m using the When-Custom-Item-Event, I want to read the URL for the current instance.
    I m using
    vcEventData := Fbean.Invoke_Char('CONTROL.HYPERLINK',2,'getURL');
    to get the second record value , where in I want to avoid the hardcoded 2 or 1
    Thank you

    I recommend you these forums for your question:
    Forums Home » Oracle Technology Network (OTN) » Products » Database » JVM
    Java in the Oracle Database
    Forums Home » Oracle Technology Network (OTN) » Technologies » Java » Java Server Pages (JSP)
    Java Server Pages (JSP)
    Forums Home » Oracle Technology Network (OTN) » Technologies » Java
    http://forums.oracle.com/forums/index.jsp?cat=24
    Joel Pérez

  • Hiding a column Attribute in the Grid Control in a DAC form.

    Hi,
    My RowsetInfo has a Image AttributeInfo and other kinds of AttributeInfo.I wanted to display the image in a seperate area in the form.The remaining Attributes would come in form as a detail grid.
    However, since I bind the Grid control to my rowsetInfo, and also since my rowsetinfo has an image AttributeInfo, I see an Image column there(which ofcourse contains references to these Image objects!!).
    I would want to hide this column in the grid.How do I go about it?Do I need to create a seperate rowsetinfo for the Image controlor there is a workaround for this?
    Any ideas??
    --Sandeep                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Going through the previous discussions in this forum, I had also tried the following :
    JTable table = detailGrid.getTable();
    TableColumnModel tableColumnModel =
    table.getColumnModel();
    table.removeColumn(tableColumnModel.
    getColumn(1));
    This doesnot seem to work.I get the following exception:
    java.lang.ArrayIndexOutOfBoundsException: 1 >= 0
    java.lang.Object java.util.Vector.elementAt(int)
    javax.swing.table.TableColumn
    javax.swing.table.DefaultTableColumnModel.getColumn(int)
    void DAC2Package.DAC2Frame.jbInit()
    void DAC2Package.DAC2Frame.<init>()
    void DAC2Package.DAC2Application.<init>()
    void DAC2Package.DAC2Application.main(java.lang.String[])
    Since I have quite a few number of columns in the GridControl, I shouldnot be getting this
    exception in the first place.
    Also, I donot understand why
    tableColumnModel.getColumnCount() prints zero in the console.
    Thanks in advance,
    Sandeep
    null

  • Error while installing Grid Control 12c (ERROR STREAM: *sys-package-mgr*: skipping bad jar)

    Hi all,
       OS: OEL 6.3 64 bits
       DB: 11.2.0.3
       Grid: 12.1
       While installing Grid Control 12c, the following error appears to me:
    INFO: SaveInvWCCE JRE files in Scratch
    INFO: oracle.installer.mandatorySetup property is set to false, so skipping the execution of additional tools
    INFO: oracle.installer.installUpdates property is set to false, so skipping the checking of updates
    INFO: Config Initialize JRE files in Scratch
    INFO: no env vars set, no envVars.properties file is generated
    INFO: none of the components are configurable
    INFO: This is a shared oracle home or remote nodes are null. No copy required.
    INFO: Adding iterator oracle.sysman.oii.oiif.oiifw.OiifwRootShWCDE
    INFO: Updating the global context
    INFO: Path To 'globalcontext.xml' = /gridControl/WLS/jdk16/install/chainedInstall/globalcontext
    INFO: Since operation was successful, move the current OiicAPISessionDetails to installed list
    INFO: Install Finished at: 2013-07-04_11-12-49-PM
    INFO: The ARU ID found in shiphomeproperties.xml file is 226
    INFO: ARUId present in shiphomeproperties.xml matches with the 64 bit OMS Platforms ARU ID 226, so -d64 is passed for wls install.
    INFO: Executing the command /gridControl/WLS/jdk16/jdk/bin/java   -d64  -Djava.io.tmpdir=/gridControl/WLS/.wlsinstall_temp -Xms128m -Xmx1024m  -jar /u01/binaries//wls/wls1035_generic.jar -mode=silent -silent_xml=/gridControl/WLS/.wlsinstall_temp/wls.xml -log=/u01/oraInventory/logs/installActions2013-07-04_11-07-45PM.log.wls  -log_priority=debug
    INFO: Extracting 0%....................................................................................................100%
    INFO: ERROR STREAM: *sys-package-mgr*: skipping bad jar, '/u01/binaries/wls/wls1035_generic.jar'
    INFO: #
    INFO: # A fatal error has been detected by the Java Runtime Environment:
    INFO: #
    INFO: #  SIGSEGV (0xb) at pc=0x0000003a23689cdc, pid=24834, tid=139710737405696
    INFO: #
    INFO: # JRE version: 6.0_24-b50
    INFO: # Java VM: Java HotSpot(TM) 64-Bit Server VM (19.1-b02 mixed mode linux-amd64 compressed oops)
    INFO: # Problematic frame:
    INFO: # C  [libc.so.6+0x89cdc]
    INFO: #
    INFO: # An error report file with more information is saved as:
    INFO: # /tmp/hs_err_pid24834.log
    INFO: #
    INFO: # If you would like to submit a bug report, please visit:
    INFO: #   http://java.sun.com/webapps/bugreport/crash.jsp
    INFO: #
    INFO: Return value is 134
    INFO: POPUP ERROR:Installation of Oracle WebLogic Server has failed, check log files for more details.
       The line "skipping bad jar, '/u01/binaries/wls/wls1035_generic.jar'" is the one that's worring me. Can it be corrupt? Or it is something else?
       Thanks in advance.

    Its too early to conclude the issue is a bug with out looking into the logs. For the same reason i requested you to open an SR so that we can have a look at the logs and identify the cause.  If you are Oracle employee then you can share the VM details else we need logs to debug this further. If any one from your company can open an sr and share logs then that will be helpful. Can you also check if the shiphome that you downloaded is all correct and checksum/byte matches to what is mentioned on OTN.

  • Error while installing EnterpriseManager grid control on existing database

    Hi All,
    While installing Oracle EnterpriseManager grid control on existing database
    it asked for deconfig an existing database control and while doing this we got an error as follows
    Getting temporary tablespace from database...
    Could not connect to SYS/(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ceserp.computechcorp.net)(PORT=1543)))(CONNECT_DATA=(SERVICE_NAME=GRID))): ORA-12514: TNS:listener does not currently know of service requested in connect descriptor (DBD ERROR: OCIServerAttach)
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /u01/oracle10g_grid/DB10.2.0/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ceserp.computechcorp.net)(PORT=1543)))(CONNECT_DATA=(SERVICE_NAME=GRID))) -repos_user SYSMAN -action drop -verbose -output_file /u01/oracle10g_grid/DB10.2.0/cfgtoollogs/emca/GRID/emca_repos_drop_2010-03-15_11-14-10-PM.log
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error dropping the repository
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /u01/oracle10g_grid/DB10.2.0/cfgtoollogs/emca/GRID/emca_repos_drop_<date>.log for more details.
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error dropping the repository
    Refer to the log file at /u01/oracle10g_grid/DB10.2.0/cfgtoollogs/emca/GRID/emca_2010-03-15_11-13-15-PM.log for more details.
    Mar 15, 2010 11:14:10 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error dropping the repository
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:183)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:134)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:171)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:486)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1142)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:470)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:419)
    please help on this issue
    Thanks

    Based on the error below:
    Could not connect to SYS/(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ceserp.computechcorp.net)(PORT=1543)))(CONNECT_DATA=(SERVICE_NAME=GRID))): ORA-12514: TNS:listener does not currently know of service requested in connect descriptor (DBD ERROR: OCIServerAttach)
    It looks like the installer can't connect to your existing database.
    Can you ensure that your listener is servicing the already existing database.
    lsnrctl status -> will list services
    Make sure the database you want to use as your repository is there.

  • Install Enterprise Manager Grid Control 11R1 Failed at OMS Configuration

    Hello:
    I have installed Oracle 11g (11.2.0.1) and WebLogic Server (WLS) 10.3.6.0 and currently I am in the process of installing Enterprise Manager Grid Control 11R1 on a Linux RedHat 5.8 and it fails at OMS Configuration.
    I have read the following thread and they suggested to use WLS 10.3.2:
    Trouble installing EM GC -- installer patch 9329357 fails
    I was looking for WLS 10.3.2 in Oracle's website and I could not find it.
    Any help would be greatly appreciated.
    Here is the log regarding the error:
    The patch has more than one Archive Action but there is no Make Action.
    ApplySession applying interim patch '9367763' to OH '/dbs0/product/fmw/oms11g'
    Running prerequisite checks...
    You selected -local option, hence OPatch will patch the local system only.
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    (Oracle Home = '/dbs0/product/fmw/oms11g')
    Is the local system ready for patching? y
    Y (auto-answered by -silent)
    User Responded with: Y
    Backing up files and inventory (not for auto-rollback) for the Oracle Home
    Backing up files affected by the patch '9367763' for restore. This might take a while...
    Backing up files affected by the patch '9367763' for rollback. This might take a while...
    Patching component oracle.ldap.rsf, 11.1.1.2.0...
    Updating archive file "/dbs0/product/fmw/oms11g/lib/libldapclnt11.a" with "lib/libldapclnt11.a/gslu.o"
    ApplySession adding interim patch '9367763' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9367763 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9367763 are present in Oracle Home.
    Execution of 'sh /dbs0/product/fmw/oms11g/install/oneoffs/111010/9367763/custom/scripts/post -apply 9367763 ':
    Return Code = 0
    The local system has been patched and can be restarted.
    OPatch succeeded.
    This config tool has failed. Please re-run this config tool manually from another terminal as
    <ORACLE_HOME>/perl/bin/perl <ORACLE_HOME>/install/oneoffs/apply_NewOneoffs.pl <ORACLE_HOME> <oneoff_numbers>
    Eg: /scratch/EM/agent10g/perl/bin/perl /scratch/EM/agent10g/install/oneoffs/apply_NewOneoffs.pl /scratch/EM/agent10g 5632264,5961654
    Finished one-offs apply...
    Deleting the files...
    Finished deleting the above files...
    Configuration assistant "OMS Oneoff Patch Application" Succeeded
    Running Configuration assistant "Repository Configuration"
    Calling the EMSCHEMA MANAGER: CREATE
    Please check the Repository Configuration Assistant logs at: /dbs0/product/fmw/oms11g/sysman/log/schemamanager
    The create is completed now running the MOS
    Configuration assistant "Repository Configuration" Succeeded
    Running Configuration assistant "MDS Schema Configuration"
    Configuration assistant "MDS Schema Configuration" Succeeded
    Running Configuration assistant "OCM EM Repository Instrumentation"
    Configuration assistant "OCM EM Repository Instrumentation" Succeeded
    Running Configuration assistant "OMS Configuration"
    Executing the OMSCA command...
    Check the OMS Configuration Assistant logs at: /dbs0/product/fmw/oms11g/cfgtoollogs/omsca
    INFO: Required tool's Execution failed
    Configuration assistant "OMS Configuration" Failed
    INFO: ***Configuration Assistants Action END ***
    *** The installation was Successful, but some configuration assistants were failed or cancelled or skipped. ***

    Hello:
    For some reason after selecting the Retry button it successfully passed the Add-on OMS Side Configuration. Now I am failing at the "Agent Configuration Assistant". Here's the agent log:
    log4j:ERROR No appenders could be found for category (oracle.sysman.emas.sdk.discovery.discover.WeblogicTargetDiscovery).
    log4j:ERROR Please initialize the log4j system properly.
    Total Discovery time is :1675milliseconds.
    INFO: oracle.sysman.top.agent:AddingToTargetsXml: WLS targets
    INFO: oracle.sysman.top.agent:Adding /oracle/product/agent11g/sysman/install//oraclewls.out file to /oracle/product/agent11g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file= /oracle/product/agent11g/sysman/install//oraclewls.out to /oracle/product/agent11g successfully.
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:Starting Agent with startAgent=true
    INFO: oracle.sysman.top.agent:Starting the agent
    INFO: oracle.sysman.top.agent:Starting the agent...
    INFO: oracle.sysman.top.agent:Executing Command: /oracle/product/agent11g/bin/emctl start agent
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2010 Oracle Corporation. Allrights reserved.
    INFO: oracle.sysman.top.agent:Agent is already running
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    INFO: oracle.sysman.top.agent:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.agent:11.1.0.1.0:common:family=CFM:oh=/oracle/product/agent11g:label=10} failed with an unhandled exception:
    java.lang.Exception:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    at oracle.sysman.emcp.agent.AgentPlugIn.startProcessing(AgentPlugIn.java:269)
    at oracle.sysman.emcp.agent.AgentPlugIn.invoke(AgentPlugIn.java:243)
    at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:540)
    at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:120)
    at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
    at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    Any help would be greatly appreciated.
    Thanks,
    Orivares

  • Install 10.2 Grid Control on Windows 2003 Server - Always erorr on Agent

    I have a Windows 2003 Server in a Domain and have tried to install several times OEM Grid Control 10g (B30800-01), but every time the last step (Agent Configuration Assistant) prints "Failed" on the OUI-Screen. I checked the log on the directory "cfgtoollogs\cfgfw", but for a beginner it is a little bit difficult to find the key for the error. Somoebody has a minute left to look at it, please? (It's only the last part of the file CfmLogger). Everything else worked fine for the Installation.
    Thank's a lot.
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has successfully been performed
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=configuration Status=is running with ActionStep=2 stepIndex=2 microStep=0
    INFO: oracle.sysman.top.agent:About to execute plug-in Agent Configuration Assistant
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant is running
    INFO: oracle.sysman.top.agent:Internal PlugIn Class: oracle.sysman.emcp.agent.AgentPlugIn
    INFO: oracle.sysman.top.agent:Classpath = D:\OracleHomes\agent10g\jlib\srvm.jar;D:\OracleHomes\agent10g\jlib\srvmhas.jar;D:\OracleHomes\agent10g\oui\jlib\srvm.jar;D:\OracleHomes\agent10g\sysman\jlib\agentPlug.jar;D:\OracleHomes\agent10g\jlib\emConfigInstall.jar;D:\OracleHomes\agent10g\sysman\jlib\emagentSDK.jar
    INFO: Error reading file D:\OracleHomes\db10g\sysman\config\emd.properties
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:AgentPortHandler for D:\OracleHomes\agent10g and hosts=ora1.ramseier.local returned Port to Use=3872
    INFO: oracle.sysman.top.agent:Configuring the agent
    INFO: oracle.sysman.top.agent:Performing free port detection on host=ora1.ramseier.local
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform: DiscoverTargets for racMode=false and request doDiscovery=true, chainedInstall=true,omsOnly=false, iasName=EnterpriseManager0.ora1.ramseier.local, CRShome=, dbName=emrep.ramseier.local, seedInstall=true, connectDescriptor=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ORA1)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=emrep.ramseier.local)))
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:Securing Agent with agentSecure=true for non RAC
    INFO: oracle.sysman.top.agent:Securing the agent
    INFO: oracle.sysman.top.agent:Securing the agent...
    INFO: oracle.sysman.top.agent:Executing Command: cmd /c D:\OracleHomes\agent10g\bin\emctl.bat secure agent
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:Configuring Agent...
    INFO: oracle.sysman.top.agent:Performing targets discovery and agent configuration
    INFO: oracle.sysman.top.agent:DiscoverTargets:constructor with params: eRoot=D:\OracleHomes\agent10g,hname=ora1.ramseier.local...
    INFO: oracle.sysman.top.agent:configureAgent:discovery on non RAC:
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\host.pl D:\OracleHomes\agent10g ora1.ramseier.local
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    STDOUT=
    <Targets>
    <Target TYPE="host" NAME="ora1.ramseier.local" >
    </Target>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outhost file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outhost to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\oracledb.pl D:\OracleHomes\agent10g ora1.ramseier.local
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    STDOUT=
    <Targets>
    <Target TYPE="oracle_database" NAME="emrep.ramseier.local" >
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\db10g" />
    <Property NAME="UserName" VALUE="dbsnmp" ENCRYPTED="FALSE"/>
    <Property NAME="MachineName" VALUE="ora1.ramseier.local" />
    <Property NAME="Port" VALUE="1521" />
    <Property NAME="SID" VALUE="EMREP"/>
    <Property NAME="ServiceName" VALUE="emrep.ramseier.local"/>
    </Target>
    <Target TYPE="oracle_listener" NAME="LISTENER_ora1.ramseier.local" >
    <Property NAME="ListenerOraDir" VALUE="D:\OracleHomes\db10g\network\admin" />
    <Property NAME="LsnrName" VALUE="LISTENER" />
    <Property NAME="Machine" VALUE="ora1.ramseier.local" />
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\db10g" />
    <Property NAME="Port" VALUE="1521" />
    </Target>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outdb file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outdb to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:discoverTargets:executing addPwdinDBTarget for seedInstall=true
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\ocs_mailstore_discovery.pl D:\OracleHomes\agent10g ora1.ramseier.local D:\OracleHomes\oms10g
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    log4j:ERROR No appenders could be found for category (emSDK.emd.conf).
    log4j:ERROR Please initialize the log4j system properly.
    STDOUT=
    <Targets>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outocs file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outocs to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\oracle_ias.pl D:\OracleHomes\agent10g ora1.ramseier.local
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    log4j:ERROR No appenders could be found for category (emSDK.emd.conf).
    log4j:ERROR Please initialize the log4j system properly.
    STDOUT=
    <Targets>
    <Target TYPE="oc4j" NAME="EnterpriseManager0.ora1.ramseier.local_home" DISPLAY_NAME="home" VERSION="1.3">
    <Property NAME="HTTPMachine" VALUE="ora1.ramseier.local"/>
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <Property NAME="version" VALUE="9.0.4"/>
    <AssocTargetInstance ASSOCIATION_NAME="ias" ASSOC_TARGET_NAME="EnterpriseManager0.ora1.ramseier.local" ASSOC_TARGET_TYPE="oracle_ias"/>
    <CompositeMembership>
    <MemberOf TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local"/>
    </CompositeMembership>
    </Target>
    <Target TYPE="oracle_apache" NAME="EnterpriseManager0.ora1.ramseier.local_HTTP Server" DISPLAY_NAME="HTTP_Server" VERSION="2.0">
    <Property NAME="version" VALUE="10.1.2"/>
    <Property NAME="HTTPPort" VALUE="80"/>
    <Property NAME="HTTPMachine" VALUE="ora1.ramseier.local"/>
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <AssocTargetInstance ASSOCIATION_NAME="ias" ASSOC_TARGET_NAME="EnterpriseManager0.ora1.ramseier.local" ASSOC_TARGET_TYPE="oracle_ias"/>
    <CompositeMembership>
    <MemberOf TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local"/>
    </CompositeMembership>
    </Target>
    <Target TYPE="oracle_webcache" NAME="EnterpriseManager0.ora1.ramseier.local_Web Cache" DISPLAY_NAME="Web Cache">
    <Property NAME="HTTPProtocol" VALUE="http"/>
    <Property NAME="HTTPMachine" VALUE="localhost"/>
    <Property NAME="HTTPMachineForAdmin" VALUE="ora1.ramseier.local"/>
    <Property NAME="HTTPPath" VALUE="/"/>
    <Property NAME="HTTPQuery" VALUE=""/>
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <Property NAME="MonitorPort" VALUE="9402"/>
    <Property NAME="AdminPort" VALUE="9400"/>
    <Property NAME="logFileName" VALUE="access_log"/>
    <Property NAME="logFileDir" VALUE="D:\OracleHomes\oms10g\webcache\logs"/>
    <Property NAME="version" VALUE="10.1.2.1.0"/>
    <Property NAME="IASInternalName" VALUE="WebCache"/>
    <Property NAME="authrealm" VALUE="Oracle Web Cache Administrator"/>
    <Property NAME="authuser" VALUE="36cceb58627a6c450d87b23feaca4062" ENCRYPTED="TRUE"/>
    <Property NAME="authpwd" VALUE="960c169811d6091c" ENCRYPTED="TRUE"/>
    <AssocTargetInstance ASSOCIATION_NAME="ias" ASSOC_TARGET_NAME="EnterpriseManager0.ora1.ramseier.local" ASSOC_TARGET_TYPE="oracle_ias"/>
    <CompositeMembership>
    <MemberOf TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local" ASSOCIATION="null"/>
    </CompositeMembership>
    </Target>
    <Target TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local" VERSION="1.0">
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <Property NAME="host" VALUE="ora1.ramseier.local"/>
    <Property NAME="StandaloneConsoleURL" VALUE="http://ora1.ramseier.local:18100/emd/console"/>
    <Property NAME="StatusURL" VALUE="http://ora1.ramseier.local:7778"/>
    </Target>
    <Target TYPE="oc4j" NAME="EnterpriseManager0.ora1.ramseier.local_OC4J_EM" DISPLAY_NAME="OC4J_EM">
    <Property NAME="HTTPMachine" VALUE="ora1.ramseier.local"/>
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <Property NAME="version" VALUE="10.1.2"/>
    <AssocTargetInstance ASSOCIATION_NAME="ias" ASSOC_TARGET_NAME="EnterpriseManager0.ora1.ramseier.local" ASSOC_TARGET_TYPE="oracle_ias"/>
    <CompositeMembership>
    <MemberOf TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local"/>
    </CompositeMembership>
    </Target>
    <Target TYPE="oc4j" NAME="EnterpriseManager0.ora1.ramseier.local_OC4J_EMPROV" DISPLAY_NAME="OC4J_EMPROV">
    <Property NAME="HTTPMachine" VALUE="ora1.ramseier.local"/>
    <Property NAME="OracleHome" VALUE="D:\OracleHomes\oms10g"/>
    <Property NAME="version" VALUE="10.1.2"/>
    <AssocTargetInstance ASSOCIATION_NAME="ias" ASSOC_TARGET_NAME="EnterpriseManager0.ora1.ramseier.local" ASSOC_TARGET_TYPE="oracle_ias"/>
    <CompositeMembership>
    <MemberOf TYPE="oracle_ias" NAME="EnterpriseManager0.ora1.ramseier.local"/>
    </CompositeMembership>
    </Target>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outias file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outias to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:DiscoverTargets:addCentralAgents:Adding the Central Agent home to iAS Homes
    INFO: oracle.sysman.top.agent:DiscoverTargets:addCentralAgents:Adding the Central Agent home to D:\OracleHomes\oms10g, VERSION=null
    INFO: oracle.sysman.top.agent:DiscoverTargets:addCentralAgent:performing command=D:\OracleHomes\agent10g\jdk\bin\java -cp D:\OracleHomes\oms10g\jlib\emConfigInstall.jar oracle.sysman.emSDK.conf.TargetInstaller addcentralagent D:\OracleHomes\agent10g D:\OracleHomes\oms10g, for emdRoot=D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\jdk\bin\java -cp D:\OracleHomes\oms10g\jlib\emConfigInstall.jar oracle.sysman.emSDK.conf.TargetInstaller addcentralagent D:\OracleHomes\agent10g D:\OracleHomes\oms10g
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    STDOUT=
    0 [main] DEBUG emSDK.config - Adding target ora1.ramseier.local:18120 of type oracle_emd to D:\OracleHomes\agent10g
    9243 [main] DEBUG emSDK.config - Adding target ora1.ramseier.local of type host to D:\OracleHomes\agent10g
    16504 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local_home of type oc4j to D:\OracleHomes\agent10g
    73786 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local_HTTP Server of type oracle_apache to D:\OracleHomes\agent10g
    183984 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local_Web Cache of type oracle_webcache to D:\OracleHomes\agent10g
    296266 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local of type oracle_ias to D:\OracleHomes\agent10g
    419333 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local_OC4J_EM of type oc4j to D:\OracleHomes\agent10g
    535770 [main] DEBUG emSDK.config - Adding target EnterpriseManager0.ora1.ramseier.local_OC4J_EMPROV of type oc4j to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\oracle_apache.pl D:\OracleHomes\agent10g ora1.ramseier.local
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    log4j:ERROR No appenders could be found for category (emSDK.config).
    log4j:ERROR Please initialize the log4j system properly.
    java.lang.UnsatisfiedLinkError: no oraInstaller in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1517)
         at java.lang.Runtime.loadLibrary0(Runtime.java:788)
         at java.lang.System.loadLibrary(System.java:834)
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.loadNativeLib(OiipwWin32NativeCalls.java:940)
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.<clinit>(OiipwWin32NativeCalls.java:42)
         at oracle.sysman.oii.oiip.oiipg.OiipgEnvironment.getEnv(OiipgEnvironment.java:208)
         at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.initUnixPtrFileLoc(OiipgPropertyLoader.java:212)
         at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.<clinit>(OiipgPropertyLoader.java:125)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.updateProperties(OiicStandardInventorySession.java:448)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:255)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:230)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:179)
         at oracle.sysman.emSDK.conf.InventoryLoader.initInventorySession(InventoryLoader.java:296)
         at oracle.sysman.emSDK.conf.InventoryLoader.getHomeLocations(InventoryLoader.java:328)
         at oracle.sysman.emSDK.conf.InventoryLoader.getAllHomeLocations(InventoryLoader.java:189)
         at oracle.sysman.emSDK.conf.InventoryLoader.main(InventoryLoader.java:454)
    Exception in thread "main"
    STDOUT=
    <Targets>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outapache file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outapache to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\sysman\admin\discover\csa_collector.pl ora1.ramseier.local D:\OracleHomes\oms10g
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:STDERR=
    STDOUT=
    <Targets>
    <Target TYPE="oracle_csa_collector" NAME="ora1.ramseier.local_oms_csa_collector" DISPLAY_NAME="ora1.ramseier.local_oms_csa_collector">
    <Property NAME="recvFileDir" VALUE="D:\OracleHomes\oms10g\oms_csa\results"/>
    </Target>
    </Targets>
    INFO: oracle.sysman.top.agent:Adding D:\OracleHomes\agent10g\sysman\install\target.outcsa file to D:\OracleHomes\agent10g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file = D:\OracleHomes\agent10g\sysman\install\target.outcsa to D:\OracleHomes\agent10g successfully.
    INFO: oracle.sysman.top.agent:Doing Chronos Configurarion...
    INFO: oracle.sysman.top.agent:Executing Command: D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\bin\chronos_config.pl
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 1
    INFO: oracle.sysman.top.agent:STDERR=
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    The Oracleagent10gAgent service is not started.
    More help is available by typing NET HELPMSG 3521.
    The Oracleagent10gAgent service could not be started.
    A service specific error occurred: 1.
    More help is available by typing NET HELPMSG 3547.
    STDOUT=
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    The Oracleagent10gAgent service is starting...........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
    Configuring webserver, document root D:\OracleHomes\oms10g/Apache/Apache/htdocs
    Javascript and gif files copied in to document root directory.
    Configuring webcache D:\OracleHomes\oms10g
    Checking if opmn is up ...
    D:\OracleHomes\oms10g/opmn/bin/opmnctl status
    Processes in Instance: EnterpriseManager0.ora1.ramseier.local
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | 3248 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | home | 3312 | Alive
    OC4J | OC4J_EM | 3228 | Alive
    OC4J | OC4J_EMPROV | 3600 | Alive
    WebCache | WebCache | 3316 | Alive
    WebCache | WebCacheAdmin | 3252 | Alive
    Restarting webcache...
    D:\OracleHomes\oms10g/opmn/bin/opmnctl stopproc process-type=WebCache
    opmnctl: stopping opmn managed processes...
    D:\OracleHomes\oms10g/opmn/bin/opmnctl startproc process-type=WebCache
    opmnctl: starting opmn managed processes...
    Adding collection for webcache target : EnterpriseManager0.ora1.ramseier.local_Web Cache
    EnterpriseManager0.ora1.ramseier.local_Web Cache ::: EnterpriseManager0_ora1_ramseier_local_Web_Cache
    Attempting to reload Agent.
    D:\OracleHomes\agent10g/bin/emctl reload
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Agent is Not Running
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Agent is Not Running
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Jan 16 20:51:35 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected.
    DEFAULT WEBSITE EM Website CREATION FAILED : ORA-01403: no data foundORA-01403:
    no data found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-01403: no data found
    ORA-06512: at line 224
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Jan 16 20:52:07 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected.
    DEFAULT WEBSITE EM Website CREATION FAILED : ORA-01403: no data foundORA-01403:
    no data found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-01403: no data found
    ORA-06512: at line 224
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Jan 16 20:52:39 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected.
    DEFAULT WEBSITE EM Website CREATION FAILED : ORA-01403: no data foundORA-01403:
    no data found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-01403: no data found
    ORA-06512: at line 224
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Jan 16 20:53:10 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected.
    DEFAULT WEBSITE EM Website CREATION FAILED : ORA-01403: no data foundORA-01403:
    no data found
    BEGIN
    ERROR at line 1:
    ORA-20999: CREATE DEFAULT WEBSITE FAILED : ORA-01403: no data found
    ORA-06512: at line 224
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Website target creation script failed.
    INFO: oracle.sysman.top.agent:Requested Operation D:\OracleHomes\agent10g\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe D:\OracleHomes\agent10g\bin\chronos_config.pl has failed to perform with Status = 1
    INFO: oracle.sysman.top.agent:6
    INFO: oracle.sysman.top.agent:Internal PlugIn for {Micro Step state:step:1:configuration in CfmAggregateInstance: oracle.sysman.top.agent:10.2.0.2.0:common:family=CFM:oh=D:\OracleHomes\agent10g:label=0} failed with an unhandled exception:
    java.lang.Exception: 6
         at oracle.sysman.emcp.agent.AgentPlugIn.startProcessing(AgentPlugIn.java:248)
         at oracle.sysman.emcp.agent.AgentPlugIn.invoke(AgentPlugIn.java:223)
         at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:509)
         at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:121)
         at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
         at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    INFO: OuiConfigVariables:IAction.perform() was called on {Action state:OUICA in CfmAggregateInstance: OuiConfigVariables:1.0.0.0.0:common:family=CFM:oh=D:\OracleHomes\oms10g:label=0}
    INFO: Framework waiting for Action to complete at 20:53:43.068
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=OUICA Status=is running with ActionStep=0 stepIndex=0 microStep=0
    INFO: OuiConfigVariables:About to execute plug-in OUI_CA
    INFO: OuiConfigVariables:The plug-in OUI_CA is running
    INFO: OuiConfigVariables:Launching CmdExec
    INFO: OuiConfigVariables:ExitCode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA executed as attached=true in separate process with exitcode=0
    INFO: OuiConfigVariables:The plug-in OUI_CA has successfully been performed
    INFO: done waiting for Action from 20:53:43.068
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 21 aggregate instances saved
    Best Regards
    Andy

    sorry, but thats only the beginning of the torture....
    i tried to update my gridcontrol installation to the actual version, .... many times with many retries but still havent a step by step resultion :-(
    much thanks to vmware or ms hyper-v for snapshotfeatures

  • OEM grid control installation

    hi
    i am trying to install the OEM grid control on my machine configured with statis IP address
    After installation when configuration assistants start to configure. i face the following error continuously.
    java security configuration assistan fails with the following errors
    jaznca.log at "E:\oracle\product\10.1.0\em\cfgtoollogs" contains the following
    Oracle JAAS [Fri Mar 10 18:01:55 GMT+05:00 2006]: exception: null
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.security.jazn.util.JAZNInstallHelper.resync(Unknown Source)
    at oracle.security.jazn.util.JAZNInstallHelper.setCredentials(Unknown Source)
    at oracle.security.jazn.util.JAZNInstallHelper.main(Unknown Source)
    Caused by: oracle.ias.sysmgmt.exception.TaskException: TaskMaster initialization failed.
    Root Cause: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
    Resolution: check the system configuration and make sure that the client can access the repository database.
    at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
    at oracle.ias.sysmgmt.EntryPoint.init(Unknown Source)
    at oracle.security.jazn.smi.DcmUtil.resyncInstance(Unknown Source)
    ... 7 more
    I started the OPMN manually and clicked on RETRY to configure this assistant. again failed and now
    jaznca.log contains the following
    Oracle JAAS [Fri Mar 10 18:06:50 GMT+05:00 2006]: exception: null
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.security.jazn.util.JAZNInstallHelper.resync(Unknown Source)
    at oracle.security.jazn.util.JAZNInstallHelper.setCredentials(Unknown Source)
    at oracle.security.jazn.util.JAZNInstallHelper.main(Unknown Source)
    Caused by: java.lang.Exception: At instance:EnterpriseManager0.lhrpc419.lhr.systemsltd.com Error:See base exception for details.
    Base Exception:
    oracle.ias.sysmgmt.exception.TaskException:OPMN process startup has timed out.
    Resolution: Try starting the OPMN process using the command line utility "$ORACLE_HOME/OPMN/bin/OPMNctl start". If the OPMN process does not start check the log files in $ORACLE_HOME/OPMN/logs for more information.See base exception for details.
    at oracle.security.jazn.smi.DcmUtil.resyncInstance(Unknown Source)
    ... 7 more
    ons.log at "E:\oracle\product\10.1.0\em\opmn\logs" contains following
    06/03/10 18:05:32 [4] ONS server initiated
    06/03/10 18:05:47 [4] Logging disabled
    06/03/10 18:05:49 [4] ONS server initiated
    06/03/10 18:05:49 [2] BIND (No error)
    06/03/10 18:05:49 [2] 0.0.24.56:6200 - listener BIND failed
    06/03/10 18:05:49 [4] Listener thread 860: 192.168.0.70:6200 (0x401) terminating
    06/03/10 18:05:49 [2] BIND (No error)
    06/03/10 18:05:49 [1] Local listener terminated
    can you guide that how to catter with this?
    regards

    Are you doing the Grid Control installation into a new Oracle Home? I would try a fresh installation...Typically, the installation itself is fairly straightforward..

Maybe you are looking for