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

Similar Messages

  • Install oracle 10g on fedora 9

    Hi,
    I want to install oracle 10g on fedora 9. is it possible.
    If yes
    I download oracle 10g for linux from
    [form oracle.com|http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201linuxsoft.html]
    and when i run it on fedora 9 it give me error like
    Using paramFile: /10201_database_linux32/database/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
                                          Failed <<<<
    Exiting Oracle Universal Installer, log for this session can be found at /tmp/OraInstall2009-02-17_03-34-41PM/installActions2009-02-17_03-34-41PM.logIf i need to download diff s/w please send me any link or it is not supported.
    Thanks

    Umesh,
    I don't think so it supported but you can download oracle for enterprise linux and try it out.
    http://edelivery.oracle.com/linux
    For platform certification see following link,
    http://www.oracle.com/technology/support/metalink/index.html
    Regards

  • 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 10g  on Fedora *

    Hi,
    I have fedora 8 on my laptop.
    I am trying to install Oracle 10g on Fedora 8.
    while installing Oracle, I am getting the following error.
    "java: xcb_xlib.c:50: xcb_xlib_unlock: Assertion 'c->xlib.lock' failed "
    How do I resolved this error???
    Can you suggest me what are pre requirement packages for Install Oracle 10g on Fedora 8??
    Otherwise,
    Can you help me What are steps to follow to install on Fedora 8 ??
    Thanks for your time and attention,
    Satish

    Hi, I'm also trying to install Oracle 10g on Fedora 8 but I have the following problem: whenever I run the runInstaller file, I get this message:
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-09-06_03-23-01PM. Please wait ...[oracle@dhcppc0 ~]$ Exception in thread "main" java.lang.UnsatisfiedLinkError
    : /tmp/OraInstall2008-09-06_03-23-01PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    Can anyone please help? Thanks a lot!

  • Gives  ORA-12560: TNS: protocol adapter error when installing oracle 10g

    I tried to install oracle 10g r2 in server 2008. but it gives ORA-12560: TNS: protocol adapter error when installing. how I can fix this issue??? please help me ASAP. because its urgent.
    thanks in advance.
    chamara

    Welcome to the forums !
    Pl indicate which version of 10g you are installing and on which version of Win 2008. Neither 10gR1 nor 10gR2 are certified to be installed on Win 2008 R1, AFAIK.
    For 10gR2, only 10.2.0.5 is certified for Win 2008 R2 - see MOS Doc 1173433.1 (How to Install Oracle 10.2.0.5 on MS Windows 7 / Windows 2008R2)
    Also see MOS Doc 740926.1 (Where can I find the Database / Client software to download for Microsoft Vista, or Windows 2008R1?).
    Both 10gR1 and 10gR2 are now in extended support - is there a reason you are not using 11gR2 ?
    HTH
    Srini

  • Error message when installing Oracle 10g on Windows XP Professional

    Hello,
    I need help installing oracle 10g database. When I attempt to run the installation from the setup.exe icon, I get a message that says
    "Error in writing to directory C:\Documents and Settings\Owner\Local Settings\Temp\OraInstall2007-04-29_01-19-29PM. Please ensure this directory is writable and has atleast 45Mb of disk space. Installation cannot continue."
    When I try to open the installation from the Autorun icon, it points to an innability to find setup.exe and when I go back to Setup.exe, it gives me the above error. Everytime I try to run the installation and it fails, the installation leaves a folder in my Temp folder with the above format. Any help would be appreciated. Thank you.

    I do have administrative privilege on my computer and I have plenty of space. I have 80gb of free space. What do I do to successfully install the software without incurring those messages I displayed in my first thread?

  • ORA-12154 while installing Oracle 10g on windows 7

    Hi,
    I am trying to install Oracle 10g express edition on my machine (core 2 duo 2.93) running on Windows 7.
    The installation moves on perfectly for the 1st step and while running the 2nd step (Net configuration Assistant), it gives the ORA-12154 error.
    The contents of my configuration files at this point are as follows:
    Listener.ora
    =============
    SID_LIST_ORCL =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORCL)
    (ORACLE_HOME = F:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    ORCL =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    =============
    And that of tnsnames.ora is:
    =============
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ORCL)
    =============
    After some googling around, I have found and installed the Microsoft Loopback adapter too (since my LAN is DHCP enabled) and also tried to turn on the firewall on my machine to check if it is not a problem with the port 1521 being blocked by the firewall.
    However, even after all that I still get the error "ORA-12154: TNS:could not resolve the connect identifier specified." while running the Net configuration Assistant and/or running SQL Plus to connect to the SID - ORCL.
    I can only see one service running in my services by the name : OracleOraDb10g_home1TNSListenerORCL
    Any suggestions or advice on the error would be much welcome.
    Is it anything related to Windows 7 ? Because I have managed to install using the same installer on another machine which runs Windows XP and everything seems fine there.
    Thanking you all in anticipation.
    Shreyas

    user12753151 wrote:
    Hmmm.. but then I'd have expected some installation error. I have read around that people have managed to install oracle on windows 7.
    The error displayed seems to be indicating that there is some configuration or permissions issue.Check that the user has permission to write in the ORACLE_HOME\network\admin - UAC might be blocking that.
    Install with software only, and run netca & dbca separately to create the database after the s/w install. (That's the way it is done in production anyway, so get used to it.)
    But yes - you still may have problems. Those who did fake it out on Windows 7 usually understand what to do. If you are smart enough to actually do it, my hat is off to you.

  • Ora-00604 while installing Oracle 10g on Windows XP SP2

    I was installing Oracle 10g on Windows XP but the dbca was failling. So I tried to create a database manually.
    But every time I launch this:
    "SQL> startup nomount pfile="C:\oracle\product\10.2.0\admin\XP10G\scripts\initXP10G.ora";"
    I always had:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02248: invalid option for ALTER SESSION
    I tried to change some memory value in the init*.ora without more success.
    So if anyone has been had such issue; he would be an help for me.
    Thansks
    MUGANGA

    initXP10G.ora is a 3 Kbytes file created by OEM and updated by Dos edit program. Here bellow is the contain:
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Cache and I/O
    db_block_size=8192
    db_cache_size=25165824
    db_file_multiblock_read_count=16
    # File Configuration
    control_files=("C:\oracle\product\10.2.0\oradata\XP10G\control01.ctl", "C:\oracle\product\10.2.0\oradata\XP10G\control02.ctl", "C:\oracle\product\10.2.0\oradata\XP10G\control03.ctl")
    db_recovery_file_dest=C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Cursors and Library Cache
    open_cursors=150
    processes=100
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\bdump
    core_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\cdump
    user_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\udump
    # Miscellaneous
    compatible=10.2.0.1.0
    # Job Queues
    job_queue_processes=10
    # Database Identification
    db_domain=""
    db_name=XP10G
    # SGA Memory
    sga_target=177209344
    # Processes and Sessions
    processes=150
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=XP10GXDB)"
    # Security and Auditing
    audit_file_dest=C:\oracle\product\10.2.0\admin\XP10G\adump
    remote_login_passwordfile=EXCLUSIVE
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=58720256
    shared_pool_size=83886080
    nls_territory='SWITZERLAND'
    nls_language='FRENCH'

  • Problem when installing oracle 10g on RHEL-4

    greetings,
    i have been trying to install oracle 10g on my linux machine for the past 10 days, everytimje i do all the steps and change the kernel parameters but when i start the runinstaller file. i get the folloeing error.
    I don't know what this error is or why is it happening
    you can find a snapshot of the error on the following link
    http://www.4shared.com/dir/4180305/6152dc22/Oracle_errors.html
    also another error is arising when i log in to the linux box with the user oracle... i have been having these errors for the past 10 days and i reached to the point where my knowledge won't help me more than ur experiences.
    a snapshot of this error also is available in the above link

    While I understand a picture is worth a thousand words, I backed off from the site as soon as it started providing active ads and spy-ware-like indications. If you want help (from me at least) please describe the symptoms.
    You could also use the following sites to help with the install:
    http://www.puschitz.com and http://ivan.kartik.sk

  • ACL Error when install Oracle 10G on Windows XP

    I tried to install Oracle 10G Personal Edition on my Windows XP box. I see the following error in the log file:
    INFO: Calling Action w32OcxRegActions10.2.0.0.0 RegisterOCX
    OcxPath = C:\oracle\product\10.2.0\db_1\oraconfig\oraconfigps10.dll
    WorkingDir = C:\oracle\product\10.2.0\db_1\oraconfig
    INFO: Calling Action SpawnActions10.1.0.2.0 Spawn
    installcommand = "C:\oracle\product\10.2.0\db_1\oraconfig\ocfgperm" -aa {A1F205B4-4418-11D2-B2F1-00805FC19E2E} set ORA_DBA permit
    deinstallcommand = null
    WaitForCompletion = true
    INFO:
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: ERROR: Cannot add user to application access ACL.
    No mapping between account names and security IDs was done.(534)
    INFO: End output from spawned process.
    In addition if I try to create a DB later via command line or via the DB Config tool I get all these windows dialogs popping up saying: "Oracle SQL*PLUS has encountered a problem and needs to close. We are sorry for the inconvenience."
    Any ideas what might be wrong with my installation?
    David

    Hi David,
    i got the same error on a Windows 2003 Server. At this time no password was set for the Administraor account!.
    After setting a password for the Administraor i could install the SW withaout any Problem!
    Rudi

  • Problem faced when installing oracle 10g

    i faced this problem when intalling oracle 10g in windows xp. this dos prompt opens for 5 min. and then it get closed..after tht nuthing happens.
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2. Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 4
    294967296 Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS~
    1\Temp\OraInstall2006-09-02_03-43-19AM. Please wait ...

    Check the directory read-write permission and the space on the C:\ Drive C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2006-09-02_03-43-19AM.
    Actually Oracle Installer might be trying to create log file and due to above two reason not able to proceed.

  • Error in GetCurrentDir(): 13 when installing oracle 10g software

    Hi Basis Expert,
    We are doing an Mock System Upgrade.
    So now we are installing
    Before upgrade
    BW 3.5 with oracle 10g (10.2.0.4)
    After upgrade
    BI 7.0 with oracle 11g (11.2.0.4)
    When installing the Oracle 10g software we are getting an error
    Error in GetCurrentDir(): 13
    Error in GetCurrentDir(): 13
    Error in GetCurrentDir(): 13
    Starting Oracle Universal Installer...
    Our OS is AIX 5.3
    Please help us in fixing this issue
    Regards,
    Anil Shenoy

    [While Installing Oracle software facing "Error in GetCurrentDir(): 13" [ID 378393.1]|https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=378393.1]
    Solution
    In order to get rid of this problem, please check for the following.
    1. You are logged in as the oracle user and group which owns the oraInventory (if this is not the first install on this system)
    2. You have read/execute permissions on the source files/directories (CD-ROMor CD-ROM image)
    3. You have write permissions on the target directory (ORACLE_HOME)
    4. When the target filesystem for ORACLE_HOME is unmounted the directory for the mount point has rwx permissions for the oracle user
    If this is the first Oracle software to be installed on this system you can ignore item 1 as it will create a new oraInventory with the correct permissions. For item 4, unmount the filesystem and "chmod 777" the directory used for the mount point, then remount the filesystem. Item 4 is actually a somewhat frequent issue on AIX.
    If none of the above solves your problem, the only alternative left would be, to copy the Staging directory (Disk1 of Install) to /tmp directory and proceed with the installation.

  • Perl error when installing Oracle 10g in a Window XP

    After I install Oracle Enterprise Manager 10g Grid Control in a Window XP SP2 environment, and appears the next message: "perl.exe has encountered a problem and needs to close. We are sorry for the inconvenience."
    And in some logs appears Errors, like in OC4J~OC4J_EM~default_island~1:
    08/04/30 11:46:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
    08/04/30 11:46:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
    08/04/30 11:46:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:239)
    between other errors in other logs.
    I need to configure the snmp agent and subagent, but it doesnt work correctly :(
    If someone can help me with this problems please I will so thank.
    Gabriela

    Hi,
    As you are new I would like to explain you more. First please confirm whether you have Oracle support. Metalink can be accessed only when you have oracle support.
    Regards
    Mudhalvan M.M

  • Oracle error ORA-00600 when using Oracle 10g and Sun One Web Server 6.1

    I have a java application that was running under Solaris 8 and Oracle 9i. I am trying to get it up and running on a new server that is configured with Solaris 9 and Oracle 10g. Whenever the application tries to connect to the database it receives the following error: ORA-00600 [ttcgcshnd-1][0]. My research indicates that this is an internal Oracle error that represents a low level unexpected condition. I have looked through my configuration for the Web Server and I have not been able to determine the cause of this problem. My DBA tells me that we have the latest patch installed for Oracle! Has anyone encountered this problem before? Any help would be greatly appreciated!

    If the problem is also present in a SWING app, i.e. outside the web server, then it is porbably something external to the webserver.
    I think you should ensure that the driver and database are compatible with each other. It is very likely that you need a new jdbc driver for the new database.
    download from here http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101020.html
    try the ojdbc14.jar

  • Please help me, a problem when install oracle 10g on the solaris 10

    currently, I am installing the oracle 10g on the solaris 10, I am using DHCP and
    my computer has no hostname, the following is copied from the 10g document,
    When you run Oracle Universal Installer, an error may occur if name resolution is not set up. To avoid this error, before you begin installation, you must ensure that host names are resolved only through the /etc/hosts file.
    To ensure that host names are resolved only through the /etc/hosts file:
    1.
    Verify that the /etc/hosts file is used for name resolution. You can do this by checking the hosts file entry in the nsswitch.conf file as follows:
    # cat /etc/nsswitch.conf | grep hosts
    The output of this command should contain an entry for files.
    2.
    Verify that the host name has been set by using the hostname command as follows:
    # hostname
    The output of this command should be similar to the following:
    myhost.mycomputer.com
    currently, when I use hostname command, it is unknown, what should I do to add
    my hostname? thanks

    Since this is related to Solaris, you will most likely get a better/faster response on a Sun Solaris forum rather than here.
    Srini

Maybe you are looking for