Solaris SMF configuration for Oracle CSS service

Below is the code to create oracle CSS service with solaris SMF, it will create smf service with instance name as "default" where as i need to change it to "css"
svc:/application/oracle/css:default
change service instance name to
svc:/application/oracle/css:css
i don't know about smf and xml, can somebody help me to change css service name ?
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
<!-- $Id: oracle-database-css.xml,v 1.4 2006/03/19 21:19:40 joomul Exp $
  The contents of this file are subject to the terms of the
  Common Development and Distribution License, Version 1.0 only
  (the "License").  You may not use this file except in compliance
  with the License.
  You can obtain a copy of the license at
   http://www.opensource.org/licenses/cddl1.php
  See the License for the specific language governing permissions and
  limitations under the License.
  Copyright 2005, 2006 Joost Mulders.
  This document contains a service definition for the
    Cluster Synchronization Services (CSS) process.
  This process is required for ASM and RAC. It should be started via smf(5)
  only for *non-RAC* systems. On RA clusters, this daemon is started via crs.
-->
<service_bundle type='manifest' name='oracle-database-css'>
<service
  name='application/oracle/css'
  type='service'
  version='1'>
  <create_default_instance enabled='false' />
  <!-- CSS depends on multi-user. That takes care of details like filesystem -->
  <dependency
   name='multi-user'
   grouping='require_all'
   restart_on='error'
   type='service'>
   <service_fmri
    value='svc:/milestone/multi-user:default' />
  </dependency>
  <exec_method
   type='method'
   name='start'
   exec='$ORACLE_HOME/bin/ocssd'
   timeout_seconds='30' >
   <method_context>
    <method_credential
     user='oracle'
     group='dba'
     supp_groups=':default'
     privileges=':default'
     limit_privileges=':default' />
    <method_environment>
     <envvar name='ORACLE_HOME' value='/u01/app/oracle/product/10.2.0.1/asm_1' />
    </method_environment>
   </method_context>
  </exec_method>
  <exec_method
   type='method'
   name='stop'
   exec=':kill'
   timeout_seconds='60' >
   <method_context>
    <method_credential
     user='oracle'
     group='dba'
     supp_groups=':default'
     privileges=':default'
     limit_privileges=':default' />
    <method_environment>
     <envvar name='ORACLE_HOME' value='/u01/app/oracle/product/10.2.0.1/asm_1' />
    </method_environment>
   </method_context>
  </exec_method>
  <!-- ocssd.bin does not detach -->
  <property_group name='startd' type='framework'>
   <propval name='duration' type='astring' value='child' />
   <propval name='modify_authorization' type='astring'
    value='solaris.smf.manage.oracle.database' />
  </property_group>
  <property_group name='general' type='framework'>
   <propval name='modify_authorization' type='astring'
    value='solaris.smf.manage.oracle.database' />
   <propval name='action_authorization' type='astring'
    value='solaris.smf.manage.oracle.database' />
  </property_group>
  <stability value='Unstable' />
  <template>
   <common_name>
    <loctext xml:lang='C'>
     Oracle Cluster Synchronization Services (CSS)
    </loctext>
   </common_name>
   <documentation>
    <doc_link
     name='Intro to Oracle Clusterware and Oracle Real Application Clusters'
     uri='http://download-east.oracle.com/docs'/>
   </documentation>
  </template>
</service>
</service_bundle>Edited by: sachinonnet on Jan 12, 2010 2:01 AM

Hi,
i got the solution as below
removed below line from service xml
<create_default_instance enabled='false' />
created another xml file for instance xml, where i specified the name of instance.
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
<!-- $Id: oracle-database-instance.xml,v 1.12 2006/03/12 19:51:20 joost Exp $
  The contents of this file are subject to the terms of the
  Common Development and Distribution License, Version 1.0 only
  (the "License").  You may not use this file except in compliance
  with the License.
  You can obtain a copy of the license at
   http://www.opensource.org/licenses/cddl1.php
  See the License for the specific language governing permissions and
  limitations under the License.
  Copyright 2005,2006 Joost Mulders.
  This document contains a service definition for an Oracle database instance.
  It contains some instance specific variables like ORACLE_SID and ORACLE_HOME.
  These must be filled in below.
  Other -generic database- service properties are inherited from the parent
  service, 'application/oracle/database'.
  A database instance can be brought under SMF control by:
   * running /lib/svc/method/ora-smf autoimport
*OR*
   * filling in the blanks (marked with '' or ':default') below
   * svccfg import <file>
-->
<service_bundle type='manifest' name='oracle-database-instance'>
<service
  name='application/oracle/database'
  type='service'
  version='1'>
  <dependency name='oracle-asm' grouping='require_all' restart_on='none' type='service'>
    <service_fmri value='svc:/application/oracle/database:ASM' />
  </dependency>
  <!-- The SMF instance name MUST match the database instance -->
  <instance name='PDB' enabled='false'>
   <method_context
    working_directory='/u01/app/oracle/product/10.2.0.1/db'
    project=':default'
    resource_pool=':default'>
    <!--
      The credentials of the user with which the method is executed.
    -->
    <method_credential
     user='oracle'
     group='dba'
     supp_groups=':default'
     privileges=':default'
     limit_privileges=':default'/>
    <method_environment>
     <envvar name='ORACLE_SID' value='pdb' />
     <envvar name='ORACLE_HOME' value='/u01/app/oracle/product/10.2.0.1/db' />
    </method_environment>
   </method_context>
  <!--
   A generic options property group for this database.
   This property group has currently only one variable: instance_type.
   instance_type describes the type of database instance. It's value can be
   RDBMS or ASM. RDBMS denotes a classic database instance and ASM is a storage
   manager instance.
  -->
  <property_group name='options' type='application'>
   <stability value='External' />
   <propval name='instance_type' type='astring' value='RDBMS' />
   <propval name='modify_authorization' type='astring'
    value='solaris.smf.manage.oracle.database' />
  </property_group>
  </instance>
</service>
</service_bundle>

Similar Messages

  • Error 1067 while starting oracle css service in XP

    Error 1067 while starting oracle css service in XP

    Hi all,
    I have installed Oracle10g in windows xp ...
    I am unable to connect from my application . On viewing the services, oracleCSService is not yet started eventhough it is automatic . While manually starting it
    its showing an error
    "Could not start the oracleCSService on Local Computer
    Error 1067: Process terminated Unexpectedly...."
    I hope somebody can help me on this !!
    Thanks

  • Internal disk configuration for oracle

    Hi experts
    I need some guidance for internal disk configuration for oracle
    requirements are for 2 node clustered VM on linux OS OEL
    the OS will be for RAC, OEM
    will RAID 5 be optimal setting
    this is not production env
    thanks

    912919 wrote:
    Hi experts
    I need some guidance for internal disk configuration for oracle
    requirements are for 2 node clustered VM on linux OS OEL
    the OS will be for RAC, OEM
    will RAID 5 be optimal settingFor most definition of "optimal" the answer is "NO"
    RAID+10 provides better performance.
    Handle:     912919
    Status Level:     Newbie
    Registered:     Feb 7, 2012
    Total Posts:     135
    Total Questions:     74 (46 unresolved)
    why do you waste time here when you rarely get your questions answered?

  • UNX configurations for MS Analysis Services is only through XMLA!!??

    In BOBJ4.0, I just Wanted to confirm if the UNX configurations for MS Analysis Services is only through XMLA.
    Is there any way BOBJ4.0 can be configured to use MSAS OLEDB for OLAP?
    One of our client does not want to go thru XMLA connectivity to their MSAS CUBES, this is possible thru Universe Design Tool but not with IDT.
    Can anyone please help on this?

    UNX - XMLA
    UNV - OLEDB
    those are the choices.

  • Patch number of Solaris 9 SPARC for Oracle 9.2.0.4 - 9.2.0.7

    Hello!
    Could anybody point me the right document with information about
    Solaris 9 patch version for Oracle 9.2.0.4 and 9.2.0.7.
    Server: FS PRIMEPOWER 250 SPARC64™ V
    Thanks,
    Viacheslav

    Hi,
    such information is only available on metalink, you need a valid support contract, resp. a CSI (Customer Support Identifier) .
    Werner

  • UNABLE TO CONFIGURE ODSM(oracle directorey service manager_

    Hi ,
    I am unable to configure ODSM with weblogic and getting the following error
    "ERROR while deploying the application ODSM
    cause:
    An internal operation has failed :weblogic.management.DeploymentException:[J2EE:160149]Error while processing library refrences ,unresolved application library refrences defined in weblogic-application.xml:[Extension adf.oracledomain.com)
    Thanks
    Giridhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Giri,
    Install the Java Required Files (JRF) in the Managed Server where you want to deploy your
    application to.
    NB: Java Required Files (JRF) consists of those components not included in the Oracle WebLogic
    Server installation and that provide common functionality for Oracle business applications and
    application frameworks. They include the ADF Runtime Libraries.
    Regards,
    Kal

  • Solaris 10 patches for Oracle Database 11gR2

    Hi,
    I downloaded Oracle Solaris 10 s/w from e-Delivery and got it installed. For Oracle Database 11gR2 I also need the followging patches:
    120754-06: SunOS 5.10_x86 libmtsk
    119961-05: SunOS 5.10_x86: Assembler
    119964-14: SunOS 5.10_x86 Shared library patch for C++_x86
    Though we have access to MyOracleSupport we can only download s/w patches using our support contract with Oracle and not OS patches.
    Is there any other way I can get these patches.
    Rgds,
    Thiru.

    Thiru,
    You won't find the patches in the patches/ directory on the DVD or the ISO image. Oracle integrates the patches directly into the packages, so there is no need to provide or install them separately.
    All patches have a patch number (e.g. 120754) and a revision (e.g. 06). A newer revision of a patch always contains all fixes of the previous revisions. So try to run "showrev -p | grep 120754" instead, and you'll see that patch 120754-08 is pre-installed. As revision 08 is newer/higher than 06, the patch requirement is satisfied.
    Hope that helps,
    mp.

  • Error starting Portal or Commerce Server when Configured for Oracle

    I've been attempting to configure Portal 4.0 to work with Oracle. I'm running Oracle
    8i. I carefully followed the instructions found in "Configuring WebLogic Portal for
    Oracle Databases". Specifically, I setup the tablespaces, connection pools and successfully
    run the scripts to populate the tables. I am confident the Oracle OCI driver is configured
    properly (have done this many times). However, after I make all of the necessary
    changes and launch the server, I receive the following error:
    Starting WebLogic Server ....
    <Jun 26, 2002 4:47:32 AM PDT> <Notice> <Management> <Loading configuration file .\config\wlcsDomain\config.xml
    ..> <Jun 26, 2002 4:47:39 AM PDT> <Emergency> <Server> <Unable to initialize the
    server: 'Fatal initialization exception
    Throwable: java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:62)
    at weblogic.security.SecurityService.initializeRealm(SecurityService.java:258)
    at weblogic.security.SecurityService.initialize(SecurityService.java:115)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:402)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    '>
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:62)
    at weblogic.security.SecurityService.initializeRealm(SecurityService.java:258)
    at weblogic.security.SecurityService.initialize(SecurityService.java:115)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:402)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    The startup appears to have trouble with the RDBMS security realm. I tried a) leaving
    the settings "as-is", configured for Cloudscape, or b) modified to point to my instance
    of Oracle (are their additional things I need to load in Oracle to support it using
    the RDBMS realm). Is there a way I can disable the security realm to at least get
    the server up-and-running (via the web.xml). I've installed and reinstalled many
    times, trying various combinations of things.
    Any help would be hugely appreciated!
    Thanks,
    jeff

    I finally found this bug in the release notes, i'm surprised one of the bea guys couldn't
    answer this....
    "Mike Friesen" <[email protected]> wrote:
    >
    I had the same type of problem with portal 4.0. Trying downloading the
    newest 7.0, I found it works much better.
    Mike
    "K C" <[email protected]> wrote in message news:[email protected]...
    I found this as well. However, i still am not able to run the portal afterconfiguring
    for oracle. While running create_all, i get many errors like "can binda
    LONG value
    only for insert into a LONG column"
    the table are being created, this appears to occur in the "insertingrequired bootstrap
    data" phase.
    thanks
    "Joshua Davies" <[email protected]> wrote:
    You probably followed the instructions too closely. I had the same
    problem,
    due to
    something that's not quite a "bug" in the installation instructions.Look
    back at
    the section "Update Settings for the RDBMS Security Realm" in thedeployment
    guide
    (http://edocs.bea.com/wlp/docs40/deploygd/oraclnew.htm#1039294).
    In the table in step 2, they show the URL on top, and the Driverclassname
    underneath
    it. HOWEVER... on the actual data screen, the Driver is on top and the
    URL is underneath
    it. If you're not being very very careful, it's easy to swap thesetwo
    values
    and put the URL in the Driver input box and the Driver in the URL input
    box. Make
    sure you haven't accidentally done this; if you have, you can stillchange
    this in
    the config.xml file (do a text search for an element RDBMSRealm withan
    "name" attribute
    of "wlcsRealm").
    Verify that it looks like this:
    <RDBMSRealm DatabaseDriver="weblogic.jdbc.oci.Driver"
    DatabaseURL="jdbc:weblogic:oracle"
    Name="wlcsRealm"
    and not this:
    <RDBMSRealm DatabaseDriver="jdbc:weblogic:oracle"
    DatabaseURL="weblogic.jdbc.oci.Driver"
    Name="wlcsRealm"
    Very subtle gotcha...
    "Jeff Davis" <[email protected]> wrote:
    I've been attempting to configure Portal 4.0 to work with Oracle. I'm
    running
    Oracle
    8i. I carefully followed the instructions found in "Configuring WebLogic
    Portal for
    Oracle Databases". Specifically, I setup the tablespaces, connectionpools
    and successfully
    run the scripts to populate the tables. I am confident the Oracle OCIdriver
    is configured
    properly (have done this many times). However, after I make all of thenecessary
    changes and launch the server, I receive the following error:
    Starting WebLogic Server ....
    <Jun 26, 2002 4:47:32 AM PDT> <Notice> <Management> <Loading
    configuration
    file .\config\wlcsDomain\config.xml
    ...> <Jun 26, 2002 4:47:39 AM PDT> <Emergency> <Server> <Unable toinitialize
    the
    server: 'Fatal initialization exception
    Throwable: java.lang.IllegalAccessError:Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError:Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:62)
    atweblogic.security.SecurityService.initializeRealm(SecurityService.java:258)
    atweblogic.security.SecurityService.initialize(SecurityService.java:115)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:402)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    '>
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError:Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:62)
    atweblogic.security.SecurityService.initializeRealm(SecurityService.java:258)
    atweblogic.security.SecurityService.initialize(SecurityService.java:115)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:402)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    The startup appears to have trouble with the RDBMS security realm. Itried
    a) leaving
    the settings "as-is", configured for Cloudscape, or b) modified to point
    to my instance
    of Oracle (are their additional things I need to load in Oracle tosupport
    it using
    the RDBMS realm). Is there a way I can disable the security realm toat
    least get
    the server up-and-running (via the web.xml). I've installed andreinstalled
    many
    times, trying various combinations of things.
    Any help would be hugely appreciated!
    Thanks,
    jeff

  • HRMS Analytics configuration for Oracle EBS

    Hi ,
    I have to configure HRMS Analytics for Oracle EBS(Referring Configuration Guide for OBIA 7.9.6.3) , I am new to OBIA :
    I just started working domain Values (csv files), I have few queries for the same:
    1. Is is necessary to Use the query mentioned in the OBIA Setup guide , to get the Domain Values. Can we use different query to extract the Domain Values ?
    What is the effect if query is changed ?
    2. Some csv are for 11i instance ,so does it mean , it is not required to configure those csv files for R12 ?
    Any help in this regard will be highly appreciated.
    Thanks,
    Razi

    Here are the answers to the questions:
    1. Is is necessary to Use the query mentioned in the OBIA Setup guide , to get the Domain Values. Can we use different query to extract the Domain Values ?
    What is the effect if query is changed ?
    A: Not necessairily. The query is there to help you gather the relevant data but this is a functional exercise. If a HR Functional person on your team can identify the relevant domains, events, etc, then you can populate it manually. The goal is to get the relevant EBS domain values and map to the BI requirements. The query is a fast way to get the list of the existing values from the EBS DB.
    2. Some csv are for 11i instance ,so does it mean , it is not required to configure those csv files for R12 ?
    A: If the COnfig Guide specifically has a section for R12 versus 11..then you need to follow for the version you are on. However, there are general "EBS" configurations that you need to do for both versions. Rule of thumb, if it doesnt specific the version, then it needs to be done for both.
    If helpful, pls mark correct or helpful

  • ODBC configure for oracle

    Hello expert,
    I have two configureation in configuration file for oracle database as follows:
    PRODDW.WORLD=
    (DESCRIPTION=
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=10.10.10.40)
    (PORT=1521)
    (CONNECT_DATA=
    (SERVICE_NAME=proddw)
    PRODDW=
    (DESCRIPTION=
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=10.10.10.40)
    (PORT=1521)
    (CONNECT_DATA=
    (SERVICE_NAME=proddw)
    I can see "PRODDW" in the ODBC, but PRODDW.WORLD seems exact same as PRODDW in the above. so please tell me what is PRODDW.WORLD? why they are same?

    918440 wrote:
    Hello expert,
    I have two configureation in configuration file for oracle database as follows:
    PRODDW.WORLD=
    (DESCRIPTION=
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=10.10.10.40)
    (PORT=1521)
    (CONNECT_DATA=
    (SERVICE_NAME=proddw)
    PRODDW=
    (DESCRIPTION=
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=10.10.10.40)
    (PORT=1521)
    (CONNECT_DATA=
    (SERVICE_NAME=proddw)
    I can see "PRODDW" in the ODBC, but PRODDW.WORLD seems exact same as PRODDW in the above. so please tell me what is PRODDW.WORLD? why they are same?ask the person who created the file.
    so me folks do silly & needless things?
    why are you bothered by seeing duplicate & redundant details?

  • Solaris system requirements for Oracle 9i

    Hi everyone,
    I want to get a Sun Sparc to use for Oracle 9i. Someone who can outline for the system requirement?
    Thanks in anticipation

    Ignatius,
    system requirements are described in Installation Guide (Pre-Installation Requirements).
    For example here: http://download-west.oracle.com/docs/html/A96167_01/pre.htm#sthref106

  • How to configure Solaris 10 IPMP for Oracle VDI 3.3.2

    Hi,
    Does anyone have an indication on how to configure Solaris 10 IPMP in a manner that supports Oracle VDI?
    We have setup two servers with 2 test addresses on physical and 1 logical for the hostname of the box, but when we configure VDI the VDI database does not come up on the 2nd box. We have also tried configuring IPMP without test addresses, but it doesn't make any difference - the DB still doesn't go into the up state after configuration on the 2nd server.
    Solaris 10 u9 with patches
    Two physical NICs on management VLAN via 2 switches
    Two physical NIcs on VDI VLAN via 2 switches
    VDI 3.3.2
    All hostnames are in DNS and resolve for short name, FQDN and also reverse IP lookup
    The is a proposal pdf on Oracle website that mentions IPMP, so someone has done it. Just could do with a hint on how it was done so that it works.
    ( http://www.oracle.com/us/technologies/virtualization/vdi-design-proposal-1401195.pdf )
    Thanks
    Paul

    OK, updating this with what was causing the issue.
    Not an IPMP problem this was a DNS problem. The VDI servers have access to two DNS environments, so had a DNS search path that had the domain where the VMs where going to go and another for management of the box with two DNS servers listed in /etc/resolv.conf.
    We configured VDI using the FQDN for the management DNS, however the vda-config script takes the hostname of the box adds the first DNS domain from /etc/resolv.conf search entry and configures using (it seams to ignore what you put into the vda-config). When the config script comes to configuring MySQL because the names didn't match (FQDN it created by adding hostname to the 1st entry in DNS search path & FQDN that you put into vda-config command), it decides that it is configuring a "Client MySQL" instance rather than a "Slave MySQL" instance, which means the VDA DB never comes up in the out of vda-center status.
    So the fix is to:
    1) configure IPMP without test addresses (so traffic comes out of the correct IP and can be reverse looked up in DNS by the other host)
    2) if you have multiple DNS search entries, configure VDI using the first entry in your search path as its FQDN
    Paul

  • The LDAP configuration for Oracle Service Registry 11g(OSR 11.1.1.2.0)

    Hi All,
    Please teach about user management in Oracle Service Registry(OSR).
    We want to manage all users in LDAP(OID).
    Questions
    Q1) How can we manage the user in OID?
    Q2) OSR default user(admin) will not be displayed on the security realm in WebLogic.
    Can we configure security realm in WebLogic?
    Regards & Thanks
    yoshida.

    Refer to this doc http://download.oracle.com/otndocs/tech/soa/OSR103ProductDocumention.pdf
    Section 6. External Accounts Integration

  • Configuring Oracle Net Services for Oracle Heterogeneous Services

    In the Oracle 9i Net Services Administrators Guide, it states that 3 parameters need to be included in the listener.ora in order to enable Heterogenous services. Can someone clarify what the Program Name should be set to? I'm not quite sure what is meant by agent executable. I'm trying to create a database link to and MS Access mdb DSn if that makes a difference.
    Cheers

    Richard,
    The program is hsodbc. The listener entry should be something like this:
    (sid_desc =
    (sid_name = gc4excel)
    (Oracle_home= c:\oracle\ora92)
    (program = hsodbc)
    The tnsnames entry should be
    GC4excel =
    (description =
    (address = (protocol = tcp) (host = localhost) (port = 1521))
    (connect_data = ( sid = gc4excel))
    (hs=ok)
    For more information on setting up Generic Connectivity please refer to the Heterogeneous Connectivity Administrator's Guide.
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a96544/gencon.htm#1656

  • Error while "Enabling Security for Oracle Management Service"

    Hi,
    I have installed OEM 10GR1 on Solaris 9. I am using 9.2.0 database for repository.
    My first installation of OEM and agent went smoothly, and everything was working fine.
    Then, I tried to follow configurating security for Grid Control Framework. I got following error:
    /oracle/app/oracle/product/10gEM>cd bin
    /oracle/app/oracle/product/10gEM/bin>./emctl secure oms
    Oracle Enterprise Manager 10g Release 10.1.0.3.0.
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.
    Enter Enterprise Manager Root Password :
    Enter Agent Registration password :
    Enter a Hostname for this OMS :
    Checking Repository... Done.
    Checking Repository for an existing Enterprise Manager Root Key... Done.
    Generating Enterprise Manager Root Key (this takes a minute)... Done.
    Fetching Root Certificate from the Repository... Done.
    Generating Registration Password Verifier in the Repository... Done.
    Generating Oracle Wallet Password for Enterprise Manager OMS... Done.
    Generating Oracle Wallet for Enterprise Manager OMS...Missing /oracle/app/oracle/product/10gEM/sysman/wallets/oms.uxtora1/ewallet.p12
    :/oracle/app/oracle/product/10gEM/bin>
    Please help.

    Thanks for response. I had temp space full issue with repository database. After bouncing database, the temp tablespace became empty, and the secure operation went smooth.

Maybe you are looking for

  • Reducing PDF form file size

    When creating the dynamic PDF form in LiveCycle Designer ES 8.2.x, the file size is < 200K. When opening in Acrobat 9 Pro and extending to Acrobat Reader, the file size > 1.2MB. Is there any way to reduce the file size? Thanks! -JoeF

  • Every time I update my Phone a warning appears tha...

    I TRY TO UPDATE MY PHONE (NOKIA 500 into nokia belle then suddenly a warning appears that "Connection to the phone was lost" .! "Connection to the phone was lost" . Follow these steps to help reconnect your device: 1. Remove USB cable from your devic

  • In Answers Chart Images can't be displayed

    Installed BIEE 10.1.3.3.2, run demo, in Answers the chart images can not be displayed.

  • App-V Refreshing Apps without Logoff/Logon or Client UI

    Hi I have a customer who wants the following functionality: - User gets added to AD group - Client refresh happens without having to logoff/on or initiate manual "Update" on the Client UI.  I understand the task that initiates the refresh is containe

  • Fall-back bridging

    Can anyone please explain to me brief what fall-back bridging does, and where it is applicable.