Convert custom management plug-in in OEM 11g to OEM 12c compatible plug-in

Hi All,
We have a custom plug-in developed and deployed in OEM 11g. We are planning to move to OEM 12c(12.1.0.4) and installing OEM 12c(fresh install) in a new host instead of migrating existing 11g to 12c as part of upgrade process.
Now question is what are the options if I want to use existing 11g custom plug-in in OEM 12c ? As I understand 11g plug-ins are jar file but OEM 12c plug-ins are OPAR files.
Can we export plug-in from OEM 11g and import directly in OEM 12c or if there are any steps to conver 11g plugin to 12c plugin before importing it in 12c.
Please suggest the options available without re-developing the plug-ins for OEM 12c.
Thanks

To overwrite and update your current custom plug-in update that is stored in a repository, use the overwrite option.
$emcli create_custom_plugin_update
-agent_name="agent_name"
-plugin_id="plugin_id"
[-overwrite]
This command creates and imports a custom plug-in update from an existing Management Agent where the selected plug-in is deployed. The custom plug-in update will be used for all subsequent plug-in deployments on any Management Agent, in place of Oracle supplied versions.
Custom plug-in update is created as per plug-in type. If a custom plug-in update is created, and after three days, a patch is applied, in order to include the patch, the custom plug-in update will have to be created again.
$emcli list_custom_plugin_updates
Please refer the below doc for more info..
http://docs.oracle.com/cd/E24628_01/doc.121/e24473/plugin_mngr.htm#CJGCHGIH
Regards
Krishnan

Similar Messages

  • Use of SQL fetchlet to create a custom management plug-in

    Hi,
    I would appreciate if you anyone could help me out on this:
    I need to fetch some data from EMF tables and create a custom Management plug-in in OEM so that it can be monitored from OEM itself. For getting the data from database table i am using SQL fetchlet coz it provides the facility to use SQL statement in it. Following is the code i have developed in target-type.xml file.
    <TargetMetadata META_VER="1.0" TYPE="emf_filer">
    <Display>
    <Label NLSID="emf_filer">Error Management Filer</Label>
    </Display>
    <Metric NAME="emf_filer" TYPE="TABLE">
    <Display>
    <Label NLSID="emf_filer_resp">Response</Label>
    </Display>
    <TableDescriptor>
    <!-- <ColumnDescriptor NAME="tcpPing" TYPE="NUMBER" >
    <Display>
    <Label NLSID="netapp_filer_resp_tcpPing">TCP Ping, Milliseconds</Label>
    </Display>
    </ColumnDescriptor> -->
    <ColumnDescriptor NAME="Status" TYPE="NUMBER" >
    <Display>
    <Label NLSID="emf_filer_resp_status">Status</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="PROGRAM_NAME" TYPE="STRING" >
    <Display>
    <Label NLSID="PROGRAM_NAME">Program Name</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="PROGRAM_TYPE" TYPE="STRING" >
    <Display>
    <Label NLSID="PROGRAM_TYPE">Program Type</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="RICEW_ID" TYPE="STRING" >
    <Display>
    <Label NLSID="RICEW_ID">Rice Id</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="Request_id" TYPE="NUMBER" IS_KEY="TRUE" >
    <Display>
    <Label NLSID="Request_id">Request Id</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="EBIZ_INSTANCE_NAME " TYPE="STRING" >
    <Display>
    <Label NLSID="EBIZ_INSTANCE_NAME">Instance Name</Label>
    </Display>
    </ColumnDescriptor>
    </TableDescriptor>
    <QueryDescriptor FETCHLET_ID="SQL">
    <Property NAME="MachineName" SCOPE="INSTANCE">MachineName</Property>
    <Property NAME="Port" SCOPE="INSTANCE">Port</Property>
    <Property NAME="SID" SCOPE="INSTANCE">SID</Property>
    <Property NAME="UserName" SCOPE="UserName">apps</Property>
    <Property NAME="password" SCOPE="password">password</Property>
    <Property NAME="ServiceName" SCOPE="INSTANCE">ServiceName</Property>
    <Property NAME="STATEMENT" SCOPE="INSTANCE">
    BEGIN
    SELECT PROGRAM_NAME, PROGRAM_TYPE,
    RICEW_ID,REQUEST_ID, EBIZ_INSTANCE_NAME FROM XX_EMF_MESSAGE_HEADER WHERE STATUS = 'ERROR' AND RICEW_ID = 'INT-DL019';
    END;
    </Property>
    <!-- <Property NAME="SQLINPARAM1" SCOPE="ENV">HOSTNAME</Property>
    <Property NAME="SQLOUTPARAMPOS" SCOPE="GLOBAL">2</Property>
    <Property NAME="SQLOUTPARAMTYPE" SCOPE="GLOBAL">SQL_CURSOR</Property>-->
    <Property NAME="NUMROWS" SCOPE="GLOBAL">40
    </Property>
    </QueryDescriptor>
    <ExecutionDescriptor>
    <GetTable NAME="emf_filer"/>
    <GetView NAME="emf_View" FROM_TABLE="emf_filer">
    <Column NAME="PROGRAM_NAME"/>
    <Column NAME="PROGRAM_TYPE"/>
    <Column NAME="RICEW_ID"/>
    <Column NAME="REQUEST_ID"/>
    <Column NAME="EBIZ_INSTANCE_NAME"/>
    <Filter COLUMN_NAME="REQUEST_ID" OPERATOR="GT">0</Filter>
    </GetView>
    </ExecutionDescriptor>
    <InstanceProperties>
    <InstanceProperty NAME="UserName" CREDENTIAL="TRUE" OPTIONAL="FALSE" NEED_REENTER="FALSE" HIDE_ENTRY="FALSE">
    <Display>
    <Label NLSID="UserName_emf">Username</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="password" CREDENTIAL="TRUE" OPTIONAL="FALSE" NEED_REENTER="TRUE">
    <Display>
    <Label NLSID="password_emf">Password</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="MachineName" CREDENTIAL="FALSE" OPTIONAL="FALSE">
    <Display>
    <Label NLSID="MachineName_emf">Listener Machine Name</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="Port" CREDENTIAL="FAL
    My doubt here is:
    As per Oracle it is importent to use response matrics with status column. How can i accomodate Response matrics with this code. what will be the columns except Status that i need to mention? if i use just one matrics i.e response then what will i use in in FROM clause in ExecutionDescriptor [<GetView NAME="emf_View" FROM_TABLE="emf_filer">]? i wuld appreciate if anyone could clarify my issues.
    Thanks for your help.
    Regards,
    AS

    That is what i am trying to ask..as i will b using 2 dfifferent matrics so i will have to use 2 diffrent QueryDescriptors one for Response matric and one for other one. Now following QueryDescriptor will be added in other(Not Response) matric then what should i add in QueryDescriptor in Response matric?
    Query Descriptor for matric other than "Reposnse":
    QueryDescriptor FETCHLET_ID="SQL">
         <Property NAME="MachineName" SCOPE="INSTANCE">MachineName</Property>
         <Property NAME="Port" SCOPE="INSTANCE">Port</Property>
         <Property NAME="SID" SCOPE="INSTANCE">SID</Property>
         <Property NAME="UserName" SCOPE="UserName">UserName</Property>
         <Property NAME="password" SCOPE="password">password</Property>
         <Property NAME="ServiceName" SCOPE="INSTANCE">ServiceName</Property>
         <Property NAME="STATEMENT" SCOPE="GLOBAL">
              SELECT PROGRAM_NAME,
                             PROGRAM_TYPE,
                             RICEW_ID,REQUEST_ID,
                             EBIZ_INSTANCE_NAME
              FROM XX_EMF_MESSAGE_HEADER WHERE STATUS = 'ERROR' AND RICEW_ID = 'INT-DL019';
              </Property>
    </QueryDescriptor>
    what should be the QueryDescriptor for Response matric?? Will it be same or different?
    Thanks for your help.
    Regards,
    AS
    Edited by: user9959418 on Oct 31, 2008 1:10 PM

  • Want to create custom report under report field in OEM 11G

    Dear all
    I would like to create custom report on OEM 11G. I have query which is executed and verified from TOAD. But after placed report element it shows an error that table/view not exits. But it doesn't ask any database user name and password.So let me like to know how to do this. I want add more and more reports after the success of this.. Ho can it be done?Please advice.
    Note:-
    The data is getting from OEM repository i think so.. But i need a report which is get data from various apps and system tables. So how to display result from this table and shown to EBS reports.
    Regards,
    Gobinath.R
    Associate consultant
    Petrofac Information Services Private Limited
    Chennai.
    Edited by: Gopinath on May 18, 2012 4:23 AM

    Report should be based on tables in repository database. Mostly sysman tables we will be using for reporting. If you need other database tables then you need to create dblink to those targets in sysman schemas. To my knowledge that's the only way you can refer to other db tables in reports.
    Regards,
    Satheesh Shanmugam

  • Patching using OEM 11g

    Hi,
    A newbie here, please pardon me if I am missing some additional details..please let me know if you may need more details.
    Setup - OEM 11G Release 1 (11.1.0.1.0)
    OS - Enterprise Linux Enterprise Linux Server release 5.2 (Carthage)
    I am wondering if custom Fusion Middleware applications (say, foo.ear) could be patched (say, with files like foo.java, bar.xml etc) on a application deployed in production server (weblogic 11g) through the OMS ?
    Came across the OPatch utility - which I think might help me. However, I am not sure how I could employ this from the OMS console..may be creating a deployment procedure (if possible) shall help ?
    Any thoughts would be highly appreciated.
    Thanks for your time..
    Regards,
    Dinu

    You might want to tak ea look at:
    Oracle® Enterprise Manager Administrator's Guide for Software and Server Provisioning and Patching
    11g Release 1 (11.1.0.1.0)
    http://download.oracle.com/docs/cd/E11857_01/em.111/e16599/toc.htm
    regards
    Rob
    http://oemgc.wordpress.com

  • OEM 11g Grid Control installation for 10g R2 database

    Hi ,
    I am new with oracle enterprise manager grid control ,
    I have 3 questions ,
    1. My customer is using windows server 2008 with oracle 10g R2 database , can I install OEM 11g R2 to monitor all the 10g databases ?
    2. I found only 32 bit installers for windows , where as they are using 64 bit OS , is it fine to install 32 bit OEM in a 64 bit OS ?
    3. Do they require any separate license for OEM 11g , they have license for oracle 10g database ?
    I will really appreciate if someone can help me with these details , thank you.

    1. My customer is using windows server 2008 with oracle 10g R2 database , can I install OEM 11g R2 to monitor all the 10g databases ?
    Yes
    2. I found only 32 bit installers for windows , where as they are using 64 bit OS , is it fine to install 32 bit OEM in a 64 bit OS ?
    Yes
    3. Do they require any separate license for OEM 11g , they have license for oracle 10g database ?
    You don't need any license to use OEM 11g, however you do need licenses to use Management Packs
    Checkout:
    Oracle® Enterprise Manager Licensing Information
    11g Release 1 (11.1)
    http://download.oracle.com/docs/cd/E11857_01/license.111/e11987/toc.htm
    Regards
    Rob
    http://oemgc.wordpress.com

  • OEM 11G R2 timeout

    I added the following line in the file <OMS_HOME>/sysman/config/emoms.properties but still I have to relogin after some time.
    oracle.sysman.eml.maxInactiveTime=-1
    It's strange though because I have two servers and on the first server works ok but on the other not.

    1. My customer is using windows server 2008 with oracle 10g R2 database , can I install OEM 11g R2 to monitor all the 10g databases ?
    Yes
    2. I found only 32 bit installers for windows , where as they are using 64 bit OS , is it fine to install 32 bit OEM in a 64 bit OS ?
    Yes
    3. Do they require any separate license for OEM 11g , they have license for oracle 10g database ?
    You don't need any license to use OEM 11g, however you do need licenses to use Management Packs
    Checkout:
    Oracle® Enterprise Manager Licensing Information
    11g Release 1 (11.1)
    http://download.oracle.com/docs/cd/E11857_01/license.111/e11987/toc.htm
    Regards
    Rob
    http://oemgc.wordpress.com

  • Monitoring WCI 10.3.0 & UCM 10.1.3.5 using OEM 11g R1

    As part of the Service Monitoring for our OFM-OUCM environment, we have implemented OEM 11g R1. Our Dev/Test/UAT/Prod environment is comprised of SOA 10.1.3.5, WCI 10.3, UCM 10.1.3.5, multiple DB instances 10.2.0.3/10.2.0.4, IDM 10.1.4.0.1. We are able to monitor SOA 10.1.3.5, IDM 10.1.4.0.1 & the databases. But the 11g Agent wasnt able to discover the targets for WCI 10.3.0 & UCM 10.1.3.5. Is there a way to monitor UCM 10gR3 & WCI 10.3 using OEM 11g R1 or do we need to downgrade the OEM version.
    We are able to see the WCI Products in the Hosts -> Configuration tab in OEM. But we are not able to monitor these as targets.
    WebCenter Interaction API Service 10.3.0.0.0
    WebCenter Interaction Automation Service 10.3.0.0.0
    WebCenter Interaction Content Upload Service 10.3.0.0.0
    WebCenter Interaction Directory 1.0.0.0.0
    WebCenter Interaction Document Repository Service 10.3.0.0.0
    WebCenter Interaction Identity Service for LDAP 10.3.0.0.0
    WebCenter Interaction Image Service 10.3.0.0.0
    WebCenter Interaction Notification Service 1.0.0.0.0
    WebCenter Interaction Portal 10.3.0.0.0
    WebCenter Interaction Remote Portlet Service 1.0.0.0.0
    Thanks

    Did you check http://www.oracle.com/us/products/enterprise-manager/039537.pdf ?
    and http://www.oracle.com/technetwork/oem/soa-mgmt/index.html
    MANAGEMENT PACK FOR WEBCENTER SUITE
    Regards
    Rob
    http://oemgc.wordpress.com

  • OEM 11g R1 Licence

    HI
    I have already installed OEM Grid control 10g R2 (10.2.0.1) on Oracle Enterprise Linux Server. I have already purchased and using licence for management packs.
    Now I want to install new OEM Grid Control 11g R1 on the same Server.
    Do I have to purchase Licence for management pack again for OEM 11g ?
    Do I have to purchase any other licence for OEM 11g Like Web Logic or Database?
    Thanks,
    Vishal

    Hi,
    Do I have to purchase Licence for management pack again for OEM 11g ?no, because management pack is licensed at database level once you have purchased for a database, not you are free to use it. Another aspect is that you will be able to use this management pack only through one OEM grid at a time, either from 10g or 11g.
    Do I have to purchase any other licence for OEM 11g Like Web Logic or Database?I think no, because when you install OEM Grid, database for repository is also installed and you don't need license for either GC or database as long as you are not using this database for some other commercial purposes and only using for OEM Grid repository and i believe same rule applies for the Web Logic server as long as you are using it only for GC and not for any other commercial application.
    So, Grid Control is free and all things required by it are also free as long as these things (database, weblogic) are solely being used by GC
    Salman

  • Need help for DB backup through OEM 11g grid

    I need to know how to schedule the hot backup of whole DB using OEM 11g grid.
    In our system there is a backup running for DB (10gr2). It is not scheduled through jobs.
    I am not able to find this scheduled db backup information from OEM.
    Can anyone guide me how to check the current backup schedules and backup script ?
    Is there any good document for this ?

    Hi Dhaval,
    You may look out option for restore backup from production and restore the same on QAS.
    Refer SAP note
    683447
    SAP Tools for MS SQL Server
    Which shall help you with post restore steps on the database.
    Once DB and SAP is up you may perform generic post restore steps like
    - STMS re-configuration
    - Adjusting profiles
    - Executing BDLS
    - Importing RFCs and user master ( if exported before the restore)
    - Adjusting Partner profiles
    - Configuring backup
    - Apply SAP license
    Above are just a few of them to name. There could be many more as per customer landscape.
    Regards,
    Deepak Kori

  • Converting Custom Columns on Mulitlingual

    Hi,
    I have used variation in SharePpint 2013 for Multilingual, Created two different languages default in English and other one in French
    Created a list on Englsih site, used to translate the same to (French) other language, list  is getting created but list name and library custom columns are not getting translated  to target language.
    Please suggest is there any procedure to do, with out Human translation.
    Thanks in advance
    Suman

    Hi,
    According to your post, my understanding is that you wanted to convert Custom Columns on Mulitlingual.
    Per my knoweadge, Language packs provide language-specific translation of user interface elements such as the following:
    Site administration pages
    Ribbon elements
    List and site column headers
    Site settings interface
    Templates for new lists, document libraries, and sites
    Managed metadata term sets and terms
    Language packs provide translation only of the user interface. They do not translate content that is created and shown in content pages or Web Parts.
    To translate the custom column automaticlly, we need to modify the resource files.
    Form more information, you can refer to:
    Plan for multilingual sites in SharePoint 2013
    Create Multilingual Sharepoint Site Columns,Content types and Lists from Visual studio programatically
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Issue with OEM 11g

    Hi All,
    I am facing issue with OEM 11g. It was went down automatically, however i am not able to find the specific reasons. As of now it has been started.
    But in want to know the reasons why it was went down. Please guide me how to troubleshoot.
    Thanks

    Hi,
    emctl.log
    29281 :: Tue Oct 25 08:34:37 2011::AgentStatus.pm:emdctl status returned 3
    19917 :: Thu Dec 15 19:40:11 2011::AgentStatus.pm:Processing status agent
    19917 :: Thu Dec 15 19:40:12 2011::AgentStatus.pm:emdctl status returned 3
    "emagent.log"
    2011-12-14 20:37:07,994 Thread-894492032 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2011-12-14 20:37:08,008 Thread-894492032 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2011-12-14 20:37:12,582 Thread-894492032 EMAgent started successfully (00702)
    2011-12-15 15:32:21,924 Thread-1112975680 <HTTP Listener> Agent Signaled to EXIT by emctl (00800)
    2011-12-15 15:32:22,960 Thread-894492032 EMAgent normal shutdown (00703)
    2011-12-15 15:32:36,318 Thread-654290304 Starting Agent 10.2.0.4.0 from /app/oracle/PROD/db/tech_st/11.1.0 (00701)
    2011-12-15 15:32:37,001 Thread-654290304 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2011-12-15 15:32:37,165 Thread-654290304 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2011-12-15 15:32:37,228 Thread-654290304 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2011-12-15 15:32:39,828 Thread-654290304 EMAgent started successfully (00702)
    2011-12-15 15:32:21,924 Thread-1112975680 WARN http: -1,5: nmehl_httpListener: signaled to exit from emctl
    2011-12-15 15:32:22,960 Thread-1112975680 WARN : Signalled to Exit Normally. Signaled to exit from emctl
    2011-12-15 15:32:36,322 Thread-654290304 WARN http: snmehl_connect: connect failed to (odbivprod.ivcf.org:1158): Connection refused (error = 111)
    2011-12-15 15:32:36,322 Thread-654290304 ERROR pingManager: nmepm_pingReposURL: Cannot connect to https://odbivprod.ivcf.org:1158/em/upload/: retStatus=-32
    2011-12-15 15:32:36,356 Thread-654290304 WARN command: Job Subsystem Timeout set at 600 seconds
    2011-12-15 15:32:36,399 Thread-654290304 WARN upload: Upload manager has no Failure script: disabled
    2011-12-15 15:32:36,672 Thread-654290304 WARN metadata: Name FileSystems has already been used
    2011-12-15 15:32:36,672 Thread-654290304 WARN metadata: Name FileSystems has already been used
    2011-12-15 15:32:36,954 Thread-654290304 WARN metadata: Metric waiting_sessions does not have any data columns
    2011-12-15 15:32:36,954 Thread-654290304 WARN metadata: Metric session_wait_chains does not have any data columns
    2011-12-15 15:32:36,954 Thread-654290304 WARN metadata: Metric hung_system_traces does not have any data columns
    2011-12-15 15:32:37,019 Thread-654290304 WARN metadata: Metric osm_diskGroupPolicies does not have any data columns
    2011-12-15 15:32:37,285 Thread-1116055872 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,286 Thread-1122355520 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,286 Thread-1125505344 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,338 Thread-1119205696 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,451 Thread-1119205696 WARN TargetManager: Query returned 0 rows (only one expected) for the dynamic property from_cluster
    2011-12-15 15:32:37,451 Thread-1119205696 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,480 Thread-1119205696 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,481 Thread-1119205696 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,544 Thread-1125505344 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,550 Thread-1125505344 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    2011-12-15 15:32:37,555 Thread-1125505344 ERROR : (nmecmgr.c,3210):Memory 0x0 encountered, expect struct_id=11011
    Edited by: Vinod Ranjan on 15 Dec, 2011 9:40 PM

  • Whether  OEM 11g[without AMP]  monitor  non-database nodes  like  EBS node?

    Hi,
    Please let me know whether OEM 11g grid is capable of monitoring the OS level parameters like memory,server load,processes running etc [ although through  user defined metrics  shell scripts etc] for R12 EBS
    Major concern here , situation is requiring NOT to go for the licensing of AMP[ Application MAnagement Pack]
    So what ever is possible to be monitored on the EBS application nodes, it is good.
    Please suggest how to do on this , if possible.
    Regards
    GSN

    OK pay attention now ;-)
    I am under the assumption that you want to monitor Host resource usage like CPU, MEM, I/O etc.
    Meaning this would be the same approach for any kind of server, so also for an EBS server.
    Still you should realize that if you want to relate Host level resource consumption to a specific EBS Task / Activity, you still have to be able to understand there relationship etc., which might mean (depending) on your knowledge of EBS and the way it is implemented on a Webserver or whatsoever, is still a difficult task.
    You should assure yourself that you do not really need the EBS Apps Management Pack for this.
    What is you Job role within the organization?
    Regards
    Rob
    http://oemgc.wordpress.com

  • OEM 11g installation

    Hi
    I want to install Oracle Enterprise manager 11g, I have downloaded V23675-01.zip, V23676-01.zip, V23677-01.zip
    I unziped V23676-01.zip, V23677-01.zip and they made oms directory, however if i am trying to unzip V23675-01.zip, it gives below message
    Archive: V23675-01.zip
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    unzip: cannot find zipfile directory in one of V23675-01.zip or
    V23675-01.zip.zip, and cannot find V23675-01.zip.ZIP, period.
    Please help
    Also please provide me the documentation of how to install OEM 11g/OEM 12c on Solaris SPARC(64)
    Regards

    Please use unzip version 6 only for extracting the software.
    Here is the doc link of 12c/11.1
    http://docs.oracle.com/cd/E24628_01/install.121/e22624/toc.htm
    http://docs.oracle.com/cd/E11857_01/install.111/e15838/toc.htm

  • OEM 11g agents on 10g middleware

    We recently installed OEM 11g in a PROD environment consisting of older 10g middleware (SOA, B2B, Web Servers) the agents are not discovering any of the 10g middleware for "targets"... 10g databases OK but not 10g Middleware, any suggestions?
    I know...upgrade everything, and we are working on THAT but in the meantime....

    You can use note Oracle Enterprise Manager Grid Control Certification Checker [ID 412431.1] to see if the version you are using is supported by OEM 11g and/or 11g agent.
    Eric

  • OEM 11G software doubt

    Hi All,
    I have been given a task to setup OEM 11G grid control on RHEL 5.1 linux server.Red Hat Enterprise Linux Server release 5.1 (Tikanga) x86_64 x86_64 x86_64 GNU/Linux
    I am trying to get the necessary software list for this setup.
    While i went to edelivery website, i see the below
    Oracle Enterprise Manager Ops Center 11g Release 1 (11.1.0.1536.0) for Oracle Linux 5.3-5.5 and Red Hat Enterprise Linux 5.0-5.5 (32-bit and 64-bit)
    Part Number V24008-01
    Size 1.1G
    Will the above be the correct grid control software for my server?
    Also can you please let me know what weblogic software version and database verion i need to install for OEM 11G ?
    Thanks,
    John

    Hi,
    Ops Center is a different product to Grid Control, so you need a different download to the one you referenced.
    The download page for Enterprise Manager software on OTN is here
    http://www.oracle.com/technetwork/oem/enterprise-manager/downloads/index.html
    When you go to download 11g Grid Control you will receive the following message:
    "Enterprise Manager Grid Control 11g is no longer available for download. The software is available as a media request for those customers who own a valid Enterprise Manager product license purchased prior to September 30, 2012. To request access to the media, follow Note.1071023.1 from My Oracle Support "
    The reason for this is that 11g Grid Control has been superseded by 12c Cloud Control. It is recommended that for new deployments you install 12c Cloud Control if possible rather than 11g Grid Control. Is there a specific reason why you need 11g?
    Thanks, Mark.

Maybe you are looking for

  • How to know my ipad is 4...y it shows only 13.6 gb in usage when i check in settings....my ipad is 16gb

    My Ipad has retina/wifi/cellular/16gb...but how to know its ipad4...because no were i see ipad4 (ipad box/website)...i agree it has lightning to usb but not mentioned on particulars...and also no 16gb is showed in usage when i checked in settings....

  • I am unable to print multiple copies on 1 page

    I have a macbook and I used to be able to print multiple copies on 1 page. It had a selection on the bottom right. Now something has changed with the format. It allows me to select multiple copies, but only prints one.

  • Drag and Drop with Capture feature

    I would like to set up a drag and drop interaction. The user will drag several icons and place them on a map. They do not have to use all the icons provided to them. The map is a rectangle and I need to capture the icons placed on the map and there l

  • Poor video Quality when exporting to DVD

    I cant seem to get a clear video. I am downloading from DV from a canon and the quality is sentational. When on the time line averything is brilliant. When rendereing everything is still ok. When exporting to DVD it goes pear shaped. I have tried doz

  • Equivalent for an "IP accounting" in MPLS Network

    Do we have an equivalent for an IP accounting in an interface in MPLS network. I would like to know this to identify traffic flowing across a WAN interface which is being tag/label switched