Install oracle 11gR2 on fedora 14x86_64

Hello Everyone,
I have just installed oracle 11g R2 on fedora 14x86_64, but I got a problem:when I startup the database, I got this:
[oracle@tangyuze ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.1.0 Production on Thu Mar 3 17:18:01 2011
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/app/oracle/product/11.2.0/dbs/initorcl.ora'
SQL>
some website told me to do this:
[oracle@tangyuze pfile]$ cp /app/oracle/admin/study/pfile/init.ora.232011 /app/oracle/product/11.2.0/dbs/
but it does not work
[oracle@tangyuze pfile]$ ls /app/oracle/admin/study/pfile/
init.ora.2320110427 init.ora.232011948
[oracle@tangyuze pfile]$ ls /app/oracle/product/11.2.0/dbs/
hc_DBUA0.dat init.ora lkSTUDY spfilestudy.ora
hc_study.dat initorcl.ora orapwstudy
my ORACLE_SID :study
thank you advance!

LRM-00109: could not open parameter file '/app/oracle/product/11.2.0/dbs/initorcl.ora'Your ORACLE_SID is study, but Oracle searches for initorcl.ora, make sure ORACLE_SID is set correctly, i.e. ORACLE_SID=study .
Werner
By default Oracle uses a spfile, not pfile.
spfilestudy.oracould be the correct on.
Edited by: oradba on 03.03.2011 10:57
export ORACLE_SID=study
and try again.
Edited by: oradba on 03.03.2011 10:58

Similar Messages

  • Error while installing Oracle 10g on Fedora Core 1

    Error while installing Oracle 10g on Fedora Core 1. After 40% of the Installation is thru, the progress bar is showing 40%, it gives error "Not connected to Oracle" and the installation has to be terminated.
    We have tried by using the on-line procedure and changing the required script to make believe it as said.

    Are you createing DB also???

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Installing Oracle Linux on Fedora Core (formerly Red Hat)

    Hello,
    I am very new to Linux having been a recent Windows convert and wanted to find out whether I can talk to someone about installing Oracle on a Fedora Core system. I find the current documentation to be quite daunting for a newbie like me. I am not new to Oracle per se but I am new to installing it on a different operating system. It's also easier for me to chat about my issues than to do a long-winded e-mail. If there is a "guru" in this area that can contact me, I can be reached at 305-491-0417 (cell) or e-mail me at [email protected]
    Much appreciated and Thanks,
    Steve

    Hello
    Here is a very good guide:
    http://www.puschitz.com/OracleOnLinux.shtml
    lajos

  • JRE not found, while installing Oracle 9i on Fedora Core 5

    I am installing Oracle 9i on Fedora Core 5 from the following site.
    http://ivan.kartik.sk/oracle/install_ora9_fedora.html
    The site asks me to Download the Java Runtime Enviroment (j2re-1_3_1_15-linux-i586.bin) from the Sun website.
    extract the file and put it in /opt directory. And edit Disk1/install/linux/oraparam.ini and modify JRE_LOCATION variable to /opt/jre1.3.xx
    I have downloaded JRE version jre1.3.1_19 as this is the version available from the sun site, and put it in the /opt directory.
    [oracle@localhost Disk1]$ cd /opt
    [oracle@localhost opt]$ ls -l
    total 24
    drwxr-xr-x 6 root root 4096 Aug 19 2006 jre1.3.1_19
    My oraparam.ini settings are:
    [oracle@localhost ~]$ cat Disk1/install/linux/oraparam.ini
    [Oracle]
    JRE_LOCATION=/opt/jre1.3.1_19
    However, after doing these changes when I use /home/oracle/Disk1/runInstaller, i get the following error:
    [oracle@localhost Disk1]$ pwd
    /home/oracle/Disk1
    [oracle@localhost Disk1]$ ./runInstaller
    [oracle@localhost Disk1]$ The Java RunTime Environment was not found at /tmp/OraInstall2008-04-29_07-09-15AM/jre/bin/java. Hence, the Oracle Universal Installer cannot be run.
    Please visit http://www.javasoft.com and install JRE version 1.3.1 or higher and try again.
    : No such file or directory

    Ivan Kartik:
    I have installed Oracle 9i on Fedora 5.
    I am able to login using sqlplus 'sys/sys as sysdba'
    and start the database using startup
    However, there were problems starting Configuration Assistant services and HTTP Server.
    Here are the details:
    Launched configuration tool Agent Configuration Assistant
    Command which is being spawned is /opt/oracle/920/JRE/bin/jre -classpath /opt/oracle/920/JRE/lib/rt.jar:/opt/oracle/920/jlib/srvm.jar:/opt/oracle/920/network/agent/agentca.jar oracle.agent.AgentCA /orahome /opt/oracle/920 /nodeinfo NO_VALUE
    Configuration tool Agent Configuration Assistant failed
    Parameter "orahome" = /opt/oracle/920
    Parameter "nodeinfo" = NO_VALUE
    Agent Service Failed
    Result code for launching of configuration tool is 1
    Launched configuration tool Starting HTTP Server
    Command which is being spawned is /opt/oracle/920/Apache/Apache/bin/apachectl startssl
    Invalid Exit Code. The following result code will be used for configuration tool: 1
    Configuration tool Starting HTTP Server failed
    /opt/oracle/920/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
    /opt/oracle/920/Apache/Apache/bin/apachectl startssl: httpd could not be started
    Result code for launching of configuration tool is 1
    Launched configuration tool Agent Configuration Assistant
    Command which is being spawned is /opt/oracle/920/JRE/bin/jre -classpath /opt/oracle/920/JRE/lib/rt.jar:/opt/oracle/920/jlib/srvm.jar:/opt/oracle/920/network/agent/agentca.jar oracle.agent.AgentCA /orahome /opt/oracle/920 /nodeinfo NO_VALUE
    Configuration tool Agent Configuration Assistant failed
    Parameter "orahome" = /opt/oracle/920
    Parameter "nodeinfo" = NO_VALUE
    Agent Service Failed

  • Install Oracle 11gr2 on Windows 2008 R2 with ASM step by step Guide needed

    Hi,
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.
    Thanks in advance.
    Sujith

    Hi Sujith;
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.You need to install grid first(Software only) its neccessary for ASM, Than you need to use asmca to create asm disks than you need to install 11gr2
    All doc avaliable at:
    http://www.oracle.com/pls/db112/homepage
    Regard
    Helios

  • Install Oracle 9i on Fedora 11

    I am new to Oracle and Linux as in. Yah completely technical so can understand u completely.
    I have started taking in lectures for OCP and need to practice and learn ORACLE on linux in parallel.
    I am trying to install Oracle 9i on Fedora 11( cant opt cause i use it and its my preference)
    but i m getting these error.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2009-08-08_04-50-00AM/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    I dont know what is going wrong.
    system is : HP pavillion dv4-1131TX
    os : fedora 11
    dbms : oracle 91 cpio files ( 3).
    i followed the give instruction on a webpage all is going fine. but i cannot start the installer. Once it started but was showing "Link pending" while copying JRE indication.
    I have the jdk 1.6.13u installed and is working fine(set the paths for these one)
    I figured out tat oracle installation need 1.3.1_15 jre so i donwloaded it and kept besides the oracle files but have not set the path for the jre cause my JDK is using it..............................any suggestion / kickstart/ help/ indication / guidance will be severly appreciated.
    I need to do these as early as possible.
    Thanks in advnace

    1). Oracle 9i will be easily installed on these linux ?It will install easier on Oracle Linux than any other.
    2). These linux distro is more or less same like other linux distros (eg: ubuntu, fedora) i means i do and install other utilities and software for other type of usages ??Since OEL is intended as an O/S for mostly servers, it may not include support for the very latest desktop / laptop hardware. It may not include consumer-type applications like MP3 players either.
    3). I will not have to pay for any type of repo access or packages installation ???No, you are welcome to download, install and use OEL without any charge. You can get it from the edelivery.oracle.com site, or access it piecemeal at the http://public-yum.oracle.com web site.
    If you want support or updated RPM packages since that distribution release, only then will you need to purchase a subscription.
    So, use the original distribution RPM packages for free (edelivery or public-yum.oracle.com), only need paid subscription for updated RPM's or support.
    4). I will be install other locally downloaded softwares ( .rpm, .sh. .bin) files like netbeans, amrok wiht avi and mp3 capabilities for playing video tutorials, open office, acrobat reader, flash, burning software, gimp, matlab and saas ??????In general, yes, you can install software intended for Red Hat Enterprise Linux or Oracle Enterprise Linux.
    Check out the EPEL project (Extra Packages for Enterprise Linux) at http://fedoraproject.org/wiki/EPEL for an additional repository which may already have the extra software you are looking for.

  • ORA-12157 when installing Oracle 10g on Fedora 5?

    Hi, Im installing Oracle 10g on Fedora 5, I did it once, but when I tried to set it up again I
    got this error on the last part of the install...
    ORA-12157: TNS: internal network communication error
    Anybody know what might cause this?
    I think I have installed all required RPMs and set environment variables, kernel parameters,
    created oracle users and groups as needed, but still get the above error. I searched the error and some claim it is a problem using newer glibc 2.4.4, so I tried installing on Fedora 4 and had the same error even with glibc 2.3???
    Thanks so much,
    Jon

    Oracle Database 10g Release 2 (10.2.0.1) Installation On Fedora Core 5 (FC5 X86) Step by Step
    This is a Server Installation with a minimum of 2G swap, secure Linux disabled and the following package groups installed:
    Editors
    Graphical Internet
    Administration Tools
    Base
    X Window System
    System Tools
    Server Configuration Tools
    GNOME Desktop Environment
    Development Libraries
    Development Tools
    Legacy Development Support
    Legacy Server Support
    Alternative installations may require more packages to be loaded, in addition to the ones listed below.
    Download Software
    Unpack Files
    Hosts File
    Set Kernel Parameters
    Setup
    Installation
    Post Installation
    Download Software
    Download the following software:
    Oracle Database 10g Release 2 (10.2.0.1) Software
    openmotif21-2.1.30-14.i386.rpm
    Unpack Files
    Unzip the files:
    unzip 10201_database_linux32.zipYou should now have a single directory containing installation files. Depending on the age of the download this may either be named "db/Disk1" or "database".
    Hosts File
    The /etc/hosts file must contain a fully qualified name for the server:
    <IP-address> <fully-qualified-machine-name> <machine-name>Set Kernel Parameters
    Add the following lines to the /etc/sysctl.conf file:
    kernel.shmall = 2097152
    kernel.shmmax = 2147483648
    kernel.shmmni = 4096
    # semaphores: semmsl, semmns, semopm, semmni
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default=262144
    net.core.rmem_max=262144
    net.core.wmem_default=262144
    net.core.wmem_max=262144Run the following command to change the current kernel parameters:
    /sbin/sysctl -pAdd the following lines to the /etc/security/limits.conf file:
    * soft nproc 2047
    * hard nproc 16384
    * soft nofile 1024
    * hard nofile 65536Add the following line to the /etc/pam.d/login file, if it does not already exist:
    session required /lib/security/pam_limits.soDisable secure linux by editing the /etc/selinux/config file, making sure the SELINUX flag is set as follows:
    SELINUX=disabledAlternatively, this alteration can be done using the GUI tool (Desktop > System Settings > Security Level). Click on the SELinux tab and disable the feature.
    Setup
    Install the following packages:
    # From Fedora Core 5 DVD
    cd /media/dvd/Fedora/RPMS
    rpm -Uvh setarch-*
    rpm -Uvh --force tcl-*
    rpm -Uvh libXp-*
    rpm -Uvh openmotif-2*
    rpm -Uvh compat-db-*
    rpm -Uvh compat-libstdc++-33*
    rpm -Uvh compat-libf2c-32-*
    rpm -Uvh compat-gcc-32-*
    rpm -Uvh libaio-*
    rpm -Uvh compat-gcc-32-c++-*
    rpm -Uvh compat-libstdc++-296*
    rpm -Uvh compat-libgcc-296*
    # From download
    rpm -Uvh openmotif21-2.1.30-14.i386.rpmCreate the new groups and users:
    groupadd oinstall
    groupadd dba
    groupadd oper
    useradd -g oinstall -G dba oracle
    passwd oracleCreate the directories in which the Oracle software will be installed:
    mkdir -p /u01/app/oracle/product/10.2.0/db_1
    chown -R oracle.oinstall /u01Login as root and issue the following command:
    xhost +<machine-name>Edit the /etc/redhat-release file replacing the current release information (Fedora Core release 5 (Bordeaux)) with the following:
    redhat-4Login as the oracle user and add the following lines at the end of the .bash_profile file:
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=TSH1; export ORACLE_SID
    ORACLE_TERM=xterm; export ORACLE_TERM
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
    CLASSPATH=$ORACLE_HOME/jre:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH
    if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
    else
    ulimit -u 16384 -n 65536
    fi
    fiInstallation
    Log into the oracle user. If you are using X emulation then set the DISPLAY environmental variable:
    DISPLAY=<machine-name>:0.0; export DISPLAYStart the Oracle Universal Installer (OUI) by issuing the following command in the database directory:
    ./runInstallerEnter the appropriate ORACLE_HOME and name then continue with the installation.
    During the installation, before the linking phase, edit the contents of the "$ORACLE_HOME/bin/gennttab" file, amending the following entries:
    # Change this...
    LIB=`$ECHO ${TtoLIB} | $SED 's/ /\\
    /g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
    INI=`$ECHO ${TtoINI} | $SED 's/ /\\
    /g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
    BAS=`$ECHO ${TtoBAS} | $SED 's/ /\\
    /g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
    # To this...
    LIB=`$ECHO ${TtoLIB} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
    INI=`$ECHO ${TtoINI} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
    BAS=`$ECHO ${TtoBAS} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`If you don't do this the ntcontab will hang indefinitely during the linking phase.
    Post Installation
    Edit the /etc/redhat-release file restoring the original release information:
    Fedora Core release 5 (Bordeaux)Finally edit the /etc/oratab file setting the restart flag for each instance to 'Y':
    TSH1:/u01/app/oracle/product/10.2.0/db_1:Y
    Ref.: http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnFedora5.php

  • How to install Oracle 11gR2 on Windows 7

    Hi friend;
    There are many questions about *"how we can make instalaltion on win7"*. Thatswhy i made one video tutorial which is mention *"How to install Oracle 11gR2 on Windows 7*
    Its avaliable at my blog:
    *http://heliosguneserol.wordpress.com/*
    Hope it helps who need to make this installation
    Regard
    Helios

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • Getting Problem installing Oracle 11gR2 on Windows 7 x64

    Hello everyone,
    beforhand thank you for helping a rookie. :-)
    I getting an error message that my installation path contains empty spaces. C:\Program Files\....
    In previous Releases of Oracle you could cancel these error message. Not in 11gR2.
    Does anyone know a solution to install Oracle 11gR2 Client in the Windows Program Files (x86) / Program Files folder?
    I modified the *.rsp File line "Complete path of the Oracle Home" with double quotes like in the previous Versions.
    tried the environment variable "%...%" and also the DOS writing style "PROGRA~2".
    Oracle takes over the complete notation.
    Iam Working on a Windows 7 64 Bit Machine with an english Kernel.
    Have to install: Oracle Client 11gR2 64 bit
    Thank you in advance.
    Best regards

    Was there ever any thoughts on this issue? I'm using Oracle 11G R1 and it lets me cancel past errors saying I can't install to c:\program files\oracle because it has spaces and the programs I use also work perfectly fine.
    Now, we're using Win 7, thus want to use Oracle 11G R2 so it won't fail OS checks and why not use the newest, right? Well, as stated here, you cannot cancel past "space" error any longer. I was going to try %programfiles% but it appears that that won't work; LAME!
    Also, the runtime install for R2 says it's going to be 200MB more than the runtime install for R1, why would that be the case? That's a LOT more!
    Thanks, Nick

  • Installing Oracle 11gR2 RAC issue

    I am installing Oracle 11gR2(11.2.0.3) RAC on RHEL 5.6. I am facing "TCP connectivity check failed" on my precheck using CVU
    Interface information for node "hublpr4"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU
    eth0   172.16.34.71    172.16.32.0     0.0.0.0         172.16.32.4     00:17:A4:77:08:10 1500
    eth1   192.168.10.3    192.168.10.0    0.0.0.0         172.16.32.4     00:17:A4:77:08:12 1500
    Interface information for node "hublpr3"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU
    eth0   172.16.34.69    172.16.32.0     0.0.0.0         172.16.32.4     00:17:A4:77:0C:30 1500
    eth1   192.168.10.2    192.168.10.0    0.0.0.0         172.16.32.4     00:17:A4:77:0C:32 1500
    Check: Node connectivity of subnet "172.16.32.0"
      Source                          Destination                     Connected?
      hublpr4[172.16.34.71]           hublpr3[172.16.34.69]           yes
    Result: Node connectivity passed for subnet "172.16.32.0" with node(s) hublpr4,hublpr3
    Check: TCP connectivity of subnet "172.16.32.0"
      Source                          Destination                     Connected?
      hublpr3:172.16.34.69            hublpr4:172.16.34.71            failed
    ERROR:
    PRVF-7617 : Node connectivity between "hublpr3 : 172.16.34.69" and "hublpr4 : 172.16.34.71" failed
    Result: TCP connectivity check failed for subnet "172.16.32.0"
    Check: Node connectivity of subnet "192.168.10.0"
      Source                          Destination                     Connected?
      hublpr4[192.168.10.3]           hublpr3[192.168.10.2]           yes
    Result: Node connectivity passed for subnet "192.168.10.0" with node(s) hublpr4,hublpr3
    Check: TCP connectivity of subnet "192.168.10.0"
      Source                          Destination                     Connected?
      hublpr3:192.168.10.2            hublpr4:192.168.10.3            failed
    ERROR:
    PRVF-7617 : Node connectivity between "hublpr3 : 192.168.10.2" and "hublpr4 : 192.168.10.3" failed
    Result: TCP connectivity check failed for subnet "192.168.10.0"
    Interfaces found on subnet "172.16.32.0" that are likely candidates for VIP are:
    hublpr4 eth0:172.16.34.71
    hublpr3 eth0:172.16.34.69
    WARNING:
    Could not find a suitable set of interfaces for the private interconnect
    Checking subnet mask consistency...
    Subnet mask consistency check passed for subnet "172.16.32.0".
    Subnet mask consistency check passed for subnet "192.168.10.0".
    Subnet mask consistency check passed.
    Result: Node connectivity check failed
    Checking multicast communication...
    Checking subnet "172.16.32.0" for multicast communication with multicast group "230.0.1.0"...
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    Checking subnet "172.16.32.0" for multicast communication with multicast group "224.0.0.251"...
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    Checking subnet "192.168.10.0" for multicast communication with multicast group "230.0.1.0"...
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    Checking subnet "192.168.10.0" for multicast communication with multicast group "224.0.0.251"...
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.2" on node "hublpr3"

    Try following metalink note for sorting out multicast issues.
    Oracle Grid Infrastructure 11.2.0.2 Installation or Upgrade may fail due to Multicasting Requirement [ID 1212703.1]

  • ASM configureation while installing oracle 11gR2 db

    hi all,
    I want to install oracle 11gr2 with ASM on windows 7.
    can any one tell me how to install step by step?
    Thanks and Regards,
    Vikash (junior DBA)

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • How to install oracle 9i in fedora core6

    Hi.
    Currently I trying to install installed Oracle 9i database on fedora core 6...
    I am fecing some problem during this installation......
    please give me step by step procedure for oracle 9i installation in fedora core 6...
    I tried to install oracle10g in fedora core 6, its working fine but Currerntly I want to work in oracle 9i......
    please guide me..
    thanks in advance..
    [email protected]

    Duplicate Thread:
    Hpw to install oracle 9i in fedora core 6
    More detail over there.
    ~Jer

  • Installing Oracle 11gR2 client from a batch file and it returns before done

    Hello,
    While installing Oracle 11gR2 client on XP and 7 from a batch file. When it launches the OUI from the batch file, it returns to the batch file before the installer finishes. So, there is no way for my script to know when the installer is done, or to glean a return code to test for success. This is particularly annoying...
    I've also used the "call" command to force my batch file to wait, to no avail. Anyone have any clues about this one?
    Thanks in advance!
    --Robert                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Srini,
    Awesome! Worked like a charm.
    Many thanks!
    --Robert                                                                                                                                                                                               

  • Can I install oracle 11gR2 on windows AD server?

    I have a windows 2008 sever which has AD installed, can I install oracle 11gR2 on it?

    If by AD you mean Active Directory, then it should not be an issue, as long as you meet minimum requirements - http://download.oracle.com/docs/cd/E11882_01/install.112/e10843/reqs.htm#i1011417
    HTH
    Srini

Maybe you are looking for

  • Remove intentation on first line

    Hi. I am using inCopy. Anyone who knows how to remove intentation (I hope that is the right word in English) on the first line in each box? Thankful for help with this annoying little thing

  • Satellite Pro P300-1AY - Where can I get new keyboard parts?

    Hey guys, I was wondering if you knew of any places where I could get a set of keys for the keyboard (as opposed to buying a new keyboard) and if possible; where I can get sets of keys for different keyboard layouts, such as AZERTY for example. Many

  • Hi I have following questions related to SAP AFS...

    Hi All, 1) What are the new transaction that come with SAP AFS ? 2) How do I create forms in SAP AFS ? It seems it does not support smartforms ? Thanks. Regards, Tushar.

  • Functional Specifications_SD Scenarios

    Hello Everybody, Can somebody provide some specific real time requirements of SD in an implementation project? and also explain about the legacy system (real time) eg: what are all the fields it has, how did you map them to SAP fields etc... Point wi

  • New to Business Intelligence - Installation and Configuration

    Reading all the documents associated with OBIEE, OBIA, DAC server, DAC client, and Informatica Powercenter has my head swimming (drowning). Can someone throw me a rope? I'm going through an eBS implementation with 11g DB and 12.0.6 eBS (all on Linux)