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!

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???

  • 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

  • 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

  • Prob Installing oracle 10g on fedora core-1

    i'm getting this error message while installing :
    [root@localhost cdrom]# ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-2.1, UnitedLinux-1.0 or redhat -3
    Failed <<<<
    I have installed the following pakcages:
    make-3.79
    binutils-2.11
    openmotif-2.2.2-16
    setarch-1.3-1
    compat-db-4.0.14.5
    compat-gcc-7.3-2.96.122
    compat-gcc-c++-7.3-2.96.122
    compat-libstdc++-7.3-2.96.122
    compat-libstdc++-devel-7.3-2.96.122
    WHAY I'M GETING THIS ERROR MSG AND HOW CAN I OVER COME IT

    hi tomva,
    at /etc/redhat-release this thing is written , think it's ok,
    Fedora Core release 1 (Yarrow)
    i've tried ./runInstaller -ignoreSysPrereq but showing the msg
    Checking operating system version: must be redhat-2.1, UnitedLinux-1.0 or redhat-3
    Failed <<<<
    Ignoring required pre-requisite failures. Continuing...Error: OUI cannot be launched because the current working directory is set on the CD-ROM mount point. Launching OUI from this directory will m ake it difficult to unmount the disk later in the installation. Please change the working directory and relaunch OUI.
    SHOULD I RUN THE INSTALLATION BY COPYING THE CDROM CONTENTS TO A DIRECTORY AND RUN FROM THAT DIRECTORY?

  • Installation of Oracle 10g over Fedora 8??,

    Hi,
    I am installing Oracle 10g over Fedora 8 running on VMWare .
    Now the problem that I am facing is listed below:-
    --> When i try to run ./runInstaller, it gives me some following error
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2010-01-17_08-46-12AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    --> When i tried to troubleshoot the same, i found out that i should execute the same using command "./runInstaller -jreLoc /usr/lib/jvm/jre". I don't know why, but the same was given on One Website. Please let me know for the same, as this worked once, and now when I am again trying to do the same, the oracle installer windows open, but with abnormal termination and threw this error
    java.lang.UnsatisfiedLinkError: /tmp/OraInstall2010-01-17_09-15-17AM/oui/lib/linux/liboraInstaller.so: /tmp/OraInstall2010-01-17_09-15-17AM/oui/lib/linux/liboraInstaller.so: cannot restore segment prot after reloc: Permission denied
    Please try and provide me solution for the same.
    Also, I wanted to ask that the prerequisite packages, which are needed to install. I install them using yum installer, which always downloads and updates the packages,, Isn't there anything which i can download the same well before and install everytime I needed it. Please clear my way for this, as I always wanted to find the solution for the same.
    Thanks..
    Edited by: user12289471 on Jan 16, 2010 11:14 PM

    Hi,
    Post your question in the appropriate Database Installation.
    Thanks,
    Hussein

  • Oracle 10g on Fedora Core 5

    Is there a pre-packaged version of Fedora Core 5 which includes Oracle 10g for Linux?
    This way, all you have to do is select Install Oracle 10g and it includes any special packages for installing Oracle 10g. Plus, after installation, it automatically starts up the Oracle 10g installer. It could even do the pre-installation stuff such as creating the oracle user. I do not know how, but this oracle user would be the only user using an old gcc compatible with Oracle software. Via its environment maybe?
    Right now, it is a Pain-in-the-neck to install Oracle on Linux. The installation guide Oracle provides is not enough. You have to do a search on the web for pages detailing more info. Or you have to install a special file or set variables to make the Oracle installer think it is installing on Red Hat Enterprise Linux. I have to hide the gcc that comes with Linux and install an old verison of it. At one time, I even had to compile a library so the java installer could run. This is ridiculous, I should not have to jump through hurdles to install Oracle.
    Does anyone out there have such a set of Fedora Core 5 ISO images? Shoot, FC4 would do too.

    No. I'm not particular to Fedora. Fedora has been a distribution which works on my (please don't laugh) emachines computer at home. I've had Oracle 9i enterprise installed on fedora core 3.
    Ubuntu and Debian are good distros as well. I have not been successfull with Suse though.
    Suse in the past -- the installer could not get the graphics correct -- garbage just displays -- so i could never install it. Maybe SuSe 10 has improved since then.
    I found this about Suse and Oracle. So, this may work for me. Otherwise, i will try Centos.
    http://www.novell.com/coolsolutions/tip/16193.html
    Thanks for the info.

  • Installation of Oracle 10g on Fedora 9

    OK,
    I need to install Oracle 10g R2 on fedora 9 OS.
    I have already tried 10201_database_linux32.zip, but it seems its not compatible with Fedora 9 as it says
    os version must be redhat -3, suse-9, redhat-4, unitedlinux-1,asianux-1 or asian ux-2
    Can anyone guide me with the proper installable of Oracle compatible with Fedora 9 and install instructions?
    Thanks in Advance

    Try using the doris script available here: http://dizwell.com/2008/05/01/doris-redux/
    Does the job in one command, and hides your operating system specifics from the Oracle installer while it does it.
    There's even a video of it being used here: http://dizwell.com/2008/09/29/proving-a-point/ Even though that's of 11g on Fedora 9, the script says it works for 10g on Fedora 9 in the same way. I haven't done that myself, but the site owner says he has, so you should be OK.

  • Installing Oracle 10G Express Edition on Linux after installing Libaio-0.3

    I had got a error while installing 10G Express Edition on Redhat Fedora core 4 linux after installing libaio-0.3.104-2.i386.rpm
    I had given the following command in Linux Command prompt to install the oracle database 10 G Express Edition (oracle-xe-10.2.0.1-1.0.i386.rpm)
    # sudo rpm -ivh /tmp/oracle-xe-10.2.0.1-1.0.i386.rpm
    The error I had got is as follows:
    Preparing.....#####################[100%]
    1:oracle-xe Warning:/etc/init.d/oracle-xe saved as /etc/init.d/oracle-xe.rpmorig
    error:Unpacking of archive failed on file /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/ons;4698950F:cpio:MD5 Sum Mismatch

    The steps I am asking is for installing oracle 10G express edition on Redhat Fedora core 4 Linux version. Now, after downloading the fresh copy of Oracle 10G express edition from the Oracle site. I have successfully installed oracle now.
    I was getting the following errors - I have pasted previous query for the problem which I had faced after installing Oracle 10 G Express Edition successfully on Redhat Fedora Core 4 Linux.
    The Previous Query is as follows:
    Thanks For Guiding Me All of you!
    Finally, I have installed Oracle 10G Express Edition on Redhat Fedora core 4 Linux.
    Now, I am having the following problems:
    After making the changes as per my Reference mentioned in my different messages, I had done the troubleshooting steps going to Options and setting the same.
    1.When I try to load the http://127.0.0.1:8080/apex page it gives an error popup:
    " The connection was refused when attempting to contact 127.0.0.1:8080 "
    2. After opening the Run the SQL Command Line by clicking on applications and When I say " Connect System and when prompted for password, I have entered the password and gives another error as follows:
    ORA-01034 : Oracle not available
    ORA-27101: Shared Memory realm does not exist
    Linux Error:2:No such file or directory
    3. When I try to manually start the Listener or Services, It gives one more error:
    Root Not a Member of DBA Group
    I need to What is happening or What is the Problem and How will I rectify them?

  • Is it possible to install Oracle 10g database on a linux Os ?

    Hello all,
    I recently installed Fedora 14, and oracle 10g free edition, on my modest laptop.
    Problem is , I can't upload any scripts, because as i recently learnt from my school teacher, Oracle only works smoothly with Internet explorer browser (i.e.).
    I tried using programs like winetricks to download a linux version of i.e. but in this case Oracle doesn't even open its homepage.
    -In a nutshell, does anyone know a possible way to work with oracle 10g , (or any alternative), that's fully functional on linux (fedora 14) ? Download, Install steps,etc.
    All i need to do is upload simple SQL scripts, and practice my " select from...." commands.
    -Is oracle linux a option ? and what is it?
    Thank you already for any replies, I'm really getting tired of googling threw different forums.

    865504 wrote:
    Ed,
    -i knew my teacher was being stubborn;
    -I meant that the winetricks version of i.e., didn't open the homepage of oracle 10g (=log in screen).
    -what i was trying to do was, after having installed oracle 10g , "go to data base homepage" (openend by firefox) , once logged in with my username, upload a script , and practice typing the different (select from ...group by..etc) sql commands.
    Here is one of several concepts you need to fix in your mind. Databases don't have home pages. Client applications do. Databases store and manage data. Humans at the keyboard see the client application, not the database. Oracle provides some client apps ( iSQLPlus, Oracle Enterprise Manager (Grid Control), dbcontrol, APEX) and even installs some with the database by default, but they are distinctly separate from the database, and so must be identified when talking about user interface issues. Unfortunately, telling us you tried to open "the home page of oracle" tells us nothing at all. If you had said "Tried to log in with iSQLPlus" or "I tried to connect with Apex", it would have conveyed MUCH more information. We would have then had some frame of reference as to what you were seeing.
    To the "upload from where" question : I simply copied the scripts ( .sql , file) from the pc's from school, on usb, then copied them on my own system. When using the "upload scripts" option from oracle, Again, you must distinguish between "oracle" (the database) and whatever client tool you use to connect to it. "Oracle" (the database) doesn't have an "upload scripts" option. Some un-named application does.
    the script is uploaded, but when i try to "run" it , nothing , blank page. no tables, nada. And given what I've said above, you can guess what this statement means. - grin -
    My first guess was, well the teacher said " i.e. only " , so i tried installing i.e. , using winetricks, but i had a feeling i was going off-track, and that surely there must have been a much easier way.
    Even Billy was more charitable toward your teacher than I feel. And when he is so wrong about something as simple as this, makes me wonder what else he is wrong about. And the quality of the teachers calls into question the quality of the school in general.
    In fact, had I been told that by an instructor, I would make it a personal mission to prove him wrong. Not in front of the class (as much short term satisfaction as that may provide) but just by taking my laptop to his office and saying "let me show you something". One of my personal hot buttons is for someone who should know better to pronounce something as "won't work" when I've been doing it for so long and so easily as to just take it for granted.
    >
    Linux (fedora 14) is up and running,
    oracle 10g , linux version, was installed using detailed guide.
    And yes, i will look into oracle linux, and oracle 11g ,
    but i was hoping to use the same version as my school, to avoid any surprises when passing my exams.Edited by: EdStevens on Jun 13, 2011 3:02 PM

  • ~~[DONE]~~ Installing Oracle 10g Rel. 2 on linux distros...

    Hello guys,
    I wanted to ask if anyone of you tried to install oracle 10g release 2 for personal use on any linux distro (free distros).
    If yes which linux did you try?
    Message was edited by:
    sysdba

    Choose the Linux distribution that makes you feel most comfortable. At the Linux level, there is very little difference between fedora core 4 and SUSE linux 9.2 (if there is, they are not allowed to use the label Linux). At the 'other stuff thrown in' level, which makes it a distro, you need to decide which is going to make you happiest.
    In any case, installing Oracle in Linux means you need to have the prerequisites set up. That means a specific version of the kernel, a specific set of libraries and a specific set of installed applications. If you have those, you follow a specific set of steps to install.
    Werner Puschitz helps you figure out the specific prerequisites at ttp://www.puschitz.com ... if you can not understand the prereqs and steps, then you might want to spend more time learning Linux basic admin until you are more comfortable otherwise you will get into some trouble down the road.
    Message was edited by:
    forbrich
    Message was edited by:
    forbrich

  • Oracle 10G on fedora 15

    Hi all,
    I want to install oracle 10G(10.2) Database express on fedora 15.
    I followed all the prescribed steps but still unable to get it done.That's why I had to post the question.
    I am writing all the commands that i used and also the errors so that you all may correct me.
    After increasing the swap size of my linux system to prescribed 1GB,I installed oracle 10G in my system.
    The swap files status is correctly shown using the swapon command,so this does not seems to be an issue.
    But the real problem starts when I try to start the listener.....
    The classpath settings in my /etc/profile is as follows:
    export ORACLE_HOME="/usr/lib/oracle/xe/app/oracle/product/10.2.0/server"
    export PATH=$ORACLE_HOME/bin:$PATH:/usr/local/jdk/bin:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/lsnrctl:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus:/usr/lib/oracle
    export ORACLE_SID="XE"
    export NLS_LANG="AMERICAN_AMERICA.US7ASCII"
    export LD_LIBRARY_PATH="ORACLE_HOME/lib:$LD_LIBRARY_PATH"
    export SQLPATH="$ORACLE_HOME/sqlplus/admin"
    Now where am i wrong in these settings,if i am?
    The listener.ora file is
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    # (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE)) //I have commented this line//
    (ADDRESS = (PROTOCOL = TCP)(HOST = shekhar)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    Now ,the series of error appears when i try to login from sqlplus
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    also,I am unable to open the home page for my login on my browser.
    Starting the listener,by command lsnrctl start,i get following error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=shekhar)(PORT=1521)))
    TNS-12535: TNS:operation timed out
    TNS-12560: TNS:protocol adapter error
    TNS-00505: Operation timed out
    Linux Error: 110: Connection timed out
    I also get 'resource already in use' error sometimes.That is to say,I never have my listener started.Do I have to make any changes in my listener.ora file?
    That's all I have to mention.
    I request you all to please help me out of this problem.Any help will be really appreciated.
    Waiting for your reply.
    Thanks.....................................................

    Verify the hostname and IP address, that they resolve both ways (hostname and IP), also check netstat to ensure nothing else has the 1521 port in use. The HOST= listener entry ought to be the FQDN, it could be the IP, or when in doubt (i.e. if the host uses DHCP) the "any IP" address of 0.0.0.0 can also work. For the "easy" way out.
    $ hostname
    $ nslookup -sil <hostname>
    ... -> n.n.n.n
    $ nslookup -sil <n.n.n.n>
    ... -> <hostname>
    $ cat /etc/hosts
    127.0.0.1 localhost.localdomain localhost
    n.n.n.n <hostname>.<domainname> <hostname>
    $ netstat -an |egrep 1521
    # if there is a:
    ... tcp <n.n.n.n>:1521 0.0.0.0:* ... LISTEN...
    # pick a different port. Add the port# exception to the firewall. If you want remote connections.Is the network interface enabled?
    $ ifconfig -a
    ethN ... <n.n.n.n> ...Make sure it has an IPv4 address and its correct.
    export NLS_LANG="AMERICAN_AMERICA.US7ASCII"That isn't needed, and isn't correct, the character set should be AL32UTF8. And won't have any effect except for stuff you're running at the command line, i.e. expdp, the older exp, or some other client utility.
    ... IPC ... //I have commented this line//That's fine. It isn't needed.
    Check the alertlog for the startup attempt. The engine may gripe on a memory parameter setting, can't recall the exact error but it has to do with changes in shared memory stuff. I've installed to Fed15 with no trouble, other than having a few MB short of a full 1GiB allocated to swap.
    For trying startup/shutdown use a switch user oracle and the instance will be much happier. And add your userID to the ora group to allow a sysdba connection without using the su ... oracle bits, but only when you're not doing a startup.
    Sometimes the ...env.sh barfs on the NLS environment .sh call, but it's not critical. To make it really easy pull those bits from the ...env.sh into your own ora_env file to source.
    $ ... set environment <period><space>...OH/bin/oracle_env.sh
       # OR set up your own ~/ora_env
       $ cd
       $ egrep -v NLS ...OH/bin/oracle_env.sh > ora_env
       $ . ./ora_env
    $ sudo su - oracle -c "sqlplus /nolog"
    ... connect /as sysdba
    ... ? connected ... Idle Instance ? ... startup;
    $Edited by: clcarter on Jan 20, 2012 12:44 PM
    fix env .sh

  • Error in Installing Oracle 10g Express Edition Universal on WIndows2003

    While Installing Oracle 10g XE Universal On WIndows 2003 Server Standard Edition(Which is a standalone Machine). I got an following Error:
    Error No: 0x80040707
    Error Description: DLL Function Call Crashed: GetHostnameDll.getHostname.
    Plz find some solution for the above problem.

    Hi
    Here's the resolution that can work for you:
    Disable the "Print Spooler" service before running the installer.
    1.Open Control Panel: Start --> Settings --> Control Panel
    2.Double-click "Services"
    3.On the list of NT Services, right-click "Print Spooler"
    4.Select "Stop"
    5.Select "Properties"
    6.Under Startup Type, select "manual" or "disabled"
    7.Reboot your NT Server
    8.After rebooting, verify that the Print Spooler is still "stopped".
    9.Delete Program Files\Common Files\Installshield\Engine folder
    10.Re-run the installer.
    11.After installation, re-set the Print Spooler service to Startup type "Automatic" and start the service.
    Also, have a look at the installshield page: http://consumer.installshield.com/kb.asp?id=Q108167
    -Priya

  • 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?

  • Repeated ORA-12547 Messages after installing Oracle 10g

    Hi,
    I installed Oracle 10g on a Redhat ES 3 box, and the install went okay, but when I try and interact with the server I get the message:
    ORA-12547: TNS: lost contact
    For example, if I use the Database Configuration Assistant to attempt to create a database, I will see the above message when it begins the database creation process, or if I try to interact with the Oracle server using sqlplus I will see the above message after each command entered.
    I had recently tried to install Oracle 8.1.7 on the same box, but abandoned that after deciding that the effort required to link Oracle 8 on RHES3 just wasn't worth it. I have been told that this previous partial installation may be the cause of the problem, and have been advised to uninstall Oracle 8, uninstall Oracle 10g, and reinstall Oracle 10g. I find it hard to believe that it would require such an action to solve this problem. Is there any configuration changes I can make to resolve it? Also, what does this message actually mean?
    I am new to Oracle, so thanks for any help with this problem.
    Colm.

    My last message asking for a grater degree of specificity was not overly specific, hence I am posting the kernel parms that I have set with the hopes that you will spot one that I set improperly or one that I neglected to set.
    [root@awyr ~]# cat /proc/sys/kernel/shmmax
    2147483648
    [root@awyr ~]# cat /proc/sys/kernel/shmmni
    4096
    [root@awyr ~]# cat /proc/sys/kernel/shmall
    2097152
    [root@awyr ~]# ipcs -lm |grep "min seg size"
    min seg size (bytes) = 1
    [root@awyr ~]# cat /proc/sys/kernel/sem | awk '{print $1}'
    250
    [root@awyr ~]# cat /proc/sys/kernel/sem | awk '{print $2}'
    32000
    [root@awyr ~]# cat /proc/sys/kernel/sem | awk '{print $3}'
    100
    [root@awyr ~]# cat /proc/sys/kernel/sem | awk '{print $4}'
    128
    [root@awyr ~]# cat /proc/sys/fs/file-max
    65536
    [root@awyr ~]# cat /proc/sys/net/ipv4/ip_local_port_range
    1024 65000
    [oracle@awyr Desktop]$ ulimit -n
    63536
    [oracle@awyr Desktop]$ ulimit -u
    4091
    [oracle@awyr Desktop]$ ulimit -a
    core file size (blocks, -c) 0
    data seg size (kbytes, -d) unlimited
    file size (blocks, -f) unlimited
    max locked memory (kbytes, -l) 32
    max memory size (kbytes, -m) unlimited
    open files (-n) 63536
    pipe size (512 bytes, -p) 8
    stack size (kbytes, -s) 8192
    cpu time (seconds, -t) unlimited
    max user processes (-u) 4091
    virtual memory (kbytes, -v) unlimited
    from sysctl -a
    my fs.file-max = 65536
    in my limits.conf I added:
    oracle soft nofile 4096
    oracle hard nofile 63536
    in my (1) /etc/pam.d/system-auth (2) /etc/pam.d/sshd (3) /etc/pam.d/su (4) /etc/pam.d/login
    files I added:
    session required pam_limits.so
    and verified that it exists
    in my limits.conf I added
    oracle soft nproc 2047
    oracle hard nproc 16384
    my /etc/oratab has:
    orcl:/usr/local/oracle/app/oracle/oracle/product/10.2.0/db_1:N
    I tried to change the N at the end to a Y but to no avail
    my /etc/oraInst.loc has:
    inventory_loc=/usr/local/oracle/app/oracle/oraInventory
    inst_group=oinstall
    Thanks again for your atention
    Richard

Maybe you are looking for

  • How can i transfer a digital movie from one apple id to another apple id?

    how can i transfer a digital movie from one apple id to another apple id?

  • Installed ios7 on iphone 4, now my phone wont turn on or recover?

    I downloaded ios 7 over night and it worked fine, but yesterday just turned off and wont turn on again. I connect it to a wall charger and the apple logo appears then goes off and this keeps repeating. I connected it to itunes doing the thing where y

  • Error while running Online Adobe Interactive Forms

    Hi I'm successful in running a Offline Interactive Form.  But when executing a Online Interactive Form example Im getting the below error. com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:    

  • Motorola Droid 3 Continues to Freeze

    Ive had my Droid 3 for a little over a year and yesterday it just started freezing up, especially when I open/shut the keyboard.  The only way to get it back is to pull the battery.  Ive tried uninstalling all of my unused applications, deleting my p

  • Distributed Objects over the internet

    I'm hoping that someone can help me out here. I'm trying to get distributed objects to work on a game I'm developing. I can make it work if I run both the 'server' and the 'client' on the same machine, but when I try to set it up for use over a netwo