How can I install ASM instance in another oracle home?

Hello:
I have installed Oracle 10 g R2 software at a oracle home,and have create a database with an instance named ocafs withou ASM,now I want to install ASM instance and create a new database using ASM,how can I insure that the ASM is installed in it's own oracle home by using dbca or some other tools? And can I specify the instance name of the ASM?
Thank you very much!

Use the oui.exe (Universal Installer), it checks for existing homes. Based on what you want to do (create a new db with ASM), OUI is smart in that in will not let you create it in an existing home. It will prompt for a different location if you try to use an existing home.
Good luck

Similar Messages

  • How can i install my itunes on another computer

    How can I install my itunes from one old laptop to another. my old one is about to give out on me????

    The following article(s) may help you.
    Moving your iTunes library to a new computer

  • How to create an asm instance manaually? oracle 11gr2.

    env: oracle 11gr2 os: hpux or aix single machine , not rac.
    question:how to create an asm instance manaually?? diskgroup,listener,db ,they can be resigistered to crs??
    can anyone give me document about it?

    Hi,
    This is a simple answer:
    Automatic Storage Management (ASM)
    ASM was a new storage option introduced with Oracle Database 10gR1 that provides the services of a filesystem, logical volume manager, and software RAID in a platform-independent manner. ASM can stripe and mirror your disks, allow disks to be added or removed while the database is under load, and automatically balance I/O to remove "hot spots." It also supports direct and asynchronous I/O and implements the Oracle Data Manager API (simplified I/O system call interface) introduced in Oracle9i.
    ASM is not a general-purpose filesystem and can be used only for Oracle data files, redo logs, and control files. Files in ASM can be created and named automatically by the database (by use of the Oracle Managed Files feature) or manually by the DBA. Because the files stored in ASM are not accessible to the operating system, the only way to perform backup and recovery operations on databases that use ASM files is through Recovery Manager (RMAN).
    ASM is implemented as a separate Oracle instance that must be up if other databases are to be able to access it. Memory requirements for ASM are light: only 64 MB for most systems.
    Installing ASM
    On Linux platforms, ASM can use raw devices or devices managed via the ASMLib interface. Oracle recommends ASMLib over raw devices for ease-of-use and performance reasons. ASMLib 2.0 is available for free download from OTN. This section walks through the process of configuring a simple ASM instance by using ASMLib 2.0 and building a database that uses ASM for disk storage.
    Determine Which Version of ASMLib You Need
    ASMLib 2.0 is delivered as a set of three Linux packages:
    * oracleasmlib-2.0 - the ASM libraries
    * oracleasm-support-2.0 - utilities needed to administer ASMLib
    * oracleasm - a kernel module for the ASM library
    Each Linux distribution has its own set of ASMLib 2.0 packages, and within each distribution, each kernel version has a corresponding oracleasm package. The following paragraphs describe how to determine which set of packages you need.
    First, determine which kernel you are using by logging in as root and running the following command:
    uname -rm
    Ex:
    # uname -rm
    2.6.9-22.ELsmp i686
    The example shows that this is a 2.6.9-22 kernel for an SMP (multiprocessor) box using Intel i686 CPUs.
    Use this information to find the correct ASMLib packages on OTN:
    1. Point your Web browser to http://www.oracle.com/technology/tech/linux/asmlib/index.html
    2. Select the link for your version of Linux.
    3. Download the oracleasmlib and oracleasm-support packages for your version of Linux
    4. Download the oracleasm package corresponding to your kernel. In the example above, the oracleasm-2.6.9-22.ELsmp-2.0.0-1.i686.rpm package was used.
    Next, install the packages by executing the following command as root:
    rpm -Uvh oracleasm-kernel_version-asmlib_version.cpu_type.rpm \
    oracleasmlib-asmlib_version.cpu_type.rpm \
    oracleasm-support-asmlib_version.cpu_type.rpm
    Ex:
    # rpm -Uvh \
    > oracleasm-2.6.9-22.ELsmp-2.0.0-1.i686.rpm \
    > oracleasmlib-2.0.1-1.i386.rpm \
    > oracleasm-support-2.0.1-1.i386.rpm
    Preparing... ########################################### [100%]
    1:oracleasm-support ########################################### [ 33%]
    2:oracleasm-2.6.9-22.ELsm########################################### [ 67%]
    3:oracleasmlib ########################################### [100%]
    Configuring ASMLib
    Before using ASMLib, you must run a configuration script to prepare the driver. Run the following command as root, and answer the prompts as shown in the example below.
    # /etc/init.d/oracleasm configure
    Configuring the Oracle ASM library driver.
    This will configure the on-boot properties of the Oracle ASM library
    driver. The following questions will determine whether the driver is
    loaded on boot and what permissions it will have. The current values
    will be shown in brackets ('[]'). Hitting <ENTER> without typing an
    answer will keep that current value. Ctrl-C will abort.
    Default user to own the driver interface []: oracle
    Default group to own the driver interface []: dba
    Start Oracle ASM library driver on boot (y/n) [n]: y
    Fix permissions of Oracle ASM disks on boot (y/n) [y]: y
    Writing Oracle ASM library driver configuration: [  OK  ]
    Creating /dev/oracleasm mount point: [  OK  ]
    Loading module "oracleasm": [  OK  ]
    Mounting ASMlib driver filesystem: [  OK  ]
    Scanning system for ASM disks: [  OK  ]
    Next you tell the ASM driver which disks you want it to use. Oracle recommends that each disk contain a single partition for the entire disk. See Partitioning the Disks at the beginning of this section for an example of creating disk partitions.
    You mark disks for use by ASMLib by running the following command as root:
    /etc/init.d/oracleasm createdisk DISK_NAME device_name
    Tip: Enter the DISK_NAME in UPPERCASE letters.
    Ex:
    # /etc/init.d/oracleasm createdisk VOL1 /dev/sdb1
    Marking disk "/dev/sdb1" as an ASM disk: [  OK  ]
    # /etc/init.d/oracleasm createdisk VOL1 /dev/sdc1
    Marking disk "/dev/sdc1" as an ASM disk: [  OK  ]
    # /etc/init.d/oracleasm createdisk VOL1 /dev/sdd1
    Marking disk "/dev/sdd1" as an ASM disk: [  OK  ]
    Verify that ASMLib has marked the disks:
    # /etc/init.d/oracleasm listdisks
    VOL1
    VOL2
    VOL3
    Create the ASM Instance
    ASM runs as a separate Oracle instance which can be created and configured using the Oracle Universal Installer. Now that ASMLib is installed and the disks are marked for use, you can create an ASM instance.
    Log in as oracle and start runInstaller:
    $ ./runInstaller
    1. Select Installation Method
    * Select Advanced Installation
    * Click on Next
    2. Specify Inventory Directory and Credentials
    * Inventory Directory: /u01/app/oracle/oraInventory
    * Operating System group name: oinstall
    * Click on Next
    3. Select Installation Type
    * Select Enterprise Edition
    * Click on Next
    4. Specify Home Details
    * Name: OraDB10gASM
    * Path: /u01/app/oracle/product/10.2.0/asm
    Note:Oracle recommends using a different ORACLE_HOME for ASM than the ORACLE_HOME used for the database for ease of administration.
    * Click on Next
    5. Product-specific Prerequisite Checks
    * If you've been following the steps in this guide, all the checks should pass without difficulty. If one or more checks fail, correct the problem before proceeding.
    * Click on Next
    6. Select Configuration Option
    * Select Configure Automatic Storage Management (ASM)
    * Enter the ASM SYS password and confirm
    * Click on Next
    7. Configure Automatic Storage Management
    * Disk Group Name: DATA
    * Redundancy
    - High mirrors data twice.
    - Normal mirrors data once. This is the default.
    - External does not mirror data within ASM. This is typically used if an external RAID array is providing redundancy.
    * Add Disks
    The disks you configured for use with ASMLib are listed as Candidate Disks. Select each disk you wish to include in the disk group.
    * Click on Next
    8. Summary
    * A summary of the products being installed is presented.
    * Click on Install.
    9. Execute Configuration Scripts
    * At the end of the installation, a pop up window will appear indicating scripts that need to be run as root. Login as root and run the indicated scripts.
    * Click on OK when finished.
    10. Configuration Assistants
    * The Oracle Net, Oracle Database, and iSQL*Plus configuration assistants will run automatically
    11. End of Installation
    * Make note of the URLs presented in the summary, and click on Exit when ready.
    12. Congratulations! Your new Oracle ASM Instance is up and ready for use.
    Kind regards
    Mohamed

  • How Can I Install Creative Cloud to Another Location?

    I never install anything to C:\Program Files\ and I don't want to start now. How can I do a custom install to my preferred location?
    While I am here, downloading Photoshop, After Effects and Audition has used up nearly 30% of my monthly bandwidth. Why isn't the Install Manager smart enough to know that I have a 64 bit OS and only install the 64 bit versions of the CS applications? It would save a lot of bandwidth and disc space (I only have a 128Gb SSD).

    Change the location in the Application Manager prefs. Some components will however still be installed on your system root drive. 32bit versions are installed to provide compatibility with certasin legacy features like printer drivers, scanners and older plug-ins that may not come with 64bit versions. That aside, the video apps are 64bit only, anyway. The rest is between you and your Internet provider.
    Mylenium

  • LOST MY SOFTWARE FOR INSTALLATION HP PHOTOSMART PLUS, HOW CAN I INSTALL THE PRINTER IN ANOTHER MAC?

    HELLO
    I ALLREADY HAVE A HP PHOTOSMART PLUS PRINTER, BUT I LOST MY SOFTWARE INSTALLATION CD. I JUST ACCUIRED ANOTHER MAC, AND WOULD LIKE TO INSTALL THE PRINTER IN THIS COMPUTER.
    WHAT CAN I DO TO INSTALL IT?
    KIND REGARDS,
    JAIME
    This question was solved.
    View Solution.

    Hi Jaime,
    What you can do is go to the Support and Drivers Area of the Hp website by following the link http://www8.hp.com/us/en/support-drivers.html
    - just type in the Version of of the Photosmart you have, and then follow that by the Version of the MAC OS that you are running
    - you will want to do this from the computer you are wanting to install the printer on.
    simply download the Driver and Install and that Should Assist you in getting that printer set up on that computer as if it was coming from the Disk itself
    I am an HP employee.
    __ if this Solution has helped Please Mark as Resolved and feel free to Provide a Kudos__

  • How can I install flash player on another machine?

    Hi
    I would like download and install flash player on my
    production pc for the use of flash web development, but that
    machine does not have an internet connection. I was wondering if
    there is anywhere I can get an actual downloadable setup file and
    transfer it to that machine via media rather than connecting it to
    the internet?
    Hope you can help
    Kind Regards
    Gary

    Hi eghall,
    Flash Player for Android is no longer available. For more information, see here:
    http://blogs.adobe.com/flashplayer/2012/06/flash-player-and-android-up date.html
    Android users can still download and install Flash Player from the Archived Flash Player Versions page on the Adobe website.
    Please refer : http://forums.adobe.com/thread/1061194
    Please see this page for a list of all certified devices:Flash Player Certified Devices

  • How can I install another 4G Ram to my MBP (i.e. 8G Ram in total) and how much is it?

    How can I install another 4G Ram to my MBP (i.e. 8G Ram in total) and how much is it?

    If your MBP is the 2012 model that you have listed, then you can go up to 16GB.
    You can get the ram from OWC http://eshop.macsales.com/shop/memory/Apple_MacBook_MacBook_Pro/Upgrade/DDR3_160 0MHz_SDRAM

  • How can I install Premiere in another computer

    How can I install Premiere in another computer, if my main computer does not work.  The service is paying monthly. 

    As far as I have understood it you can install PP on as many computers as you like, but only two can be active at the same time. So if you have installed it on just one computer you should have no problems installing it on a second one. If you want to install it on a third, you would have to deactivate one of the other previous installations to get it to run.

  • How can i install another software with yum? No repo!

    Hi
    How can i install another software with yum? I can't find any softwarerepo. */etc/yum.repos.d/* is empty. Sorry I do not understand this. And update also not working.
    And the other thing is the Managementtool: https://myhost:5989_
    The website can not process the request. HTTP Error 501 (Not Implemented): The server does not have the necessary functions to process the request.
    What must i do that this things work?
    Thanks and Greetings
    tux007

    909396 wrote:
    How can i install another software with yum? I can't find any softwarerepo. */etc/yum.repos.d/* is empty. Sorry I do not understand this. And update also not working. If you don't have Oracle Linux support, you can use our public Yum repository. Instructions for setting this up can be found at http://public-yum.oracle.com.
    If you do have Oracle Support, follow the instructions at http://linux.oracle.com to register your server with the Unbreakable Linux Network for updates.

  • How can i install ios 8 downloaded from another source through flash drive?

    how can i install ios 8 downloaded from another source through flash drive?

    You can not download from a flash drive.  You can do over the air, or you can connect your iPhone to your computer and download iOS 8.1 via iTunes.

  • How can I install a second version without affecting the first?

    How can I install a second version of FF without affecting my original installation?

    You can install multiple Firefox versions via a custom install in different installation folders and only use the older Firefox version when you really need it.<br />
    Do a custom install and install each version in its own program folder to use multiple Firefox versions.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/
    Make sure not to start Firefox after the installation has finished.<br />
    Create a new profile exclusively for each Firefox version.<br />
    Create a desktop shortcut with -P "profile" appended to the target to launch each Firefox version with its own profile.
    See also:
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    Use the -no-remote command line switch to open another Firefox instance with its own profile and to run different Firefox instances simultaneously.
    * http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • How can I remove asm and ocr installation in AIX?

    Hi,
    I try to install single instance with using ASM in AIX.
    But I did not make successfully.
    Now I want to remove ASM and OCR installation then
    I will plan to make new clear installation.
    How can I remove asm and ocr ??
    Or How can I control my removing is fully correct ?

    1) ASM Instance Clean-Up Procedures
    Stop all of the databases that use the ASM instance that is running from the Oracle home that is on the node that you are deleting.
    On the node that you are deleting, if this is the Oracle home which from which the ASM instance runs, then remove the ASM configuration by completing the following steps. Run the command srvctl stop asm -n node_name for all of the nodes on which this Oracle home exists. Run the command srvctl remove asm -n node for all nodes on which this Oracle home exists. If there are databases on this node that use ASM, then use DBCA Disk Group Management to create an ASM instance on one of the existing Oracle homes on the node, restart the databases if you stopped them.
    If you are using a cluster file system for your ASM Oracle home, then ensure that your local node has the $ORACLE_BASE and $ORACLE_HOME environment variables set correctly. Run the following commands from a node other than the node that you are deleting, where node_number is the node number of the node that you are deleting:
    rm -r $ORACLE_BASE/admin/+ASMnode_number
    rm -f $ORACLE_HOME/dbs/*ASMnode_number
    If you are not using a cluster file system for your ASM Oracle home, then run the rm or delete commands mentioned in the previous step on each node on which the Oracle home exists.
    2) Deleting an Oracle Clusterware Home Using OUI in Silent Mode
    !!! Oracle recommends that you back up your voting disk and OCR files after you complete the node deletion process.
    If you ran the Oracle Interface Configuration Tool (OIFCFG) with the -global flag during the installation, then skip this step. Otherwise, from a node that is going to remain in your cluster, from the CRS_home/bin directory, run the following command where node2 is the name of the node that you are deleting:
    ./oifcfg delif –node node2
    Obtain the remote port number, which you will use in the next step, using the following command from the CRS_home/opmn/conf directory:
    cat ons.config
    From CRS_home/bin on a node that is going to remain in the cluster, run the Oracle Notification Service Utility (RACGONS) as in the following example where remote_port is the ONS remote port number that you obtained in the previous step and node2 is the name of the node that you are deleting:
    ./racgons remove_config node2:remote_port
    On the node to be deleted, run rootdelete.sh as the root user from the CRS_home/install directory. If you are deleting more than one node, then perform this step on all of the other nodes that you are deleting.
    From any node that you are not deleting, run the following command from the CRS_home/install directory as the root user where node2,node2-number represents the node and the node number that you want to delete:
    ./rootdeletenode.sh node2,node2-number
    If necessary, identify the node number using the following command on the node that you are deleting:
    CRS_home/bin/olsnodes -n
    Perform this step only if your are using a non-shared Oracle home. On the node or nodes to be deleted, run the following command from the CRS_home/oui/bin directory where node_to_be_deleted is the name of the node that you are deleting:
    ./runInstaller -updateNodeList ORACLE_HOME=CRS_home
    "CLUSTER_NODES={node_to_be_deleted}"
    CRS=TRUE -local
    Deinstall the Oracle Clusterware home from the node that you are deleting using OUI as follows by running the following command from the Oracle_home/oui/bin directory, where CRS_home is the name defined for the Oracle Clusterware home:
    ./runInstaller -deinstall –silent "REMOVE_HOMES={CRS_home}"
    Perform step 9 from the previous section about using OUI interactively under the heading "Deleting an Oracle Clusterware Home Using OUI in Interactive Mode".

  • How can I install Snow Leopard on my 15" MacBook Pro without using its DVD drive?

    How can I install Snow Leopard on my 15" MacBook Pro without using its DVD drive?

    I'm assuming your dvd drive is broken? if you have a thumb drive large enough (8GB or better), you can use another computer to make a bootable image from the install dvd to the thumb drive. then you can install from the the thumb drive.
    Ihttp://www.maciverse.com/install-os-x-snow-leopard-from-usb-flash-drive.html
    that's a step by step walkthrough.

  • How can i install oracle 10g on linux cluster

    Dear all:
    please advice How can i install oracle 10g on linux cluster service ..
    thanks ,,

    Without RAC, you can only have one instance manage the database. One instance = one set of processes communicating via IPC.
    Unless you know of a way to have processes use memory-based IPC across nodes, you need to pick a node and install & run the database software on that node.

  • How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?

    How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?
    "Firefox.exe_path" -ms OPTIONS ??
    Thanks.

    '''Is there a way to download FF to a USB from another computer and install it from that USB on my PC? '''
    You basically answered your own question. If you have access to another computer just go download the appropriate language and OS version of Firefox 5.0 from http://www.mozilla.com/en-US/firefox/all.html and put it on you usb drive and then go and install it onto you pc.

Maybe you are looking for

  • Any way to export to specified file size?

    Is there any way to export images so they are sized to fit within certain dimensions AND a specified file size? Similar to 'image processor' in Bridge/CS3 or the older Doc Brown's image processor. Example: (processing images for web use) I want to ex

  • Unknown Publisher

    I have been trying to download itunes and it comes up with an unknown publisher message that will not let me use the program...i have turned off all firewalls and virus protection and it wont do anything...it is really frustraiting for the fact that

  • After 6.1.2 update apps not working

    After updating my iPhone with 6.1.2, all the apps that I had downloaded from app store have stopped working. Further app store is also not responding. Please help. All other pre installed apps that comes with Iphone are working fine.

  • Simple mappings with a SYSDATE and  a sequence

    Hi, I've got some promblems with a mapping. I'm trying to put only the nextval of a sequence and the SYSDATE using a mapping trasformation. Apparently it's simple and the validation is done succesfully, but when I generate the code it doesn't work, '

  • Using Logic Pro9 w/FCE

    How can I easily move in and out of LP to FCE. I can move into Logic ok, but when I move Back to FCE things like the audio don't sink or work at all?