Installation of Oracle 11g R2 in Linux.........Step By Step

Oracle 11g R2 installtion in Linux
Author: Arun
For Reference:
http://www.morganslibrary.org/reference/linux_oracle_inst11gR2.html
Operating System Configuration
1.As root: Install RPM’s
For RHEL 5 (32-bit):
rpm -Uvih binutils-2*
rpm -Uvih compat-libstdc++-33*
rpm -Uvih elfutils-libelf-0*
rpm -Uvih elfutils-libelf-devel-0*
rpm -Uvih elfutils-libelf-devel-static-0*
rpm -Uvih gcc-4*
rpm -Uvih gcc-c++-4*
rpm -Uvih glibc-2*`uname -p`*
rpm -Uvih glibc-common-2*
rpm -Uvih glibc-devel-2*
rpm -Uvih glibc-headers-2*
rpm -Uvih kernel-headers-2*
rpm -Uvih ksh-20*
rpm -Uvih libaio-0*
rpm -Uvih libaio-devel-0*
rpm -Uvih libgcc-4*
rpm -Uvih libgomp-4*
rpm -Uvih libstdc++-4*
rpm -Uvih libstdc++-devel-4*
rpm -Uvih make-3*
rpm -Uvih numactl-devel-0*
rpm -Uvih sysstat-7*
rpm -Uvih unixODBC-2*
rpm -Uvih unixODBC-devel-2*
For RHEL 5 (64-bit):
rpm -Uvih binutils-2*`uname -p`*
rpm -Uvih compat-libstdc++-33*`uname -p`*
rpm -Uvih compat-libstdc++-33*i386*
rpm -Uvih elfutils-libelf-0*`uname -p`*
rpm -Uvih elfutils-libelf-devel-0*`uname -p`*
rpm -Uvih gcc-4*`uname -p`*
rpm -Uvih gcc-c++-4*`uname -p`*
rpm -Uvih glibc-2*`uname -p`*
rpm -Uvih glibc-2*i686*
rpm -Uvih glibc-common-2*`uname -p`*
rpm -Uvih glibc-devel-2*`uname -p`*
rpm -Uvih glibc-devel-2*i386*
rpm -Uvih glibc-headers-2*`uname -p`*
rpm -Uvih ksh-20*`uname -p`*
rpm -Uvih libaio-0*`uname -p`*
rpm -Uvih libaio-0*i386*
rpm -Uvih libaio-devel-0*`uname -p`*
rpm -Uvih libaio-devel-0*i386*
rpm -Uvih libgcc-4*`uname -p`*
rpm -Uvih libgcc-4*i386*
rpm -Uvih libstdc++-4*`uname -p`*
rpm -Uvih libstdc++-4*i386*
rpm -Uvih libstdc++-devel-4*`uname -p`*
rpm -Uvih make-3*`uname -p`*
rpm -Uvih numactl-devel-0*`uname -p`*
rpm -Uvih sysstat-7*`uname -p`*
rpm -Uvih unixODBC-2*`uname -p`*
rpm -Uvih unixODBC-2*i386*
rpm -Uvih unixODBC-devel-2*`uname -p`*
rpm -Uvih unixODBC-devel-2*i386*
2.As root: Create DBA Group and Oracle User
/usr/sbin/groupadd -g 500 oinstall
/usr/sbin/groupadd -g 501 dba
/usr/sbin/groupadd -g 502 oper
/usr/sbin/useradd -u 500 -m -g oinstall -G dba,oper oracle
id oracle
-- set the password to oracle1
passwd oracle
3.As root: Create Installation Directories
mkdir -p /app/oracle
chown -R oracle:dba /app/oracle
chmod -R 775 /app/oracle
mkdir /stage
chown -R oracle:dba /stage
4.As root: Alter Kernel Parameters
Vi /etc/sysctl.conf
Place this parameters in the end of the file.
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.tcp_wmem = 262144 262144 262144
net.ipv4.tcp_rmem = 4194304 4194304 4194304
fs.aio-max-nr = 1048576
net.ipv4.ip_local_port_range = 9000 65500
EOF
-- Activate changes
/sbin/sysctl -p
5.As root: Set Shell Limits
-- Modify limits.conf
Vi /etc/security/limits.conf
Place these lines in the end of the file.
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
EOF
6.As root:set Logins
-- Modify /etc/pam.d/login
Vi /etc/pam.d/login
session required pam_limits.so
7.As root: Change Default Profile
Vi /etc/profile
if [ $USER = "oracle" ]; then
if [ \$SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
EOF
8.As root: Append servers to hosts file
Vi /etc/hosts
Add this lines
127.0.0.1 localhost.localadmin localhost
10.0.0.33 insight33.acolade.com.au insight33
9.As root: Modify .bashrc
# cd /home/oracle
vi .bashrc
-- append the following:
umask 022
ORACLE_HOSTNAME=?.mlib.org
ORACLE_BASE=/app/oracle/product
ORACLE_HOME=/app/oracle/product/11.2.0/db_1
ORACLE_SID=?
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
TMP=/tmp
TEMP=/tmp
TMPDIR=/tmp
PATH=$ORACLE_HOME/bin:$PATH
export PATH ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH
export TMP TEMP TMPDIR
alias oh='cd $ORACLE_HOME'
alias sql='sqlplus "/ as sysdba"'
-- close all open terminal windows and open new ones
$ set
-- validate the environment
10.Run the file for to start Installation
Unzip the oracle file in “tmp” folder.
After unzipping the installation files, change the user as “oracle” and take “database” folder.
Su oracle
cd /tmp/database/
./runInstaller
Note:If any one of the checking is failed during installation starting,take new terminal and use
Su root
Xhost +SI:localuser:oracle                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

According http://download.oracle.com/docs/cd/E11882_01/install.112/e16765/pre_install.htm#BABCFBDG it is not not.
Minimum system requirements are for Linux x86 and x86-64 are:
Oracle Enterprise Linux 4 Update 7
Oracle Enterprise Linux 5 Update 2
Red Hat Enterprise Linux 4 Update 7
Red Hat Enterprise Linux 5 Update 2
SUSE Linux Enterprise Server 10 SP2
SUSE Linux Enterprise Server 11
Since you are running *5.1* you need to perform an upgrade

Similar Messages

  • Installation of Oracle 11g on RHEL 5 (Listener cannot start )

    Hello,
    I have install Oracle 11g on my linux RHEL5. The installation was succesfull but cannot start the listener. The configuration of even the EM at the end of the installation for the same reason , Listener not started.
    Trying to connect to my Listener i got the following error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=karen)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCPS)(HOST=karen)(PORT=2484)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    LSNRCTL> start
    Starting /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr: please wait...
    TNS-12537: TNS:connection closed
    TNS-12560: TNS:protocol adapter error
    TNS-00507: Connection closed
    Linux Error: 29: Illegal seek
    Can Some help troubleshoot this problem.
    Thanks

    Dear bezgodo!
    Please execute the following commands and compare the results.
    1.
    hostname --fqdn2.
    nslookup <your_ip_address>In both cases you should see the fully qualified hostname of your server.
    Yours sincerely
    Florian W.

  • Upgrade Oracle 10g RAC - Oracle 11g RAC on Linux Environment

    We are planning to Upgrade our databases to Oracle 10g RAC - Oracle 11g RAC which is Linux Environment. Kindly suggest me the best option for migration. Our production database size is 80GB.
    - Frest installation of oracle 11g using export/iimport dumps
    - Migration
    - Upgrade process
    Any information regarding this will be appreciated.

    Pl identify exact versions of "10g" and "11g", along with the exact OS versions.
    Pl see the upgrade doc - http://docs.oracle.com/cd/E11882_01/server.112/e23633/toc.htm
    HTH
    Srini

  • Problem in Installing oracle 11g in enterprise linux

    Hello all,
    Iam new to linux and oracle .... I had downloaded enterprise linux from oraclewebsite, My question is i was not able to install oracle 11g in enterprise linux...
    And when i am trying to install ./runInstaller
    iam getting error message (permission denied).
    is that necessary to install oracle vm server or manager .. if so how to do it .. Please give me clear idea how and where to start..

    Hi,
    The error message which iam getting is
    [root@Karthik database]# ls -la
    total 48
    drwxr-xr-x 8 root root 4096 Sep 10 15:42 .
    drwxr-xr-x 3 root root 4096 Sep 10 15:40 ..
    drwxr-xr-x 12 root root 4096 Sep 10 15:42 doc
    drwxr-xr-x 4 root root 4096 Sep 10 15:42 install
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 response
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 rpm
    -rwxrwxrwx 1 root root 4352 Aug 13 23:56 runInstaller
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 sshsetup
    drwxr-xr-x 14 root root 4096 Sep 10 15:46 stage
    -rw-r--r-- 1 root root 5400 Aug 17 12:25 welcome.html
    [root@Karthik database]# ./runInstaller
    ./runInstaller: line 137: /root/Desktop/linux_11gR2_database_1of2/database/install/.oui: Permission denied
    The command
    bash ./runInstaller.sh didnt helped. again got the error of bash: ./runInstaller.sh: No such file or directory
    Thanks,
    karthik

  • Installation problem oracle 11g R2 on oracle enterprise linux 5 update 5

    hello support,
    i've installation problems with oracle 11g R2 on oracle enterprise linux 5 update 5. In the section "ORACLE Net-Konfigurationsassisten" the failure "[INS-20802] Oracle NET-Konfigurationsassistent not success". What's wrong? I've followed the instructions on http://www.oracle.com/technology/pub/articles/smiley-11gr1-install.html
    I've heard the problem can occur with problems in /etc/hosts? My /etc/hosts is configured:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1          oracle localhost.localdomain localhost
    ::1          localhost6.localdomain6 localhost6
    is this ok? what can I do to bring the database-installation to success?
    Thank's for help ;-)
    Edited by: user5782904 on 09.05.2010 14:06

    Here I paste you the configuration of my latest linux box which has a similar environment like yours.
    # hostname
    vmrhel6032.quist.ch
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032 vmrhel6032.quist.ch
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032.quist.ch
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Thanks to your post I noted that the hostname consist already of my domain entry. Try your configuration first without domain entry. It should look like:
    # hostname
    vmrhel6032
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Otherwise use the first example and don't forget to restart your server resp. the network service. ;)

  • Help needed regarding installation of Oracle 11G in Solaris10(VMware)

    I am trying to install Oracle 11G in Solaris. Whenever I am trying to run the installer ,I gets below error messages.
    # cd /export/home/oracle
    # ls -ltr
    total 2098204
    drwxr-xr-x 3 oracle oinstall 512 Mar 29 21:23 product
    drwxr-xr-x 2 oracle oinstall 512 Mar 29 23:03 Documents
    drwxr-xr-x 2 oracle oinstall 512 Mar 29 23:03 Desktop
    -rw------T 1 root root 1073741824 Mar 29 23:09 orcl_swap
    lrwxrwxrwx 1 oracle oinstall 32 Mar 30 19:34 link to installation -> /e xport/home/oracle/installation
    drwxr-xr-x 4 root root 512 Mar 30 20:30 installation
    drwxr-xr-x 4 oracle oinstall 512 Mar 30 23:30 tmp
    # cd installation
    # ls -ltr
    total 4
    dr-xr-xr-x 4 root root 512 Mar 30 20:30 linux.zseries64_11gR2_data base_2of2
    dr-xr-xr-x 3 root root 512 Mar 30 20:30 solaris.x64_11gR2_database _1of2_1
    # cd solaris.x64_11gR2_database_1of2_1
    # ls -ltr
    total 2
    dr-xr-xr-x 8 root root 512 Mar 30 21:09 database
    # cd database
    # ls -ltr
    total 38
    dr-xr-xr-x 12 root root 512 Mar 30 20:34 doc
    dr-xr-xr-x 4 root root 512 Mar 30 20:34 install
    dr-xr-xr-x 2 root root 512 Mar 30 20:34 response
    dr-xr-xr-x 2 root root 512 Mar 30 20:34 rpm
    dr-xr-xr-x 2 root root 512 Mar 30 20:34 sshsetup
    dr-xr-xr-x 14 root root 1024 Mar 30 21:09 stage
    -rwxrwxrwx 1 root root 6513 Mar 30 21:59 runInstaller
    -r--r--r-- 1 root root 5400 Mar 30 21:59 welcome.html
    # ./runInstaller
    ./runInstaller: /export/home/oracle/installation/solaris.x64_11gR2_database_1of2_1/database/install/.oui: cannot execute
    It will bre great if anyone can help me with some ideas and concepts here.

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Installation of Oracle 11g 32 bit Client on Windows 7 (32 bit) laptop.

    Hi,
    I just got a new Laptop with Windows 7 (32 bit) operating system.
    Has any one successfully installed Oracle 11g client on in Windows 7 environment and if so what are the steps involved.
    In the past I have never had any trouble installing an Oracle client on a Windows work station.
    Thanks,
    Ashim.

    Oracle hasn't officially supported 11g on windows 7. folks have installed it successfully too. Check the below threads.
    Re: 11g R1 database installation is successful on windows 7 64-bit
    Oracle 11g on Windows 7
    Re: DB 11gR2 for Windows ??
    HTH
    -Anantha

  • Apex 3.2 installation in Oracle 11g

    I had installed oracle 11g on my PC. I replaced the apex directory with the apex3.2 directory. Followed all steps mentioned in Apex 3.2 installation guide, but got error while executing the apex_epg_config.sql sript, due to which i am not able to log in
    http://localhost:8080/apex/apex_admin
    The XDB connection could not be established. The username Admin and password "password" also does not work.
    Can anyone give me the step by step installation guide for apex3.2 installation.
    How can i attach a word document to show the error i am getting while installation ?
    Yogesh

    I sucessfully installed Apex 3.2 on Oracle 11g database using the following steps :
    1.     APEX 3.2 INSTALLATION STEPS
    2.     Download Apex3.2
    3.     Create folder as D:\apex32
    4.     Extract Apex3.2 into D:\apex32
    5.     The path of Apex folder will be D:\apex32\apex
    6.     Install Microsoft Loopback adapter (In case of Individual PC).
    7.     After installation, Right click the newly created Local Area connection. Go to TCP/IP properties.
    Give IP address as 127.0.0.1(any) and subnet mask as 255.255.255.0
    8.     Create Apex Tables space as follows:
    9.     CREATE SMALLFILE TABLESPACE "APEX_MAIN"
    10.     DATAFILE 'D:\ORCL11G\ORADATA\ORCL\APEX_MAIN.DBF'
    11.     SIZE 250M REUSE
    12.     AUTOEXTEND ON NEXT 100K
    13.     MAXSIZE 1024M
    14.     LOGGING
    15.     EXTENT MANAGEMENT LOCAL
    16.     SEGMENT SPACE MANAGEMENT AUTO
    17.     DEFAULT NOCOMPRESS;
    18.     CREATE SMALLFILE TABLESPACE "APEX_FILES"
    19.     DATAFILE 'D:\ORCL11G\ORADATA\ORCL\APEX_FILES.DBF'
    20.     SIZE 100M REUSE
    21.     AUTOEXTEND ON NEXT 100K
    22.     MAXSIZE 1024M
    23.     LOGGING
    24.     EXTENT MANAGEMENT LOCAL
    25.     SEGMENT SPACE MANAGEMENT AUTO
    26.     DEFAULT NOCOMPRESS;
    27.     CREATE SMALLFILE TEMPORARY TABLESPACE "APEX_TEMP"
    28.     TEMPFILE 'D:\ORCL11G\ORADATA\ORCL\APEX_TEMP.DBF'
    29.     SIZE 50M REUSE
    30.     AUTOEXTEND ON NEXT 25K
    31.     MAXSIZE 512M
    32.     EXTENT MANAGEMENT LOCAL
    33.     UNIFORM SIZE 1M;
    34.     DROP USER FLOWS_030000 CASCADE;
    35.     Right click SQL Plus - Go to Properties
    36.     Type D:\apex32\apex in “Start in “
    37.     In SQL PLUS login as SYSDBA
    38.     @apexins APEX_MAIN APEX_FILES APEX_TEMP /i/
    39.     @apex_epg_config D:\apex32 or @apxldimg D:\apex32 (for upgrade from previous version)
    40.     EXEC DBMS_XDB.SETHTTPPORT(8080);
    41.     @apxconf (Type password for Admin account)
    42.     @apxchpwd (To change the password for admin account)
    43.     ALTER USER ANONYMOUS ACCOUNT UNLOCK; Create Apex Tables space as follows:
    44.     ALTER USER FLOW_FILES ACCOUNT UNLOCK;
    45.     ALTER USER APEX_PUBLIC_USER ACCOUNT UNLOCK;
    46.     http://localhost:8080 / apex / apex
    47.     WORKSPACE – INTERNAL
    48.     USERNAME - ADMIN
    49.     PASSWORD - password
    Yogesh

  • ASM Installation on Oracle 11g Clusterware (RAC) environment

    Hi All,
    I am trying to setup Oracle 11g Standared Edition RAC+ASM on RedHat Linux 5.0 VM ware box. As part of this RAC setup successfully completed. For this i have used raw devices and mounted using NFS.
    In many of forumns i have read that ASM installtion on a cluster envioronmnet is different than non cluster environment.
    I dont know how to start ASM installtion on RAC environment. Please share any documents if you have?
    Thanks,
    Rakesh

    will the steps need to be done on two nodes of cluster or it is sufficient on first node.
    "raw device" for OCR, VOTE, SPFILE_FOR ASM and ASM DISKGROUPs
    before do "raw devices" you have to fdisk(make partitions) on share storages
    node1:
    # fdisk /dev/sdf
    # ls /dev/sdf*
    node2:
    # ls /dev/sdf*
    don't find...,so just fdisk -> l and -> w
    fdisk how? http://linux.about.com/od/commands/l/blcmdl8_fdisk.htm
    Example: /etc/sysconfig/rawdevices do it every nodes
    #Oracle OCR File +~280M+
    /dev/raw/raw1 /dev/sdf1
    #Oracle Voting File +~280M+
    /dev/raw/raw2 /dev/sdf2
    #Oracle ASM spfile ~50M+
    /dev/raw/raw3 /dev/sdf3
    #Oracle ASM DISK Group1
    /dev/raw/raw4 /dev/sdg1
    #Oracle ASM DISK Group2
    /dev/raw/raw5 /dev/sdh1
    And oracle user.. can read /dev/raw/raw* You should find on every nodes
    http://oraclepitstop.wordpress.com/2008/02/15/raw-devices-on-rhel-5-or-oel-5/
    ls -la /dev/raw/raw*
    crw-rw---- 1 root oinstall 162, 1 Jan 13 12:53 /dev/raw/raw1
    crw-rw---- 1 oracle oinstall 162, 2 Jan 13 12:53 /dev/raw/raw2
    crw-rw---- 1 oracle oinstall 162, 3 Jan 13 12:53 /dev/raw/raw3
    crw-rw---- 1 oracle oinstall 163, 1 Jan 13 12:53 /dev/raw/raw4
    crw-rw---- 1 oracle oinstall 164, 1 Jan 13 12:53 /dev/raw/raw5
    do it on node1 but you have to pass phrase on every nodes Before
    http://www.puddingonline.com/~dave/publications/SSH-with-Keys-HOWTO/document/html/SSH-with-Keys-HOWTO-5.html
    example:
    node01:
    $ ssh node01 hostname
    node01
    $ ssh node02 hostname
    node02
    - Install + Setup Clusterware:
    OCR = /dev/raw/raw1
    VOTE = /dev/raw/raw2
    - Install Oracle Database for ASM Home
    spfile for ASM = /dev/raw/raw3
    - after ASM started... create disk groups from /dev/raw/raw4 and /dev/raw/raw5
    - Install Oracle Database for RDBMS Home
    - Create Database to use ASM diskgroups
    http://www.oracle-base.com/articles/11g/OracleDB11gR1RACInstallationOnRHEL5UsingVMwareESXAndNFS.php
    Did you followed the same procedure to set up Oracle 11g RAC+ASM on RHEL 5.0.I'd done(test 11gRAC) it on RHEL 4 + 11g + ASM(on raw device)
    on production, I use ASMlib... + ASM + 10g
    you can read on metalink to help idea
    465001.1
    357492.1
    605828.1
    564580.1
    on http://startoracle.com/2007/09/30/so-you-want-to-play-with-oracle-11gs-rac-heres-how/
    Oracle 11g’s RAC.. I think.. that can help you ;)
    Good Luck
    Edited by: Surachart Opun (HunterX) on Jun 26, 2009 11:22 AM
    Example from IBM... Deploying Oracle RAC 11g R1 on RHEL 5 or SLES 10 with Oracle ASM on the IBM DS3400, DS4200, DS4700, and DS4800 Storage Subsystems
    http://www-03.ibm.com/support/techdocs/atsmastr.nsf/WebIndex/WP101323
    Edited by: Surachart Opun (HunterX) on Jun 26, 2009 11:27 AM

  • APEX 3.2 installation on oracle 11g

    Hi
    I am having trouble installing APEX 3.2 on the 11g enterprise edition, I installed the 11g and the EM was working fine then I tried to follow all the steps in the instalation guide of Apex 3.2 but it does not run after all the steps are completed.
    I would like to know if there is another way to install apex different from the provided in the guide orif anyone is having the same problem and found a solution to it.
    Thanks

    Dear friend,
    first of all what is your name???!!!
    The ORACLE 11g installaion packet includes *3.0 apex* and it installs automatically (Enterprice. version) APEX 3.0. All things you must do is, unluck apex user and set APEX port,
    Then you can access APEX,
    Then you can upgrade it to 3.1.2 please read unlucking user & port setting and upgrade steps from installation manual apex.oracle.com
    Good luck
    Recards
    siyavuş
    Edited by: Siyavus on Mar 3, 2009 10:30 AM
    Edited by: Siyavus on Mar 3, 2009 10:31 AM

  • Installer problem - Oracle 11g on Redhat ES 5.1 (x86)

    Hi,
    I'm trying to run the "runInstaller" script to install Oracle 11g onto my Redhat ES 5.1 (x86) machine and the following error is being reported:
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 1409 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 1407 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-01-10_04-46-50AM. Please wait ...Exception in thread "main" java.lang.NoClassDefFoundError: oracle/ewt/lwAWT/BufferedFrame
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    I copied all the installation tree to /tmp/oracle and ran chmod -R 777 * to make sure I could see all the files.
    I've been logging onto the server as the oracle user.
    I've also got Java v1.5.0.6 installed
    I've run out of ideas - anyone able to assist ?

    I've sorted it. Was originally copy unzipped install files from DVD into /tmp but think there must have been some corruption. I now copied and unzipped the install file onto the RH machine and it's now working.

  • Installation of Oracle 11g Release 2 on Windows Server 2008 R2

    Hi:
    When I tried to install 64-bit Oracle 11g Release 2 on a system running 64-bit Windows Server 2008 R2.
    One of the system pre-requisites failed with the following error message:
    Checking operating system requirements ...
    Expected result: One of 5.0,5.1,5.2,6.0
    Actual Result: 6.1
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 11g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    I presume 6.0 is Windows 2008 Server and 6.1 should be Release 2.
    Does this mean that this version is not compatible with Server 2008 Release 2?
    venki
    Edited by: thevenkat on Jan 20, 2010 9:37 PM

    Hans Forbrich wrote:
    [email protected] wrote:
    Does anyone know when we can expect 11g R2 for Windows?No one outside of Oracle officially knows (and they are under NDA)
    No one inside Oracle is permitted to say, or pre-announce release dates for legal reasons.
    Which is why I gave you the link - so you could monitor for yourself.OK, thanks...
    I was just hoping there was an official release date and I just couldn't find it.
    Is there any information about features in 11gR2 for Windows available yet?
    Or can you maybe tell me if it will be possible to mount the new "database filesystem" like we can do on linux?
    I remember oracle did something similar with Oracle ifs (Internet File System) back in Oracle 9i. (or was it 8i?)
    Regards
    Thomas

  • Oracle ILM Assistant 1.4 Installation for Oracle 11g Express Edition

    Can we use Oracle ILM Assistant 1.4 with Oracle 11g Express Edition?
    I installed ILM Assistant with Oracle 11g Express Edition along with default APEX in my laptop. Oracle SQLPlus connect and Application Express working fine. But facing problem is connecting ILM Assistant.
    I used below commands to install ILM Assistant
    sqlplus /nolog
    Connect SYS as SYSDBA
    Password: oracle
    @ilma_install oracle ILM_ASSISTANT NONE
    granted all access rights to user
    @ilma_post_install
    I restarted by computer once installation completes.
    When I use http://localhost:8080/pls/apex/f?p=737677 address in IE to connect ILM Assistant it ask for XDB server username and password. When I provide default password IE giving 404 Not Found error.
    Just wondering if I am missing something or issue is some thing else.

    Hermann, thanks for your support.
    Answer: please use username in Capital Letters
    e.g.
    SQL> @grant_privs ILM_USER_TEST;

  • Installation of Oracle 11g on Windows 8

    I am trying to install Oracle 11g Database in my windows 8 system.
    Whenever i click on the setup.exe the installer window pops up and nothing happens.
    I am running it as an administrator.
    I need some help on this. I have tried to run in compatibility mode as well but help.

    994288 wrote:
    I am trying to install Oracle 11g Database in my windows 8 system.Pl identify exact version. Neither 11gR1 not 11gR2 are supported on Win 8 - supported OS versions are documented - http://docs.oracle.com/cd/E11882_01/install.112/e24186/reqs.htm#CHDHGGFE
    Certification of Win 8 is expected with a future release - see http://www.oracle.com/technetwork/database/windows/tech-info/sod-oracle-db-win8-win2012-1853201.pdf
    You have three options
    1. Wait for this future Oracle release
    2. Downgrade your OS to a supported version.
    3. Install VM software (like Virtualbox), create a VM, install a supported OS in the VM, then install 11gR2 in the VM - see my blog (linked in my profile) for a detailed example
    Whenever i click on the setup.exe the installer window pops up and nothing happens.
    I am running it as an administrator.
    I need some help on this. I have tried to run in compatibility mode as well but help.HTH
    Srini

  • Oracle 11g On Suse Linux 9.1

    Hi all,
    I have downloaded both Oracle 11g and Oracle Application Server 10g Release 2 from Oracle Website. I am using Suse linux 9.1. I am having problems in installing Oracle 11g on it.
    Please somebody help me.
    Thanks in advance.

    You're using an unsupported Linux-distro... Check
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/pre_install.htm#CIHFICFD
    to see you need at least "SUSE Linux Enterprise Server 10.0".

Maybe you are looking for

  • List of open work orders

    Hi all, How to detwermine whether an open work order exist for a particular material and the plant. Is there a transaction where i can check the open work orders given the above input parameter. Regards Hemanth

  • FAQ: How do I organize my photos by criteria other than date?

    Adobe Revel sorts the photos that you upload  in your photo library by date. However, you can create an unlimited number of albums in your library. So, you could set up different categories (albums) to sort the photos by theme or event, for example.

  • Error while deploying the BMP Bean

    Hi Here Iam trying to deploy the Account(BMP)Bean in to WebAS and the following error is getting while deplying. Jun 28, 2005 6:18:42 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] INFO: [027

  • Is it possible to combine multiple pdf's into one without saving them onto your computer?

    Hello I open pdf's in an application (no add ons for acrobat exist), and want to combine them without having to use time on saving them before merging them into one single document. Is it possible to do this without having the files saved onto your c

  • Not liking iTunes right now!

    Ok, I had some video's in my iTunes that didn't work. So I thought maybe if I go to the apple site and look in support, I'll find out how to get them to work. It told me to sync the video's. So I did. GREAT!!! Now all of my 487 songs are gone and non