How to install Oracle Configuration Manager on laptop without Oracle dist?

I'm sure this is the wrong forum to ask this in, but I can't find a better one.
I was trying to file a support case in My Oracle Support, which I haven't done in a long time. It appears to want me to install "Oracle Configuration Manager". I just have WebLogic installed on this box. I don't even have an Oracle installation. The installation instructions for OCM seem to be very complicated, or I'm just missing the "just do this simple thing" instructions.
I downloaded the installer, and I installed it, but when I try to submit a support case, it seems like it thinks it's not installed. It keeps on complaining that I haven't used a stored configuration, but I don't see any way to create one. I imagine that OCM is supposed to help with that, but it's not doing anything obvious.

Thanks for the link! The "Oracle® Database Installation Guide 11g Release 1 (11.1) for Solaris Operating System" link you provided says:
+6.3 Removing Oracle Configuration Manager+
To uninstall Oracle Configuration Manager, follow these steps:
If the $ORACLE_HOME directory contains a database, remove the Oracle Configuration Manager user and the associated objects from the database by running the following script:
SQL> $ORACLE_HOME/ccr/admin/scripts/dropocm.sql
If the database is a repository for the Oracle E-Business Suite, log in to the database as an SYSDBA user and remove the additional objects from the database by running the following script:
+$ORACLE_HOME/ccr/admin/scripts/ebs_dropccr.sql Oracle_Applications_User+
If the database is a repository for Oracle Grid Control, log in to the database as the SYSMAN user and remove the additional objects from the database by running the following script:
+$ORACLE_HOME/ccr/admin/scripts/dropemrep_collect.sql+
To stop the Scheduler and remove the service or the crontab entry, enter the following command:
+$ORACLE_HOME/ccr/bin/deployPackages -d $ORACLE_HOME/ccr/inventory/core.jar+
Delete the ccr directory by entering the following command:
+$ rm -rf $ORACLE_HOME/ccr+
Oracle Configuration Manager is successfully uninstalled.
However, $ORACLE_HOME/ccr/admin/scripts/dropocm.sql does not exist on our system.

Similar Messages

  • How to Install and Configure Workflow For PO in Oracle Apps Version R12

    Hi,
    Please do let me know how to install and configure Workflow for Purchasing in Oracle Apps R12 Version.
    I want to the standard setup of workflow configuration for the PO.
    Thanks and Regards
    Srini

    Hi Suresh
    Only the latest version of WLP which is WLP 10.3.2 has facility to integrate with Oracle UCM with Adapaters. So make sure that you do have this latest version of WLP 10.3.2. Older versions like WLP 10.3 do not have this provision.
    Also I guess when you install and configure this Oracle UCM Adapater and choose above WLP Home, I guess these modules may be added in already installed WLP folders. I checked on my side for WLP 10.3.2 and I could NOT find the modules you mentioned. So most probably you may be missing some installation/configuration stuff from UCM side.
    Thanks
    Ravi Jegga

  • How to install and configure management agents on Tru64 Cluster

    We are busy rolling out the Oracle 10g Grid Control to our enterprise and one of our targets is a two-node Tru64 cluster with shared file systems, i.e., each node can see (read/write) the file systems concurrently. Trucluster software is responsible for the clustering management.
    On node1 we have a set of databases each with its own dedicated listener; the same for node2. Each cluster managed service set has its own logical hostname. For example, we have on node1:
    db1 (database)
    listener-db1 (listener for db1)
    node-db1 (logical hostname for db1 service)
    Upon switchover or failover, the database and listener are brought up on node2 and we need to cater for this in our management agent configuration. I am trying to work out how we install and configure the management agents in such a configuration. Has anyone done this or does anyone know how to set up the agents suitably?
    I have already installed the agent on one of the nodes - that worked fine, and I have even managed to start another agent up using the installed software home on the other node using "agentca -f"

    You the Cluster type of configuration. It is documented in the install guide you have

  • Oracle Configuration Manager in DB without XDB

    As subject says, is that possible or is XDB mandatory?

    Sure thing. Well, the important thing is that this db (first I tried) is OEM repository. Start of OCM is followed by:
    WARN: Oracle Configuration Manager database objects are not in sync with
    the installed configuration collection scripts.
    Refer to the Installation and Configuration documentation on reloading the
    SQL collection packages.
    SID                                     Script
    EMREP                                   collectconfig
    running ccr/admin/scripts/installCCRSQL.sh collectconfig results in:
    SQL> DECLARE
    2 l_instvers VARCHAR2(100);
    3 BEGIN
    4
    5 -- Drop the Network ACL if the ACL was created.
    6 select LPAD(version,10,'0') into l_instvers from v$instance;
    7 IF l_instvers >= '11.0.0.0.0' THEN
    8 EXECUTE IMMEDIATE
    9 'DECLARE
    10 l_comp_cnt NUMBER;
    11 l_regexp_match NUMBER;
    12 TYPE p_acl_ids_type IS TABLE OF VARCHAR2(4000);
    13 TYPE p_acl_priv_type IS TABLE OF NUMBER;
    14 l_acl_ids p_acl_ids_type;
    15 l_acl_privs p_acl_priv_type;
    16 l_acl_cnt NUMBER;
    17 BEGIN
    18 -- check for XML DB installed
    19 select count(*) into l_comp_cnt from dba_registry where COMP_NAME = ''Oracle XML Database'' and STATUS = ''VALID'';
    20 IF l_comp_cnt > 0 THEN
    21 -- drop the entire ACL if it is the one we created
    22 select count(*) into l_regexp_match from dba_network_acls where regexp_like(acl,''.oracle-sysman-ocm-Resolve-Access.xml$'');
    23 IF (l_regexp_match > 0) THEN
    24 DBMS_NETWORK_ACL_ADMIN.DROP_ACL(''oracle-sysman-ocm-Resolve-Access.xml'');
    25 COMMIT;
    26 END IF;
    27
    28 -- check for resolve privilege for OCM user
    29 -- get all ACLIDs and whether ORACLE_OCM has resolve privilege through each
    30 BEGIN
    31 SELECT acl, DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE_ACLID(aclid, ''ORACLE_OCM'', ''resolve'') acl_priv
    32 BULK COLLECT INTO l_acl_ids, l_acl_privs
    33 FROM dba_network_acls;
    34 EXCEPTION
    35 WHEN OTHERS THEN NULL;
    36 END;
    37 -- walk the collection
    38 FOR i IN 1..l_acl_ids.count LOOP
    39 BEGIN
    40 IF (l_acl_privs(i) IS NOT NULL AND l_acl_privs(i) > 0) THEN
    41 -- remove resolve privilege
    42 DBMS_NETWORK_ACL_ADMIN.DELETE_PRIVILEGE(acl => l_acl_ids(i),principal => ''ORACLE_OCM'');
    43 COMMIT;
    44 END IF;
    45 EXCEPTION
    46 WHEN OTHERS THEN NULL;
    47 END;
    48 END LOOP;
    49 END IF;
    50 END;';
    51
    52 END IF;
    53 END;
    54 /
    DECLARE
    ERROR at line 1:
    ORA-06550: line 14, column 46:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 14, column 5:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 16, column 7:
    PLS-00201: identifier 'DBMS_NETWORK_ACL_ADMIN.DROP_ACL' must be declared
    ORA-06550: line 16, column 7:
    PL/SQL: Statement ignored
    ORA-06550: line 25, column 14:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 23, column 7:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 34, column 11:
    PLS-00201: identifier 'DBMS_NETWORK_ACL_ADMIN.DELETE_PRIVILEGE' must be
    declared
    ORA-06550: line 34, column 11:
    PL/SQL: Statement ignored
    ORA-06512: at line 8

  • How to install and configure NI Visa Server without having to install MAX?

    Hi,
    I need to install NI Visa Server on a computer so that remote systems can connect to the devices connected to it. However, the flash-drive on the computer is marked as "removable media" by the operating system which is causing the MAX installer to error out (this is a known problem with standard windows installers and removable media).
    Before pursuing a hardware change, I was wondering if there was a way to install and configure NI Visa Server on the embedded computer without having to install or configure through MAX?
    Thanks in advance for any help.

    Hello!
    Your system should appear under remote systems and then you can right click on the software folder and install software. Our 8145s for instance have compact flash drives and this process works. Could you give me more details on your hardware? Are you getting an error message when you try to install the software?
    Allan S.

  • How do I install Oracle Configuration Manager in oracle Fusion - discoverer 11i

    Hello Gurus,
    I need some guidance to install Oracle Configuration Manager.
    I have just successfully installed Oracle Fusion - following "Fusion Middleware Installation Guide for Oracle Portal, Forms, Reports and Discoverer 11g Release 1 (11.1.1.6.0) (Part Number E10421-07)" without OCM. I have EBS 12.1.3 and rdbms 11.2.0 on the same server.
    Thanks
    Mathias

    ikaros wrote:
    I have installed OracleAS 10g. What should I download now in order to install Oracle Portal 10g?Portal (actually Portal and wireless) is one of the three installation types of a full-fledged OAS 10g in release 1 and 2.
    You need to have an infrastructure as a pre-requisite for a portal type OAS installation.
    Please see this [link and the whole guide - click Content on the top-right|http://download.oracle.com/docs/cd/B14099_19/win.1012/install.1012/install/mt.htm#sthref508] for details and then decide what have you installed that you are referring to as OAS 10g.
    thanks,
    AMN

  • How to configure Oracle Configuration Manager in R12.0.4

    Dear
    I need to configure oracle configuration manager for my running R12.0.4 instance on single node setup.Whenever i try update my metalink credentials in oracle application manager dashboard,it says userid or password is wrong. While installation i skip the OCM screen. How can i configure it now either using Universal installer or comand line? Need all steps for setup?
    Do i need to download & install OCM client or is it already shipped with software & needs just configuration setup?
    Help me!
    Regards

    Ateeq,
    Running AutoConfig should populate profile options with the correct values. However, you can check the values after running AutoConfig to verify it.
    According to metalink document id, this Applications Server-Side Proxy Host And Domain profile needs to changed. Document id, will mention later.I forgot.Below are the notes:
    Note: 297689.1 - Unable to update MetaLink credentials from OAM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297689.1
    Note: 308369.1 - Unable to Connect to MetaLink from OAM After Updating MetaLink Credentials
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=308369.1

  • How to install and configure oracle secure backup(osb-10.4.0.3.0_linux.x64) in linux

    Hello,
    We are planning to install and configure Oracle Secure Backup Version 10.4 in Linux server. I had searched documents and i have not find any relevant steps to install and configure in OEL 6.2.
    Can anyone please suggest me how to install and configure OSB.
    Regards,
    Anil

    Hi
    Installing OSB on Oracle Linux is just the same as installing on any other supported linux and is described in Installation and Configuration guide. Just stick with the directories and procedure described in install guide and you should be fine.
    For media server choose a physical host due to performance considerations. I think it is mentioned in docs somewhere.
    Regards,
    Mitja

  • How to Uninstall Oracle Configuration Manager (OCM) on 11g

    At our site, we need to adhere to the SRR (Security Readiness Review) STIG (Security Technical Implementation Guide), and one of the security "findings" is the presence of Oracle Configuration Manager (OCM). The STIG recommends the deinstallation of OCM (which we have made part of our site standard for 10g), and it cites Oracle MetaLink Notes 369111.1 and 728989.1 as reference material for the deinstallation. Unfortunately, these Oracle documents refer to 10g, not 11g, and the script to deinstall OCM ($ORACLE_HOME/ccr/admin/scripts/dropocm.sql) is missing in 11g.
    Does anyone know of a documented way to uninstall OCM in 11g? We are using Oracle 11.1.0.7 on Solaris 10.
    Thanks,
    J

    Thanks for the link! The "Oracle® Database Installation Guide 11g Release 1 (11.1) for Solaris Operating System" link you provided says:
    +6.3 Removing Oracle Configuration Manager+
    To uninstall Oracle Configuration Manager, follow these steps:
    If the $ORACLE_HOME directory contains a database, remove the Oracle Configuration Manager user and the associated objects from the database by running the following script:
    SQL> $ORACLE_HOME/ccr/admin/scripts/dropocm.sql
    If the database is a repository for the Oracle E-Business Suite, log in to the database as an SYSDBA user and remove the additional objects from the database by running the following script:
    +$ORACLE_HOME/ccr/admin/scripts/ebs_dropccr.sql Oracle_Applications_User+
    If the database is a repository for Oracle Grid Control, log in to the database as the SYSMAN user and remove the additional objects from the database by running the following script:
    +$ORACLE_HOME/ccr/admin/scripts/dropemrep_collect.sql+
    To stop the Scheduler and remove the service or the crontab entry, enter the following command:
    +$ORACLE_HOME/ccr/bin/deployPackages -d $ORACLE_HOME/ccr/inventory/core.jar+
    Delete the ccr directory by entering the following command:
    +$ rm -rf $ORACLE_HOME/ccr+
    Oracle Configuration Manager is successfully uninstalled.
    However, $ORACLE_HOME/ccr/admin/scripts/dropocm.sql does not exist on our system.

  • How to install and configure smtp on iis 7 on windows 7

    how to install and configure smtp on iis 7 on windows 7?
    Thanks!

    Here is an article that you may find useful http://eriglen.blogspot.com/2013/01/step-by-step-configuring-automatic-storage-management-on-standalone-server-with-oracle-enterprise-linux-and-oracle-11g-R2-using-external-storage-managed-by-openfiler.html

  • Oracle Configuration Manager - EBS R12.1.1

    Hi ,
    EBS R12.1.1, on OEL 5.4
    Is there forums for Oracle Configuration Manager?
    I am trying to configure it, but as usual the docs is very topsiturvy.
    Identifying If Oracle Configuration Manager Is Already Installed or Configured
    Oracle Configuration Manager is included with many Oracle product lines. To verify if
    it has been included, check for the presence of the ccr directory under $ORACLE_
    HOME. If the ccr directory exists, you must verify whether it has been configured.
    ■ Navigate to the ccr/bin directory and locate emCCR. If emCCR exists, OCM has
       been configured.
    ■ If emCCR is not present under the ccr/bin directory, OCM has been installed but
       not configured.
    If the ccr directory does not exist, Oracle Configuration Manager has not been
    included with your Oracle release.
    Note: For the middle-tier of Oracle E-Business Suite Release 12
    installations, check for the presence of the ccr directory under the
    $INST_TOP/ocm/10.1.2/ and $INST_TOP/ocm/10.1.3/
    directories.
    For the database tier, the ccr directory can be found
    under $ORACLE_HOME.I searched the "ccr" at the apps tier:
    [appldev1@apps1 ~]$ cd /u01/appldev1
    [appldev1@apps1 appldev1]$ ls
    DEV1
    [appldev1@apps1 appldev1]$ find . -name "ccr"
    ./DEV1/apps/tech_st/10.1.3/ccr
    ./DEV1/apps/tech_st/10.1.2/ccr
    ./DEV1/apps/apps_st/appl/fv/12.0.0/mds/ccr
    ./DEV1/apps/apps_st/comn/java/classes/oracle/apps/fv/ccrAnd I searched the "ccr" at the database tier:
    [root@apps1 ~]# cd /u02/oradev1
    [root@apps1 oradev1]# find . -name "ccr"
    ./DEV1/db/tech_st/11.1.0/ccrWhy is that there are lots of "ccr" directories in the appstier?
    And there is also existing on the dbTier.
    Where should I install the OCR? in the apps tier or db tier or both?
    Thanks a lot
    MsK

    Hi user;
    If you follow Note:Oracle Configuration Manager and E-Business Suite Release 12 Release Notes [ID 406369.1]
    As you can see in note +"Starting with Release 12, Oracle has updated the Oracle E-Business Suite Rapid Install, Rapid Clone, and AutoConfig tools to incorporate support for installing and configuring OCM."+
    Please check your Applications context file via section 1. The information will appear in your in the following variables:
    After you confirm this,please check Section 2: Configuring OCM after Installing Release 12
    Modify your Applications context file on each node to add the CSI, OracleMetaLink user name, country code, and proxy values.
    Its mean take backup of Applications context file on each node than add add upper information to your Applications context file on each node and run autconfig each node.(For adding parameter,please follow section 1. The information will appear in your in the following variables: )
    If you dont know how you can edit Applications context file please check:
    Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12 [ID 387859.1]
    Regard
    Helios

  • Registration Service is unavailable (500); Oracle Configuration Manager

    Getting error while installing OCM in red hat 4 linux server.
    setupCCR -R ocm.rsp
    ** Registering installation with Oracle Configuration Manager server(s) **
    Failure in registering with Oracle Configuration Manager server
    Error encountered in registering. Registration Service is unavailable (500).

    i am using proxy server , a day back it is wrking fine , but today i am seeing this error.
    How can i test opening web page from my server ?Please let me know the steps?

  • How To Install and Configure External Drivers for the JDBC & JMS Adapters

    Hello colleagues,
    Please I need a How To Install and Configure External Drivers for the JDBC & JMS Adapters version 7.10.
    VERSION 7.10.
    BBDD ORACLE - ojdbc14.jar
    Regards.

    Hi ,
    Uisng  Java Support Package Manager (JSPM) to deploy com.sap.aii.adapter.lib.sda file,
    refer this two links,the procedure available how to deploy using JSPM.
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/33/e6fb40f17af66fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/1f/c45b4211aac353e10000000a1550b0/frameset.htm
    Regards,
    Raj

  • How to install and configure OID using 11g R2 installers

    Hi,
    I need to install and configure OID, I am having installers of Oracle Identity and Access Management 11g (11.1.2.1.0).
    Please let me know how to install and configure OID.
    Thanks

    Use the R1 IDM package. R2 is only for IAM.

  • Patches required for installing the configuration management workbench?

    Hi Team,
    Please list all patches required for installing the configuration management workbench in Oracle Apps version 11.5.10.2 ?
    Please let me know.
    Thanks,
    Suman V.

    Hi;
    I also suggest to check:
    How to Configure the Oracle Configuration Manager with Support WorkBench [ID 1174943.1]
    Regard
    Helios

Maybe you are looking for

  • Multiple copies of programs in "Open with"

    On files of various types, when I choose the "Open With" option (on a right-click) I find I have multiple copies of programs available to choose from. For example, "Open With" on a .gif gives me the choice between 3 copies of Firefox, 2copes of Image

  • How to delete unwanted transfer rules from the pool

    Hi experts, I want to know how to delete the unwanted transfer rules from the pool on the right hand side of the transfer rules. I realized I don't need them. I get a warning icon with them sitting in the pool.

  • IPhone stopped showing up in itunes

    I recently updated itunes to the newest one and did some software updates on my computer. After doing these my iphone only is showing up as a camera, and does not come up in itunes. I reinstalled itunes but it still does not show up. Does anyone know

  • Transport Groups: One Technical System targets two technical systems

    Hi guys, One question relating to transport groups. Is it possible to define for one technical system which belongs to one group, let's say DEV, two target Business Systems which belong to another group, let's say PRD? Meaning, Technical System XPTO

  • XP and Satellite A205-S5803

    Can I dump Vista and go back to XP and not have driver problems? The Toshiba site has mostly drivers for Vista only.