ASM installation on RHEL 6.4 in Amazon EC2

I thought I'd perform an installation of 12cR1 to do a little testing. So I launched a new instance in Amazon EC2 and picked an AMI for 64-bit RHEL 6.4.
All started smoothly, but I've got stuck preparing a disk for ASM.
My first plan was to install ASMLIB. I see from the documentation that I need kmod-oracleasm (kmod-oracleasm-2.0.6.rh1-2.el6.x86_64.rpm), and that this is in the RHEL supplementary channel.
$ yum repolist all
Loaded plugins: amazon-id, refresh-packagekit, rhui-lb, security
repo id                                            repo name                                                          status
rhel-source                                        Red Hat Enterprise Linux 6Server - x86_64 - Source                 disabled
rhel-source-beta                                   Red Hat Enterprise Linux 6Server Beta - x86_64 - Source            disabled
rhui-REGION-client-config-server-6                 Red Hat Update Infrastructure 2.0 Client Configuration Server 6    enabled:      3
rhui-REGION-rhel-server-releases                   Red Hat Enterprise Linux Server 6 (RPMs)                           enabled: 10,994
rhui-REGION-rhel-server-releases-optional          Red Hat Enterprise Linux Server 6 Optional (RPMs)                  enabled:  6,250
rhui-REGION-rhel-server-releases-optional-source   Red Hat Enterprise Linux Server 6 Optional (SRPMs)                 disabled
rhui-REGION-rhel-server-releases-source            Red Hat Enterprise Linux Server 6 (SRPMs)                          disabled
repolist: 17,247
$ rhn-channel --add --channel=rhel-x86_64-server-supplementary-6
Username:
^C
Does Amazon EC2 provide the RHEL supplementary channel, and if so what credentials do I need to provide? Otherwise I guess I would need my own RHN subscription, which seems expensive for a self-learning instance.
So my second plan was to avoid ASMLIB and implement udev rules.
I created a 64GiB volume and attached it to the instance as /dev/sdh. On the instance it appears as /dev/xvdl:
$ fdisk -l /dev/xvdl
Disk /dev/xvdl: 68.7 GB, 68719476736 bytes
255 heads, 63 sectors/track, 8354 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf4c9fedb
    Device Boot      Start         End      Blocks   Id  System
/dev/xvdl1               1        8354    67103473+  83  Linux
$ sudo scsi_id -g -u -d /dev/xvdl
$
So scsi_id doesn't return a value to use in the udev rule. I've found references to this which suggest setting disk.EnableUUID. Is this option available in Amazon EC2 at all? Or is there an alternative way of getting a UUID for the disk?
Any help with these questions, or suggestions for alternative solutions, would be much appreciated.
Thanks
Mike

Did you try this command ?
~]# blkid
/dev/vda1: UUID="7fa9c421-0054-4555-b0ca-b470a97a3d84" TYPE="ext4"
/dev/vda2: UUID="7IvYzk-TnnK-oPjf-ipdD-cofz-DXaJ-gPdgBW" TYPE="LVM2_member"
/dev/mapper/vg_kvm-lv_root: UUID="a07b967c-71a0-4925-ab02-aebcad2ae824" TYPE="ext4"
/dev/mapper/vg_kvm-lv_swap: UUID="d7ef54ca-9c41-4de4-ac1b-4193b0c1ddb6" TYPE="swap"
https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s2-sysinfo-filesyste…

Similar Messages

  • Step by Step 10g ASM Installation on Linux

    Hello,
    Can any body provide me link for step by step 10g ASM Installation on linux (i.e from disk partitioning to final configuration). I searched on GooGle but didn't find ASM alone, though there were many step by step for RAC environment. I want to first learn ASM alone. Please help me as I'm first time learning ASM.
    Looking for Kind reply
    Regards,
    Abbasi

    Abbasi wrote:
    Hello,
    Can any body provide me link for step by step 10g ASM Installation on linux (i.e from disk partitioning to final configuration). I searched on GooGle but didn't find ASM alone, though there were many step by step for RAC environment. I want to first learn ASM alone. Please help me as I'm first time learning ASM.
    Looking for Kind reply
    Regards,
    AbbasiHi Abbasi,
    It would be better if let me know version of Linux, how you plan to use the disk (direct or UDEV), RAC or Single instance.
    Anyway, I'll assume you've using OEL/RHEL 5, UDEV for Single Instance (Oracle 10g installed) and only one disk (/dev/asm_disk1) configured for testing purpose.
    Creating ASM instance on Linux (Single Instance) using DBCA
    1. Add disk to Linux server
    2. Configure UDEV for the device. E.g /dev/sdb -> /dev/asm_disk1 //check Oracle documentation for configure UDEV on RHEL/OEL 5. You can directly use /dev/sdc for testing purpose.
    3. Change the owner of the disk. e.g. chown oracle:oinstall /dev/asm_disk1
    4. As root user, run Oracle CSS script. The Cluster Synchronization Services (CSS) daemon provides cluster services for ASM, communication between the ASM and database instances, and other essential services
    # $ORACLE_HOME/bin/localconfig add
    5. As oracle user, run DBCA (X11 needed)
    $ dbca
    6. Select the "Configure Automatic Storage Management" option, then click the "Next" Button.
    7. Enter a password for the ASM instance, then click the "Next" button.
    8. On the confirmation screen, click the "OK" button to create the ASM instance
    9. Once the ASM instance is created, you are presented with the "ASM Disk Groups" screen. Click the "Create New" button.
    10. On the "Create Disk Group" screen, enter Disk Group Name of e.g. "DATA" and select the required level of redundancy.
    •     External - ASM does not mirror the files. This option should only be used if your disks are already protected by some form of redundancy, like RAID.
    •     Normal - ASM performs two-way mirroring of all files.
    •     High - ASM performs three-way mirroring of all files.
    11. If you didn't find any disk, click "Change Disk Discovery Path..." and enter "/dev/asm_disk1"
    12. Select "External" for redundancy, tick the disk (/dev/asm_disk1) and click "OK" button.
    13. On the "ASM Disk Groups" screen. Click the "Finish" button.
    To access the ASM instance :
    1. As oracle user, export the ORACLE_SID
    $ export ORACLE_SID=+ASM
    2. sqlplus "/as sysdba"
    3. SQL> select name, total_mb, free_mb from v$asm_diskgroup;
    SQL> select name, path, header_status from v$asm_disk;
    To access the ASM command line utility:
    1. As oracle user, export the ORACLE_SID
    $ export ORACLE_SID=+ASM
    2. Enter the asmcmd command
    $ asmcmd
    You also can refer to :
    <a class="jive-link-external" href="http://www.idevelopment.info/data/Oracle/DBA_tips/Automatic_Storage_Management/ASM_10.shtml">http://www.idevelopment.info/data/Oracle/DBA_tips/Automatic_Storage_Management/ASM_10.shtml</a>
    <a class="jive-link-external" href="http://forums.oracle.com/forums/thread.jspa?threadID=1102203&tstart=1">how to create an asm instance manaually? oracle 11gr2.
    Regards,
    Hafiz Abdullah

  • 11.5.10 installation on RHEL as 4.0

    Hi,
    Please see if all the steps have been maintained for installation on RHEL as 4.0
    Oracle Applications 11.5.10 - Installation Update Notes for Linux x86, Solaris SPARC, MS Windows, HP-UX PA-RISC, HP-Tru64, IBM AIX - B13590-01 [ID 287453.1]
    OS: Red hat Enterprise Linux AS 4.0
    Required Packages and Patches
    Legacy Software Development package and X Software Development package
    Note: Select these packages from the Package Group Selection screen. If the operating system is already installed, use System Settings > Add/Remove Applications to install these two packages.
    The following components will be installed automatically:
    compat-db-4.1.25-9
    compat-gcc-32-3.2.3-47.3
    compat-gcc-32-c++-3.2.3-47.3
    compat-oracle-rhel4-1.0-5
    compat-libcwait-2.0-2
    compat-libgcc-296-2.96-132.7.2
    compat-libstdc++-296-2.96-132.7.2
    compat-libstdc++-33-3.2.3-47.3
    xorg-x11-deprecated-libs-devel-6.8.1-23.EL
    xorg-x11-deprecated-libs-6.8.1-23.EL
    The following required component must be installed manually:
    openmotif-2.1.30-x
    Note: For information on downloading the openmotif component, see the instructions at the following URL:https://rhn.redhat.com/errata/RHSA-2005-412.html
    Net Service Listeners in Multi-user Installations
    To give all users in a multi-user installations write privileges to /tmp/.oracle:
    $ chmod 777 /tmp/.oracle
    All Linux x86 and Linux x86-64 (AMD64/EM64T) Operating Systems
    Kernel Requirements
    Red Hat Enterprise Linux AS/ES 4.0 2.6.9-5.EL To determine distribution and version, enter: $ uname -r
    glibc Requirements
    Red Hat Enterprise Linux AS/ES 4.0 2.3.4-2 To determine installation status, enter: $ rpm -q glibc
    Domain Name System (DNS) Resolver Parameters
    Two Domain Name System (DNS) resolver parameters (timeout and attempts) are set by default to low values when the operating system is installed. These low values may cause attempted network connections to an Oracle database to fail. If this happens, add or update the following entries to these minimum settings in the /etc/resolv.conf file on each server node:
    options attempts:5
    options timeout:15
    Red Hat Enterprise Linux AS/ES 3.0 and 4.0 and SUSE Linux Enterprise Server 8 and 9
    Verifying Host Names
    Use the following to verify host name settings:
    For Red Hat Enterprise Linux AS/ES 3.4 and 4.0:
    Verify that the /etc/hosts file is formatted as follows:
    127.0.0.1 localhost.localdomain
    <ip_address> <node_name>.<domain_name>
    Verify that the /etc/sysconfig/network file is formatted as follows:
    HOSTNAME=<node_name>.<domain_name>
    If the /etc/sysconfig/networking/profiles/default/network file exists, remove it.
    If you changed any files in the previous steps, restart the system.
    Modifying the Number of Open File Descriptors
    Open the /etc/security/limits.conf file and change the existing values for "hard" and "soft" parameters as follows. Restart the system after making changes.
    For Red Hat Enterprise Linux AS/ES 3.0, 4.0, and SUSE Linux Enterprise Server 9:
    hard nofile 65535
    soft nofile 4096
    Modifying Port Range Values
    Open the /etc/sysctl.conf file and change the value of net.ipv4.ip_local_port_range as follows. Restart the system after making changes.
    net.ipv4.ip_local_port_range = 10000 65000
    Please note that this range is a recommended range, and may need to be adjusted according to the specific needs of the user's environment in order to avoid port conflicts.
    Setting the Environment
    Verify that the host name setting is correct. The command should return a fully qualified host name. For example: <host_name>.<domain_name>.
    # hostname
    For the hugemem kernel, install rpm setarch-1.0-2 or higher. (For up, smp, and boot kernels, omit this step.) This step is not required for SUSE Linux Enterprise Server 8.
    # setarch i386
    Completing Preinstallation Tasks
    Complete these tasks after you set the environment variables and before you begin the installation steps described in Installing Oracle Applications.
    Unset the NLS_LANG environment variable, if it is defined prior to installation.
    Apply one of these OS library patches: 4198954 (for Red Hat 4.0) or 3006854 (for Red Hat 3.0). You can download these patches from OracleMetaLink.
    Restart your system.
    groupadd dba
    useradd -g dba appltest
    useradd -g dba oratest
    Completing Postinstallation Tasks
    After the installation is complete, perform the following tasks in addition to the ones described in Installing Oracle Applications:
    Apply patch 4632932 to all the application tiers, then re-source the applications environment file to refresh the environment variables. This patch is required for setting the values for LD_ASSUME_KERNEL and LD_PRELOAD.
    Should be missing kernel parameters and some other utilities like ar,make,gcc etc
    Thanks,
    SM

    Hi,
    Please can someone help me to get the Patch 4198954. Why don't you download it from MOS website? I believe no one is supposed to download the patch from MOS and send it to you by email as this violates Oracle support agreement policy.
    Thanks,
    Hussein

  • Switching from one ASM installation to another ASM installation

    Hi,
    We've a server Red Hat Enterprise Linux Server release 5.3 (Tikanga) with installed two 11.1.0.7.0 installation: one for ASM and the other for rdmbs.
    Now, we want to install the 11.1.0.7.4 PSU.
    For reducing downtime we'd like to create two new 11.1.0.7.0 installation; then patching them with the 11.1.0.7.4 PSU.
    Then we'd like to stop ASM and all database running and switching the two old installation with the new one.
    For the rdbms installation it's easy: just to modify the oratab and then starting the databases with the new patched installation and then follow the post installation steps (atbundle.sql, etc.)
    For ASM instead, how can I do it ? How can I reconfigure the ocssd for using the new ASM installation ? And do I need to do some other steps ?
    Thanks
    massi

    Hi,
    Probably my post was not clear enough. Sorry.
    Here our scenario:
    - we have one linux server with two Oracle11g installations. We use one installation for ASM and the other one for the rdbms. We planned to install the PSU 4 on both the installations.
    We could simply shutdown all databases and ASM. Then install PSU4 on both ASM and rdmbs installation. Then startup AMS and databases and proceed with post PSU installation tasks.
    There is another possibility. To install in advance two new Oracle11g: one for ASM and the other one for the rdbms. Then apply PSU4 on these two new Oracle11g installations. Then shutdown the databases and the ASM. Then execute:
    $ORACLE_HOME/bin/localconfig reset <new_ASM_oracle_home>
    stop cssd (/etc/init.d/init.cssd stop)
    start cssd (/etc/init.d/init.cssd start)
    Then change in /etc/oratab so that databases will point to the new installation (the new one installed for rdbms)
    Then copy spfile and password files to the new oracle_home/dbs (the new one installed for rdbms)
    Then change in /etc/oratab so that ASM is using the new installation (the new one installed forASM)
    Then copy spfile and password file to the new oracle_home/dbs used by ASM (the new one installed forASM)
    Finally restart ASM and databases
    This way, the ASM will point to the new installation - and the databases will use the other new installation. This way the downtime will be shorter. It will be only necessary to apply the post PSU installation tasks
    I've already did it last weekend. It worked
    Thanks
    massi
    Thanks
    massi

  • Oracle single instance installation  with RHEL Cluster suite

    Hi ,
    Can anyone help regarding Oracle single instance installation with RHEL Cluster suite? I have to know what factor need to be considered for RHEL Cluster configuration for Oracle Installation. And is it certified by Oracle?
    Aungshu

    Does any body like to share their experience ?

  • Step by Step Oracle 10g ASM Installation on Linux

    Hello,
    Can any body provide me link for step by step 10g ASM Installation on linux (i.e from disk partitioning to final configuration). I searched on GooGle but didn't find ASM alone, though there were many step by step for RAC environment. I want to first learn ASM alone. Please help me as I'm first time learning ASM.
    Looking for Kind reply
    Regards,
    Abbasi

    You should check the oracle learning library for any such doubts,
    http://apex.oracle.com/pls/apex/f?p=9830:28:0::NO:RIR:IR_PRODUCT,IR_PRODUCT_SUITE,IR_PRODUCT_COMPONENT,IR_RELEASE,IR_TYPE,IRC_ROWFILTER,IR_FUNCTIONAL_CATEGORY:,,,,,automatic%20storage%20management,
    HTH
    Aman....

  • Looking for deployment instructions PeopleSoft AMI instances on Amazon EC2

    I am looking for deployment instructions on how to launch PeopleSoft AMI instances on Amazon EC2 platforms. There are many AMIs posted by both Oracle and Amazon together to deploy demo environment, and no where I found the installation/deployment instructions. Template instructions for the following AMIs is pointing to Oracle VM page, not Amazon's AWS instructions.
    https://aws.amazon.com/amis?ami_provider_id=4&selection=ami_provider_id
    Please help!

    We're certainly aware of and interested in our customers' desire to use Amazon's infrastructure for a quick and inexpensive deployment of PeopleSoft for demo or pilot purposes. Please continue to use this forum to provide any feedback regarding Oracle applications, particularly PeopleSoft, deployed on Amazon EC2. We have appreciated the feedback we've seen regarding PeopleSoft OVM Templates. This forum has demonstrated the interest and enthusiasm customers and users have for PeopleSoft and virtualization.
    As you are aware, Oracle has a number of broad statements regarding support for our products on the Amazon infrastructure. We are still reviewing the business and technical complexities associated with Oracle-built and delivered AMI's available directly from Amazon compared with our customers using our OVM images for deployment on Amazon's infrastructure. There is no official ETA for FSCM 9.1 and HCM 9.1 AMI's from Oracle.

  • Questions about BPM 11gR1 on Amazon EC2

    Hi,
    I have started image ami-c241aaab (oracle-soa-bpm-11gr1-ps2-4.2-pub) on Amazon EC2, using a spot request.
    When I terminate this image an start it again, using a spot request, a new EBS volume is created.
    Is that right?
    I am able to connect to it using Putty.
    After the SOA suite is started I am able to connect to it locally (using telnet localhost 7001 for instance)
    But I am not able to connect to it remotely
    (I did add the following to my default security group
    - tcp - 7001 - 7001 - 0.0.0.0/0)
    What am I missing here?
    see http://blogs.oracle.com/SOA/2009/10/soa_suite_on_ec2_-_draft.html?msgid=8295995&eid=3915339734&lid=2
    and http://blogs.oracle.com/bpm/2010/06/bpm_11gr1_now_available_on_ama.html
    Groeten,
    HJH

    Instances launched using Spot Requests can only be terminated and can't be restarted. For you to be able to restart the same instance you need to stop it not terminate it. This is only possible if you launch it normally (not a spot request)
    As for your inability to connect to the WebLogic server remotely, if you are behind a corporate firewall, ensure that port 7001 for http/https is allowed. Other than that there is nothing that occurs to me since you seem to have setup your security group properly, at least for port 7001. So you should be able to access Enterprise Manager and WebLogic Console. For other applications, you also need to add ports 8001 and 8888 and 1521.

  • Can I Manage virtual machines using SCCM? What about Amazon ec2 instances?

    Hi All,
    As part of my lab environment, I would like to discover and manage virtual machines within ESXi platform and a few on Hyper-V. As part of this, 
    1] Do we need SC-VMM to create/discover/manage virtual machines or can this be done by using just SCCM 2012 module?
    2] Does SCCM provide any connectors to public cloud services (ex: Amazon EC2 or Google Cloud services)? Can this be done using SCCM? 
    Any help on this would be appreciated. thanks

    Thanks Jason.
    A few follow up questions just to make sure I understand you correctly:
    a] Statement: I understand SCCM can manage OS within any VM (I just realized my set up has discovered 2 VM's running Win 2008 OS via AD discovery method). My confusion began after going thru SC-VMM docs. I assumed, once you have SC-VMM set up, it will discover/manage
    either ESXi servers or Citrix or other vendor hypervisors and then discover VM's within the hypervisors. But as you said, SCCM can manage OS within any VM.
    b] Q: my sccm set up is part of domain 'A' and its discovering systems/users as part of domain 'A'. Is there a way to discover systems as part of domain 'B'? When I look into 'discovery methods' -> Active directory system discovery -> Add a new container
    -> path -> select a new container -> it selects only domain 'A'
    As a result I'm not able to add a secondary domain for system discovery. IS this how its supposed to be? Discovery runs only within one domain? (or) am I missing something here?
    c] When you said 'Yes, I do think (I'm not familiar with all things VMM though) that there is a connector to EC2', did you mean a connector from SCCM or a connector from VMM component?
    thanks again for all the help.

  • Oracle 10xe on Amazon EC2 - pricing

    Hello
    I want to try creating an Oracle 10gXE on the Amazon EC2 for proof of concept, which means I need it to be free or close to
    I've created my Amazon EC2 setup, and checked the pricing which i believe is close to 0 as long as the load is very little
    Now I want to create my Oracle 10gXE database using the provided AMI, but I'm not sure about the pricing.
    Do you now if I will be charged anything from Oracle doing this, and if so, how much?
    And how much will this setup impact my EC2 usages, hence how much will Amazon charge me for doing the POC?
    I only need ballpark figures, but as mentioned I only have been given a small budget to do a proof of concept on this setup, so it's important to me that I don't go over budget
    Best regards
    Klaus

    Oracle 10gXE is free, Oracle does not charge you any fees.
    To start with Amazon, you can have a free EC2 Micro instance which is suitable for Oracle 10gXE. Amazon offers this instance for new customer as free and i think it's for one year.
    You safe if you use 10gXE and AWS Micro instance.

  • Steps to import OEL 5.7 ovf into amazon ec2

    Dear Legends,
    Forum Administrator: Sorry I was noticed the space name correctly. Thanks for reminding me.
    Can any one please let me know what should be required to install OEL 5.7 x64 in a local VM ware or VBox and then I need to move it to Amazon EC2.
    1. Install kernel ec2
    2. Enable PVM
    And also How should be the /etc/fstab  and /boot/grub/menu.lst should look like? Is the following one is right one?
    [root@localhost ~]# cat /etc/fstab
    /dev/sda1               /                       ext3    defaults        1 1
    #LABEL=/                 /                       ext3    defaults        1 1
    tmpfs                   /dev/shm                tmpfs   defaults        0 0
    devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
    sysfs                   /sys                    sysfs   defaults        0 0
    proc                    /proc                   proc    defaults        0 0
    [root@localhost boot]# ls
    config-2.6.18-274.el5xen      System.map-2.6.18-274.el5xen
    grub                          vmlinuz-2.6.18-274.el5xen
    initrd-2.6.18-274.el5xen.img  xen.gz-2.6.18-274.el5
    symvers-2.6.18-274.el5xen.gz  xen-syms-2.6.18-274.el5
    [root@localhost grub]# cat menu.lst
    # grub.conf generated by anaconda
    # Note that you do not have to rerun grub after making changes to this file
    # NOTICE:  You do not have a /boot partition.  This means that
    #          all kernel and initrd paths are relative to /, eg.
    #          root (hd0,0)
    #          kernel /boot/vmlinuz-version ro root=/dev/sda1
    #          initrd /boot/initrd-version.img
    #boot=/dev/sda
    default=0
    timeout=5
    splashimage=(hd0,0)/boot/grub/splash.xpm.gz
    hiddenmenu
    title OEL 5.7 (2.6.18-274.el5xen) --> I need to boot this in EC2
            root (hd0,0)
            kernel /boot/xen.gz-2.6.18-274.el5
            module /boot/vmlinuz-2.6.18-274.el5xen ro root=/dev/sda1 rhgb quiet
            module /boot/initrd-2.6.18-274.el5xen.img
    title Oracle Linux Server (2.6.18-274.el5xen)
            root (hd0,0)
            kernel /boot/xen.gz-2.6.18-274.el5
            module /boot/vmlinuz-2.6.18-274.el5xen ro root=LABEL=/ rhgb quiet
            module /boot/initrd-2.6.18-274.el5xen.img
    [root@localhost grub]#
    Or this to be modified and should look like this?
    title OEL 5.7 (2.6.18-274.el5xen)
            root (hd0,0)
            kernel /boot/vmlinuz-2.6.18-274.el5xen ro root=/dev/sda1 rhgb quiet
            initrd /boot/initrd-2.6.18-274.el5xen.img
    Any kind of help would be much appreciated. Breaking my heads into pieces even after referring all links but am hitting the same wall(Kernel Panic, Error 15, etc..)
    Ref:
    Installing Cent OS 5.5 on EC2 with the Cent OS 5.5 Kernel
    Amazon Web Services Blog: VM Import - Bring Your VMware Images to The Cloud
    Painful lessons &amp;#8211; Porting Centos 5.8 from Virtualbox to Amazon EC2 |
    How to convert VMDK virtual hard disks to Amazon Elastic Compute Cloud (EC2) AMI format
    Creating an Amazon EC2 EBS AMI from a running instance | Chicken of the Web
    https://forums.aws.amazon.com/thread.jspa?threadID=125180#
    Using Oracle VM with Amazon EC2
    Thanks,
    Karthik

    Again I'm trying with editing as follows
    /boot/boot/grub/mmenu.lst
    default=0
    timeout=5
    #splashimage=(hd0,0)/boot/grub/splash.xpm.gz
    hiddenmenu
    title OEL 5.7 (2.6.18-274.el5xen)
            root (hd0,0)
            kernel /boot/vmlinuz-2.6.18-274.el5xen root=/dev/sda1
            initrd /boot/initrd-2.6.18-274.el5xen.img
    /etc/fstab
    dev/sda1          
    ext3
    defaults   
    1 1
    #LABEL=/            
    ext3
    defaults   
    1 1
    tmpfs              
    /dev/shm           
    tmpfs   defaults   
    0 0
    devpts             
    /dev/pts           
    devpts  gid=5,mode=620  0 0
    sysfs              
    /sys               
    sysfs   defaults   
    0 0
    proc               
    /proc              
    proc
    defaults   
    0 0

  • Deploy ADF Fusion Web Application on Amazon EC2 Weblogic

    Hi,
    I am trying to deploy ADF Fusion Web Application (developed using JDev) on Amazon EC2 Weblogic app server but with no success.
    Can anyone enlighten me how to deploy ADF Fusion Web App on Amazon EC2 Weblogic?
    Thanks for kind assistance!

    Hi,
    Thanks for your prompt assistance.
    I managed to run "wls_jumpstart" but I am unable to start the console even though I have created a domain.
    I cannot find any instructions anywhere about deploying ADF Fusion Web Apps on Amazon EC2 Weblogic or any case studies of success anywhere.
    Hence, I am not sure if ADF Runtime is available on the Weblogic on Amazon EC2. Can you please help me in this area as well?
    It will be great if you can point me to some instructions on how to load web apps to Amazon EC2 Weblogic as I am quite new to both JDev and Amazon EC2.
    Thanks.

  • How to run a Lync Server 2013 in amazon ec2 Instance ?

    Hi Friends,
    I would like to install a Lync server 2013 in amazon ec2 instance. Let me know can i install Active Directory server, Lync Server 2013 and Media server in a single amazon instance ?. If it possible how can i do it ?. And is any other features need to install
    to get the fully functional Lync server. Please help me am newbie in Lync environment  

    You can get Lync working in EC2 and I have lab'd his many times. Having said that the process isn't that straight forward (especially if you plan to do voice) a lot of planning and testing, specifically of the network would need to be undertaken.
    You can add multiple interfaces to an EC2 instance (see here http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html)
    If you're hard set on using EC2 you can get it to work, but I personally would look at Office 365 E4 or a small on-premise deployment depending on your requirements. 
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)
    This forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Net services config issue when installing grid on Amazon EC2

    Hi,
    I am attempting to install Grid 11g R2 on an OEL5 server hosted in Amazon EC2
    I am getting as far as the net services setup which is failing because it cannot get port 1521 (or any other for that matter)
    The log snippets are here
    INFO: Oracle Net Services Configuration:
    INFO: Profile configuration complete.
    INFO: Oracle Net Listener Startup:
    INFO: The information provided for this listener is currently in use by other software on this computer.
    INFO: Listener start failed.
    INFO: Check the trace file for details: /u01/app/oracle/cfgtoollogs/netca/trace_Ora11g_gridinfrahome1-1109041PM0909.log
    INFO: Oracle Net Services configuration failed. The exit code is 1
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Net Configuration Assistant
    INFO: Oracle Net Configuration Assistant failed.
    The netca log file that this is referring to is saying
    [main] [ 2011-09-04 13:09:11.970 EDT ] [CRSNative.isEntityRegistered:733] entity: ora.LISTENER.lsnr, type: 1, registered: false
    [main] [ 2011-09-04 13:09:11.976 EDT ] [ConfigureListener.listenerExists:344] Is listener "LISTENER" already exists: false
    [main] [ 2011-09-04 13:09:11.976 EDT ] [ConfigureListener.typicalConfigure:215] Checking for free port in range: 1521-1540
    [main] [ 2011-09-04 13:09:11.976 EDT ] [ConfigureListener.isPortFree:1080] Checking if port 1521 is free on local machine...
    [main] [ 2011-09-04 13:09:11.976 EDT ] [ConfigureListener.isPortFree:1095] InetAddress.getByName(127.0.0.1): /127.0.0.1
    [main] [ 2011-09-04 13:09:11.977 EDT ] [ConfigureListener.isPortFree:1097] Local host IP address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.977 EDT ] [ConfigureListener.isPortFree:1099] Local host name: dbprd.xxx.com
    [main] [ 2011-09-04 13:09:11.977 EDT ] [ConfigureListener.isPortFree:1115] IP Address: dbprd.xxx.com/10.231.17.179, Is IPv6 Address: false
    [main] [ 2011-09-04 13:09:11.978 EDT ] [ConfigureListener.isPortFree:1118] IP Address: dbprd.xxx.com/10.231.17.179, Is Link-Local Address: false
    [main] [ 2011-09-04 13:09:11.978 EDT ] [ConfigureListener.isPortFree:1143] Creating ServerSocket on Port:1521, IP Address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.980 EDT ] [ConfigureListener.isPortFree:1178] java.net.PlainSocketImpl.socketBind(Native Method)
    java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    java.net.ServerSocket.bind(ServerSocket.java:319)
    java.net.ServerSocket.<init>(ServerSocket.java:185)
    oracle.net.ca.ConfigureListener.isPortFree(ConfigureListener.java:1145)
    oracle.net.ca.ConfigureListener.typicalConfigure(ConfigureListener.java:219)
    oracle.net.ca.SilentConfigure.performSilentConfigure(SilentConfigure.java:185)
    oracle.net.ca.InitialSetup.<init>(NetCA.java:4189)
    oracle.net.ca.NetCA.main(NetCA.java:428)
    [main] [ 2011-09-04 13:09:11.980 EDT ] [ConfigureListener.isPortFree:1191] Returning is Port 1521 free: false
    [main] [ 2011-09-04 13:09:11.980 EDT ] [ConfigureListener.isPortFree:1080] Checking if port 1522 is free on local machine...
    [main] [ 2011-09-04 13:09:11.980 EDT ] [ConfigureListener.isPortFree:1095] InetAddress.getByName(127.0.0.1): /127.0.0.1
    [main] [ 2011-09-04 13:09:11.981 EDT ] [ConfigureListener.isPortFree:1097] Local host IP address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.981 EDT ] [ConfigureListener.isPortFree:1099] Local host name: dbprd.xxx.com
    [main] [ 2011-09-04 13:09:11.981 EDT ] [ConfigureListener.isPortFree:1115] IP Address: dbprd.xxx.com/10.231.17.179, Is IPv6 Address: false
    [main] [ 2011-09-04 13:09:11.981 EDT ] [ConfigureListener.isPortFree:1118] IP Address: dbprd.xxx.com/10.231.17.179, Is Link-Local Address: false
    [main] [ 2011-09-04 13:09:11.982 EDT ] [ConfigureListener.isPortFree:1143] Creating ServerSocket on Port:1522, IP Address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.982 EDT ] [ConfigureListener.isPortFree:1178] java.net.PlainSocketImpl.socketBind(Native Method)
    java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    java.net.ServerSocket.bind(ServerSocket.java:319)
    java.net.ServerSocket.<init>(ServerSocket.java:185)
    oracle.net.ca.ConfigureListener.isPortFree(ConfigureListener.java:1145)
    oracle.net.ca.ConfigureListener.typicalConfigure(ConfigureListener.java:219)
    oracle.net.ca.SilentConfigure.performSilentConfigure(SilentConfigure.java:185)
    oracle.net.ca.InitialSetup.<init>(NetCA.java:4189)
    oracle.net.ca.NetCA.main(NetCA.java:428)
    [main] [ 2011-09-04 13:09:11.982 EDT ] [ConfigureListener.isPortFree:1191] Returning is Port 1522 free: false
    [main] [ 2011-09-04 13:09:11.982 EDT ] [ConfigureListener.isPortFree:1080] Checking if port 1523 is free on local machine...
    [main] [ 2011-09-04 13:09:11.983 EDT ] [ConfigureListener.isPortFree:1095] InetAddress.getByName(127.0.0.1): /127.0.0.1
    [main] [ 2011-09-04 13:09:11.983 EDT ] [ConfigureListener.isPortFree:1097] Local host IP address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.983 EDT ] [ConfigureListener.isPortFree:1099] Local host name: dbprd.xxx.com
    [main] [ 2011-09-04 13:09:11.983 EDT ] [ConfigureListener.isPortFree:1115] IP Address: dbprd.xxx.com/10.231.17.179, Is IPv6 Address: false
    [main] [ 2011-09-04 13:09:11.984 EDT ] [ConfigureListener.isPortFree:1118] IP Address: dbprd.xxx.com/10.231.17.179, Is Link-Local Address: false
    [main] [ 2011-09-04 13:09:11.984 EDT ] [ConfigureListener.isPortFree:1143] Creating ServerSocket on Port:1523, IP Address: dbprd.xxx.com/10.231.17.179
    [main] [ 2011-09-04 13:09:11.984 EDT ] [ConfigureListener.isPortFree:1178] java.net.PlainSocketImpl.socketBind(Native Method)
    java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    java.net.ServerSocket.bind(ServerSocket.java:319)
    java.net.ServerSocket.<init>(ServerSocket.java:185)
    oracle.net.ca.ConfigureListener.isPortFree(ConfigureListener.java:1145)
    oracle.net.ca.ConfigureListener.typicalConfigure(ConfigureListener.java:219)
    oracle.net.ca.SilentConfigure.performSilentConfigure(SilentConfigure.java:185)
    oracle.net.ca.InitialSetup.<init>(NetCA.java:4189)
    oracle.net.ca.NetCA.main(NetCA.java:428)
    [main] [ 2011-09-04 13:09:11.984 EDT ] [ConfigureListener.isPortFree:1191] Returning is Port 1523 free: false
    netstat -a | grep 1521
    returns nothing
    Other info.
    [root@dbprd ~]# uname -a
    Linux dbprd.xxx.com 2.6.18-194.0.0.0.3.el5xen #1 SMP Mon Mar 29 18:27:00 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    [root@dbprd ~]# hostname
    dbprd.xxx.com
    [root@dbprd ~]# cat /etc/hosts
    127.0.0.1 localhost.localdomain localhost
    ::1 localhost6.localdomain6 localhost6
    10.231.17.179 dbprd.xxx.com dbprd
    Any ideas gratefully recieved.
    Thanks
    Ralph
    Edited by: user13024707 on 05-Sep-2011 13:20

    Hi , I am facing the same issue...could you help me with steps that you followed to resolve this?

  • Oracle VM templet for Peoplesoft on Amazon EC2

    Has someone successfully setup Oracle VM templet for Peoplesoft on Amazon EC2. I am able to login but the database or app servere setup are not launching automatically and i am getting no clue how to run the setup ?
    Thanks!
    Deep

    Same here. I expected the set up scripts to run as documented in the VM documentation.

Maybe you are looking for