Failed Installation of Oracle8i on Red Hat Linux 7.0

Hi,
I have successfully installed Oracle8i(8.1.6) Enterprise edition on Red Hat Linux 7.0 but while running the Database Configuration Assistant, it stops at the database initialization portion. I suspect the initmig8i.ora file is causing the problem. I have followed the installation guide very closely and the SID is mig8i. What might be the problem causing it to stop? Now, I can't connect to database.
initmig8i.ora located at
/u01/app/oracle/admin/mig8i/pfile
# Copyright (c) 1991, 1998 by Oracle Corporation
# Example INIT.ORA file
# This file is provided by Oracle Corporation to help you customize
# your RDBMS installation for your site. Important system parameters
# are discussed, and example settings given.
# Some parameter settings are generic to any size installation.
# For parameters that require different values in different size
# installations, three scenarios have been provided: SMALL, MEDIUM
# and LARGE. Any parameter that needs to be tuned according to
# installation size will have three settings, each one commented
# according to installation size.
# Use the following table to approximate the SGA size needed for the
# three scenarious provided in this file:
# -------Installation/Database Size------
# SMALL MEDIUM LARGE
# Block 2K 4500K 6800K 17000K
# Size 4K 5500K 8800K 21000K
# To set up a database that multiple instances will be using, place
# all instance-specific parameters in one file, and then have all
# of these files point to a master file using the IFILE command.
# This way, when you change a public
# parameter, it will automatically change on all instances. This is
# necessary, since all instances must run with the same value for many
# parameters. For example, if you choose to use private rollback' segments,
# these must be specified in different files, but since all gc_*
# parameters must be the same on all instances, they should be in one file.
# INSTRUCTIONS: Edit this file and the other INIT files it calls for
# your site, either by using the values provided here or by providing
# your own. Then place an IFILE= line into each instance-specific
# INIT file that points at this file.
# NOTE: Parameter values suggested in this file are based on conservative
# estimates for computer memory availability. You should adjust values upward
# for modern machines.
db_name = "mig8i"
instance_name = mig8i
service_names = mig8i
control_files = ("/u01/app/oracle/oradata/mig8i/control01.ctl", "/u01/app/oracle/oradata/mig8i/control02.ctl", "/u01/app/oracle/oradata/mig8i/control03.ctl")
open_cursors = 100
max_enabled_roles = 30
db_block_buffers = 2048
shared_pool_size = 4194304
large_pool_size = 614400
java_pool_size = 0
log_checkpoint_interval = 10000
log_checkpoint_timeout = 1800
processes = 50
log_buffer = 163840
# audit_trail = false # if you want auditing
# timed_statistics = false # if you want timed statistics
# max_dump_file_size = 10000 # limit trace file size to 5M each
# Uncommenting the lines below will cause automatic archiving if archiving has
# been enabled using ALTER DATABASE ARCHIVELOG.
# log_archive_start = true
# log_archive_dest_1 = "location=/u01/app/oracle/admin/mig8i/arch"
# log_archive_format = arch_%t_%s.arc
# If using private rollback segments, place lines of the following
# form in each of your instance-specific init.ora files:
#rollback_segments = ( RBS0, RBS1, RBS2, RBS3, RBS4, RBS5, RBS6 )
# Global Naming -- enforce that a dblink has same name as the db it connects to
# global_names = false
# Uncomment the following line if you wish to enable the Oracle Trace product
# to trace server activity. This enables scheduling of server collections
# from the Oracle Enterprise Manager Console.
# Also, if the oracle_trace_collection_name parameter is non-null,
# every session will write to the named collection, as well as enabling you
# to schedule future collections from the console.
# oracle_trace_enable = true
# define directories to store trace and alert files
background_dump_dest = /u01/app/oracle/admin/mig8i/bdump
core_dump_dest = /u01/app/oracle/admin/mig8i/cdump
#Uncomment this parameter to enable resource management for your database.
#The SYSTEM_PLAN is provided by default with the database.
#Change the plan name if you have created your own resource plan.# resource_manager_plan = system_plan
user_dump_dest = /u01/app/oracle/admin/mig8i/udump
db_block_size = 8192
remote_login_passwordfile = exclusive
os_authent_prefix = ""
compatible = "8.0.5"
sort_area_size = 65536
sort_area_retained_size = 65536
Thank you.
null

Richard,
It's a glib problem. 8i uses the glib 2.1 libraries, while RH7 uses the 2.2. There is a patch available from oracle support, or you can find a solution that has worked for me twice on the otn discussion forum.
Cory Franzmeier
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Richard Yip ([email protected]):
Hi,
I have successfully installed Oracle8i(8.1.6) Enterprise edition on Red Hat Linux 7.0 but while running the Database Configuration Assistant, it stops at the database initialization portion. I suspect the initmig8i.ora file is causing the problem. I have followed the installation guide very closely and the SID is mig8i. What might be the problem causing it to stop? Now, I can't connect to database.
initmig8i.ora located at
/u01/app/oracle/admin/mig8i/pfile
# Copyright (c) 1991, 1998 by Oracle Corporation
# Example INIT.ORA file
# This file is provided by Oracle Corporation to help you customize
# your RDBMS installation for your site. Important system parameters
# are discussed, and example settings given.
# Some parameter settings are generic to any size installation.
# For parameters that require different values in different size
# installations, three scenarios have been provided: SMALL, MEDIUM
# and LARGE. Any parameter that needs to be tuned according to
# installation size will have three settings, each one commented
# according to installation size.
# Use the following table to approximate the SGA size needed for the
# three scenarious provided in this file:
# -------Installation/Database Size------
# SMALL MEDIUM LARGE
# Block 2K 4500K 6800K 17000K
# Size 4K 5500K 8800K 21000K
# To set up a database that multiple instances will be using, place
# all instance-specific parameters in one file, and then have all
# of these files point to a master file using the IFILE command.
# This way, when you change a public
# parameter, it will automatically change on all instances. This is
# necessary, since all instances must run with the same value for many
# parameters. For example, if you choose to use private rollback' segments,
# these must be specified in different files, but since all gc_*
# parameters must be the same on all instances, they should be in one file.
# INSTRUCTIONS: Edit this file and the other INIT files it calls for
# your site, either by using the values provided here or by providing
# your own. Then place an IFILE= line into each instance-specific
# INIT file that points at this file.
# NOTE: Parameter values suggested in this file are based on conservative
# estimates for computer memory availability. You should adjust values upward
# for modern machines.
db_name = "mig8i"
instance_name = mig8i
service_names = mig8i
control_files = ("/u01/app/oracle/oradata/mig8i/control01.ctl", "/u01/app/oracle/oradata/mig8i/control02.ctl", "/u01/app/oracle/oradata/mig8i/control03.ctl")
open_cursors = 100
max_enabled_roles = 30
db_block_buffers = 2048
shared_pool_size = 4194304
large_pool_size = 614400
java_pool_size = 0
log_checkpoint_interval = 10000
log_checkpoint_timeout = 1800
processes = 50
log_buffer = 163840
# audit_trail = false # if you want auditing
# timed_statistics = false # if you want timed statistics
# max_dump_file_size = 10000 # limit trace file size to 5M each
# Uncommenting the lines below will cause automatic archiving if archiving has
# been enabled using ALTER DATABASE ARCHIVELOG.
# log_archive_start = true
# log_archive_dest_1 = "location=/u01/app/oracle/admin/mig8i/arch"
# log_archive_format = arch_%t_%s.arc
# If using private rollback segments, place lines of the following
# form in each of your instance-specific init.ora files:
#rollback_segments = ( RBS0, RBS1, RBS2, RBS3, RBS4, RBS5, RBS6 )
# Global Naming -- enforce that a dblink has same name as the db it connects to
# global_names = false
# Uncomment the following line if you wish to enable the Oracle Trace product
# to trace server activity. This enables scheduling of server collections
# from the Oracle Enterprise Manager Console.
# Also, if the oracle_trace_collection_name parameter is non-null,
# every session will write to the named collection, as well as enabling you
# to schedule future collections from the console.
# oracle_trace_enable = true
# define directories to store trace and alert files
background_dump_dest = /u01/app/oracle/admin/mig8i/bdump
core_dump_dest = /u01/app/oracle/admin/mig8i/cdump
#Uncomment this parameter to enable resource management for your database.
#The SYSTEM_PLAN is provided by default with the database.
#Change the plan name if you have created your own resource plan.# resource_manager_plan = system_plan
user_dump_dest = /u01/app/oracle/admin/mig8i/udump
db_block_size = 8192
remote_login_passwordfile = exclusive
os_authent_prefix = ""
compatible = "8.0.5"
sort_area_size = 65536
sort_area_retained_size = 65536
Thank you.<HR></BLOCKQUOTE>
null

Similar Messages

  • Installation of EBS 11.5.9 on Red Hat Linux AS 4 fails

    I am trying to install Oracle Applications 11.5.9 on Red Hat Linux AS 4. During pre-installation test , it is failing in two test viz. File Space Check and Writing Permissions....and saying insufficient privileges....I am trying to install with user root after creating two required users. What could be the problem?

    do the follwong as root
    chown ur_user:ur_grop /path where are u installing for both users and try again, the users you create must be the woner for the directroy u r installing under alos run
    chmod 777 /path
    fadi hasweh
    http://oracle-magic.blogspot.com/
    Oracle is not Magic, it just takes years of experience

  • Error in Oracle10gr2 installation on Red Hat linux AS4 (64-bit) itanium2

    Hello All,
    I installing oracle10R2 on Red Hat Linux 4 U4 Enterprise Server but got the following errors:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer
    from /tmp/OraInstall2007-04-26_11_11AM. Please wait....
    [oracle@rx36 database]$ #
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGILL (0x4) at pc=0x2000000000038a4070, pid=6102, tid=2305843009216825632
    # Java VM: Java HotSpot (TM) 64-Bit Server VM(1.4.2_10-b03 mixed mode)
    #Problematic frame:
    What should I do?
    Thanks.
    Message was edited by:
    user571878

    Hi,
    Please refer to following statement to do:
    =============
    How to install Oracle RDBMS version 10.2.0.2 (or higher)
    To install 10.2.0.1 and then 10.2.0.2 (or higher) on Linux Itanium, do the following :
    [1]. Download Patch 5390722 and run the supplied OUI to install Montecito JDK and JRE into the new 10.2 home
    * Unzip the patch
    * Start OUI from Patch 5390722 and install JDK into the new 10.2 home
    * Start OUI from Patch 5390722 and install JRE into the new 10.2 home
    [2]. Install 10.2.0.1 into the new 10.2 home by running OUI from the 10.2.0.1 DVD :
    ./runInstaller -jreLoc $ORACLE_HOME/jre/1.4.2
    NOTE: During the installation (on the "Product Specific Prerequisite Checks" page) the "Checking for Oracle Home incompatibilities..." check will fail. Click the check box next to it, so that the status changes to "User Verified", and continue with the installation.
    [3]. Install 10.2.0.2 (or higher) into the new 10.2 home by running OUI from where the patchset has been unzipped :
    ./runInstaller -jreLoc $ORACLE_HOME/jre/1.4.2
    Terry

  • Installation Error with 10.1.3.1 on Red Hat Linux 4

    Hi,
    I am installing Oracle Application Server 10.1.3.1 on Red Hat Linux 4, and am receiving the following error:
    Error in invoking target install of make file ins_sqlplus.mk. If I hit 'Ignore', I continue to receive errors regarding the makefile, and the configuration assistants fail.
    What do I need to do to avoid getting this error? I am having a lot of trouble getting this installation to work successfully.
    Thanks in advance for the help,
    Nora

    Hi Nora,
    Just read pre-install steps well. I think you 're missing a couple of libraries at your OS.
    So the only thing as I mentioned check pre-install steps or download pre-install script for AS9.0.4
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:4077412560366893878::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,270683.1,1,1,1,helvetica
    The output will help you to determine what you are missing.
    one more thing check your ENV & swap
    Hear from you & regards,
    Hamdy

  • Install Oracle8.1.7 on Red Hat Linux 9

    I tried to install Oracle8.1.7 on Red Hat Linux 9 and got error message:
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    My env variables:
    THREAD_FLAG=native
    LANG=en_US.UTF-8
    CLASSPATH=/usr/local/jre/lib/rt.jar:/usr/jdk118/jdk118_v3/lib/classes.zip
    DISPLAY=:0.0
    Please help.

    I did export LD_ASSUME_KERNEL=2.4.1. Now the installation starts and I get
    [oracle@localhost Disk1]$ ./runInstaller
    Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    and then get back to the $prompt after some time and the welcome screen never comes up.
    Whats wrong?

  • BI 4.1 installation in  Red hat Linux 6.5

    Hi Experts,
    we are planning to have one cluster environment in Red hat Linux 6.5.
    1) Two nodes in cluster ( two red hat Linux 6.5 servers)
    2) 1 server with Websphere as a web application server.
    From the last two years i am completely working on windows environment. hence i would like to know few details about installing BI 4.1 in RHL 6.5.
    What are the prerequisites to install Bi 4.1 in RHL 6.5, Even though it mentioned in installation guides, i would request someone to share there real time expertise.
    I would like to have split deployment in the webapplication server ( Websphere ).I have performed the split deployement with ref of the below document which was created by James Rapp Improving the User Experience in SAP BI Platform - BI 4.1 and Apache 2.4 Supplement
            it completely talks about tomcat+ Apache.
    is it possible to perform the websphere + Apache split deployment.
    Kindly share your expertise.

    Hi Prasad,
    Below are my thoughts on your queries.
    1. Check Installing SAP BI 4.1 SP01 on Red Hat Enterprise Linux 6.x Step-by-step. This is an amazing blog by Brian. Hope you find it useful.
    2. You cannot do a split deployment with Apache and Websphere. However you can do it with IHS (Web server provided by IBM) plus websphere. If you are using Websphere Network deployment version, IHS must be installed by default. For performing the split deployment, check https://websmp206.sap-ag.de/~sapidb/011000358700000171102014E/sbo41sp3_bip_wapd_unix_en.pdf See section 4.4.2 on page 27
    Hope it helps.
    Regards
    Chinmaya

  • Oracle 9i installation on Red Hat Linux 9 URGENT

    hi,
    I live in london, I have tried a lot to install Oracle 9i Enterprise edition on Red Hat Linux 9, but couldn't do it, can any one help me to install it, I am ready to pay and visit any place in london for that purpose in the evening, if any one can help my mobiel number 07832 077672
    best regards
    asif

    If you are only trying to learn, I would recommend either Fedora FC4 or OpenSuSE 10, and I would recommend installing ORacle Express Edition if you do not need advanced Oracle stuff (or you are not learning for OCP).
    Again, use Werner's excellent site - http://www.puschitz.com or Ivan Kartik's site - http://ivan.kartik.sk/oracle/install_ora9_fedora.html to get good instruciton on installation.
    If you want a free version that is as close to a supported Linux as legally possible, consider using WhiteBoxLinux.org, TaoLinux.org or CentOS.org linux. These are clones of RedHat Enterprise (the one that is supported). Or you could contact Novell.com and ask for an evaluation kit for SLES9.

  • Oracle 10g Installation on Red Hat Linux

    Hi
    I am trying to install Oracle 10g (Downloaded from Oracle Site) in a Linux Installation. I have checked with the following command about the Linux Version
    # cat /etc/issue and the output is :
    Red Hat Linux Release 7.1 (Seawolf)
    Kernel 2.4.2-2 on an i686
    Then I am giving #uname -r and the output is
    2.4.2-2
    Now Oracle Installation Guide for 10g for Linux is saying that
    if the errata level is less than 25 on x86 system then install latest Kernel Updates.
    Please Let me know from where I can get the Latest Kernel Updates appropriately and what I need to do to put that patch into Linux so that I can smoothly install the Oracle 10g.
    Thanks and regards.
    Keshav Tripathy

    Jer is absolutely right.... just changing the values in oraparm.ini to reflect your kernel distribution will work for you.
    For example the file contains:
    [Certified Versions]
    Linux=redhat-2.1,UnitedLinux-1.0,redhat-3
    now to add your linux into it just check your version by issuing the command #uname -r
    in my case the output was "2.4.20-8smp". I just appended redhat before this value and entered in the oraparm.ini file.
    The new ini file looks like:
    [Certified Versions]
    Linux=redhat-2.1,UnitedLinux-1.0,redhat-3,redhat-2.4.20-8smp
    [Linux-redhat-2.4.20-8smp-optional]
    TEMP_SPACE=80
    SWAP_SPACE=150
    MIN_DISPLAY_COLORS=256
    Now you are all set to install. I assume that all other pre-requisites have been fulfilled.
    Thanks & Regards,
    Rajesh Kumar
    Team Lead UNIX

  • Installation of Oracle EBusiness Suite 11i Release 10.2 on Red Hat Linux

    Hello there,
    It would be great if someone can help me with these questions
    1. Which version of Red Hat Linux is suitable for installation of Oracle EBusiness Suite 11i Release 10.2.
    2. I am downloading the EBS files from eDelivery site on my machine (Windows based). These are Zip files. How would these be usable on Linux machine?
    3. Do I need stuff like MKS Toolkit on Linux? We tried installing on Windows 2003 server but had to abandon because we don't have MKS Toolkit. Is there some such pre-requisite on Linux?
    Thank you.
    Rahul

    Copy all zip files to say /data/stage11i then unzip all files (as root) the process will create the correct file structure, you do not need to run adautostge.pl then in a terminal screen go to /data/stage11i/Disk1/rapidwiz and then type ./rapidwiz the installation wizard then guides you through the rest of the way. Run raoidwiz as root if you need multi user or for the demo single user run rapidwiz as oracle. Make sure you have created user and group for oracle and applmgr, also make those changes in the wizard it often defaults to say user oravis group dba. In linux you should have created localhost.localdomain sometimes the eth0 does not start, stop it in the device manager and then reactivate. Hope that helps.

  • Error messages when trying to install Essbase 11.1.1.3 on Red Hat Linux 5.3

    Hello,
    I'm having an error message while trying to install EPM 11.1.1.3 on Red Hat Linux 5.3 (32-bit).
    It happens when I click "Next" for the installation to begin:
    Error: Linux File Service Initialization Failed. Turn on the System property 'EnableLinuxPPKLogger' for more stack trace details
    Error: Linux System Util Service Initialization Failed. Turn on the System property 'EnableLinuxPPKLogger' for more stack trace details
    Exception in thread "Thread-7" java.lang.NullPointerException
    at com.ibm.wizard.platform.linux.utils.UnixShellInterface.shutDown(Unknown Source)
    at com.ibm.wizard.platform.linux.LinuxFileServiceImpl.cleanup(Unknown Source)
    at com.installshield.wizard.service.LocalImplementorProxy.close(Unknown Source)
    at com.installshield.wizard.service.ServiceFactory.shutdownService(Unknown Source)
    at com.installshield.wizard.service.LocalWizardServices.shutdown(Unknown Source)
    at com.installshield.wizard.service.LocalWizardServicesManager.shutdown(Unknown Source)
    at com.installshield.wizard.service.LocalWizardServices.shutdown(Unknown Source)
    at com.installshield.wizard.Wizard.shutdownServices(Wizard.java:648)
    at com.installshield.wizard.Wizard.exit(Wizard.java:583)
    at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1848)
    Many thanks for your help.
    Best regards,
    Andy

    Hi John,
    I get the error messages once I click on "Next" from the "Confirmation" window.
    I've extracted:
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:19 commonComponents
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:18 essbaseAddins
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:20 essbase_administration_services_webapp
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:19 essbase_integration_services
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:16 essbaseProductCommonComponents
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:21 essbase_services
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:17 essbase_smartsearch_webapp
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:17 essbase_studio_services
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:18 productCommonComponents
    drwxr-xr-x 3 hyperion hyperion 4096 Jul 24 04:18 tools
    For the Essbase installation.
    Thanks for your help.
    Best regards,
    Andy

  • Installing 11i apps on windows xp and Red Hat linux AS 3.0

    Hi,
    I am a newbie to Oracle E-business suite............i will be very helpful if anybody could help me with the full procedure on how to install Oracle apps on windows on Windows XP and Red Hat linux AS 3.0.........starting with configuring ip.....i would really appreciate if somebody helps me out...........well thanks in advance..waiting for a optmistic reply...
    Thanks again,
    Virendra

    I have done installation on XP and 2000 servers are heres the steps... detailed ones. I also request those who install Oracle Apps 11i to first read the installtion pdf's which helps you understand clearly the prerequisites overall.
    You cannot find the Pre installtion steps(such as Mks Toolkit and GNUMake config) in more clear terms from those documents.Which are explained here.
    The Must PDF's to refer before installation
    1)r1152ins.pdf
    2)11iconcepts.pdf
    According to the 11iconcepts PDF you can decide your business needs the N-Tier Architecture and Database Server and Application Tier Server File System in a very clear terms.
    The installation process can be divided into
    Pre Installtion,Installation and Post-Installation stages.
    I would caution everyone to concentrate more on Pre Installation stage and which is more critical for a successfull installtion of Oracle Apps and to be free with later cropping up problems.
    Further before moving into Installtion stages i have to Explain the Number of CD's and Installtion type's in Oracle App's.
    In many places you may need to wait patiently even more than 10 minutes for screens(Dialog Boxes) to appear dont conclude prematurely some problem on system.
    In oracle Apps 11.5.1 it consist of 12 CD's.
    1) Start Here CD(RAPID Installation Wizard)
    2)1-11 CD's
    1-3 Application Top information
    4th Oracle DB
    5-6 IAS and other tools
    7-11 Oracle Apps DB.
    You have to decide whether you are going to do a Single Node Installation(No Post-Installation Task) or Multi Node Installation. Refer(r1152ins.pdf)
    While installing for Multi Node you can see the Installation locations to be mentioned as
    Appl_Top,Common_Top,Data_Top etc.Try to install Appl_top and common_Top in one drive and Data_Top in another Drive(Single Node) and in different nodes in Multi Node installation.
    Installation Types
    Production ==>Real time Env implementation's
    Test ==>For test Env Purposes
    Vision Demo==>R&D or learning Purposes.
    Pre-Installation steps
    ======================
    Space Requirement for types of installtions
    Install VC++
    How to Download and install MKS tool Kit
    How to Download and Configure GNUMAKE
    Env path setting
    Create Applmgr user in Win2000
    Space Requirement for types installtion:
    Memory Requirement
    1 GB of RAM(512 Fine for initial Installtion)
    but planned for more user connections another 1 GB of Ram and according to the number of user's and Application needs you have to Increase the Memory.
    HDD capacity
    APP_Top(A)
    COMMON_TOP(C)
    DATA_TOP(D)
    Test DB : 22 + 20 GB (60 GB recommended)
    Prod DB : 22 + 20 GB (60 GB recommended)
    Vision Demo DB: 22 + 35 GB (80 GB recommended).
    Plus space for ur staging area.
    This are the actuall space required for the Oracle Apps Alone plan for more space for future needs etc.
    Softwares on System
    Win2000 server with Patch1,Winzip and Acrobat Reader Latest version etc.
    Install VC++:
    Install a clean installtion of VC++ of Visual Studio Family 6.0
    It should be first installed before installing MKS or GNUMAKE
    NOTE: When Visual C++ is installed, let the installer register all environment variables. This will allow executables to be linked from the command line.
    How to Download and install MKS tool Kit:
    Note:Try to purchase the MKS tool kit from the below site.
    or try to download the trial version valid for a months time.
    http://www.mkssoftware.com/products/tk/ds_tkio.asp
    Evaluation copy from
    http://www.mkssoftware.com/eval/
    Choose "MKS Toolkit for Interoperability " Download it in C:\
    Again you have to click the downloaded kit to start the actual download of 38 MB of MKS tollkit Evaluation version.
    You will be sent a Demo serial number to your mail id==>copy the same to a Notepad on your desktop.
    Now start the installtion of the MKSToolkit on your system by clicking on the MKStoolkit downloaded.
    It will prompt you for the Demo serial number which has to be provided.
    The MKStoolkit will be successfully installed.
    How to Download and Configure GNUMAKE:
    1) HOW TO GET AND INSTALL GNUMAKE ON WINDOWS2000
    This can be done by performing the following steps:
    NOTE: Please, be aware that you must install Visual C++ BEFORE installing GNUMAKE, because its installation process involves linking executables.
    1) Before downloading GNUMAKE, you will need to acquire some utilities which will be used for unpacking files. You can obtain the required utilities at the following
    URL: ftp://ftp.gnu.org/gnu/windows/emacs/utilities/i386/
    The directory contains the following files:
    README
    djtarnt.exe
    gunzip-1.2.4-i386.exe
    gzip-1.2.4-i386.exe
    tar-1.11.2-i386.exe
    tar-1.11.2a.exe
    Only two of the files are required:
    gunzip-1.2.4-i386.exe and tar-1.11.2a.exe
    2) After downloading the above files, rename them as follows:
    gunzip-1.2.4-i386.exe => gunzip.exe
    tar-1.11.2a.exe => tar.exe
    Place them into a directory that you can set in you PATH environment variable.
    3) Point your browser to the following
    URL: ftp://ftp.gnu.org/gnu/make
    The files needed from this directory are:
    make-3.77.tar.gz
    make-3.78.1.tar.gz
    make-3.79.1.tar.gz
    make-3.79.tar.gz
    Development requires to install version 3.77 or above. Downloading the latest version is perhaps best decision, but there are advantages to downloading the version required by development (3.77). (This document assumes that version 3.77 has been downloaded) (NOTE: AVOID USING SPACES IN
    DIRECTORY AND FILE NAMES. GNUMAKE,VISUAL C++, ETC. DO NOT ALWAYS DEAL WELL WITH SPACES)
    4) For instance, suppose you have downloaded file make-3.77.tar.gz on a directory called C:\GNUMAKE, unpack this file using gunzip.exe from a Command Prompt Window
    Example: C:\GNUMAKE>gunzip make-3.77.tar.gz This last action, will expand file make-3.77.tar.gz and the extension .gz will be removed.
    5) On the same Command Prompt Window, you should UnTAR the file, with the following
    command: C:\GNUMAKE>tar -xvf make-3.77.tar This will create a new subdirectory called MAKE-3.77 under C:\GNUMAKE, the original directory.
    6) In the new subdirectory, there is a batch file
    called build_w32.bat; run the batch file to generate GNUMAKE.EXE
    Try this from Command Prompt more than once if succesfully not built message appers till you get Generated successfully.
    Note:If Possible run all the bat files in the MAKE-3.77 and also config.bat in the sub directory by double clicking it.
    WARNING: There is a known issue with this last step, "GNU make fails to build regardless of chosing build_w32 or nmake"
    See [NOTE:115937.1]
    for work around. RELATED DOCUMENTS ----------------- For Microsoft Visual C++, MKS Toolkit and
    GNUMAKE support, you should contact their respective vendors Microsoft Visual C++, MKS Toolkit
    and GNUMAKE are registered trademarks.
    http://support.microsoft.com/ http://msdn.microsoft.com/ http://www.mks.com/
    http://www.gnu.org/ Note:104010.1: Release 11i on NT: Software Requirements
    Note:115937.1: GNU Make won't make on windows NT
    Important:All the downloaded files from GNU makes web sites shall be put in a single folder called gnumake under c:\ .Try to search for config.bat file inside this folders just click and
    run it.
    Env path setting:
    Try to search make.exe generated in c:\program files\mkstoolkit\mksnt and copy and paste it
    c:\gnumake\MAKE-3.77\windebug and c:\gnumake\MAKE-3.77\winRel also paste both this paths in the
    My Computers==>Properties==>Advanced==>Environment variables==>Path setting's
    After all this check as follows from CMD mode.
    1)execute make at c:\>
    2)execute gnumake at c:\>
    In win2000 it may return error messages or Target wrong ignore it.If it is on Win NT then it will return proper status.
    Create Applmgr user in Win2000:
    Create a Applmgr user account in win2000 .
    Installation:
    =============
    What here you require is the Patience .
    Load the START HERE CD and run the C:\> cd \cdrom\rapidwiz
    For Test and Prod it will ask for the location of Appl_Top,Common_Top and Data_Top location. Mention there path and ensure if more than one installtion say eg.Vision and Test or Prod to check the Path in all the tab pages its corresponding values and path's.
    In Vision Demo many of the Options are not propmted from the user.
    It will then do the system checking for Host Name and other details.All the checking should have been passed or if failed it will mark it in RED cross mark.Rectify the mistake and then onceagain proceed or else you will have problem after installation.
    The Installation time takes around 5 to 6 Hrs of time.
    For info on Post installation or on Multi Node follow the pdf's i have mentioned above.
    The most tedious of all is succesfully crossing the Apps system checking it does for all
    installed products it requires without any failure.
    The GNUMAKE configuration or steps were nowhere given and it was all our trail and error exp.
    This is possibly the most elaborate steps to install Apps on Win. post for further help. email me at [email protected] or [email protected]
    Rajeev.

  • Installing Oracle 10g Express Edition on Red Hat Linux

    Hi,
    I am new with Linux Os and have to install oracle 10g Express Edition on Red Hat Linux Os for a customer. So before proceeding, I need some guidelines.
    1) which Linux(freeware) flavor should I install ?
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?
    4) need download link for latest version of Red Hat Linux setup
    Regards
    Edited by: user640001 on Feb 25, 2011 5:44 AM

    1) which Linux(freeware) flavor should I install ?Ordinarily, I'd recommend getting Oracle Linux (http://eDelivery.oracle.com/linux) because the default install includes all the prerequisite RPM packages you will need. And failing that, also offers another RPM package "oracle-validated" which will cause the installation of the necessary prerequisites.
    But... you mentioned customer: if this is a revenue-producing situation and customer money is at stake, I strongly recommend they obtain commercial O/S support with either Oracle, Red Hat, or maybe SuSE/Novell. Compared to the cost of a downed business, an O/S support arrangement is cheap, cheap, cheap.
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?Sure. You can run Oracle VirtualBox on most Linux, Windows, or Solaris boxes. http://VirtualBox.org for info.
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?No real differences in either environment.
    4) need download link for latest version of Red Hat Linux setupWhat, you didn't try http://eDelivery.oracle.com/linux yet?

  • How to start SQLPLUS in oracle 10g which install on Red Hat Linux AS 4

    I install oracle 10g on Red hat linux enterprize AS 4. but i can not start SQLPLUS. I could not login to grid control. When installation, some agents installations are fail. what can i do? please help me out.

    I install oracle 10g on RHEL 4. But error occure in cofiguration assistant.
    following assistance not configured (which are recommended):
    Oracle Net Configuration Assistant - fail
    HTTP Server Configuration Assitant - skipped
    Java Security Configuration Assistant - skipped
    OC4J Configuration Assistant - skipped
    Web Cache Configuration Assistant - skipped
    Oracle Instance Configuration Assistant - skipped
    Oracle Database Configuration Assistant - skipped
    OC4J Instance Configuration Assistant - skipped
    OPMN Configuration Assistant - skipped
    Register DCM Plug-ins with EM - skipped
    Application Server Control Configuration Assistant -skipped
    DCM Repository Backup Assistant - skipped
    Enterprize Manager Reposotory Creation Assistant - skipped
    Log Details given about "Oracle Net Configuration Assistant" as
    /usr/app/oracle_sw_owner/oracle/product/10..0/EM10g_1/oracle.swd.jre/bin/..
    /lib/i686/native_thread/libzip.so : symbol errno version GLIBC_
    Unable to initialize threads:cannot find class javalang thread not define in file libc.so.6 with link time referance (libzip.so)
    could not create Java VM
    configuration of assistant "Oracle Net Configuration Assistant" fail
    When try to run sqlplus from xterm, it gives an following error :
    $ /usr/app/oracle_sw_owner/oracle/product/10.1.0/EM10g_1/bin/sqlplus
    Message file sp1<lang>.msb not found
    Error 6 initializing SQL*Plus
    After installation there is an information is given for Enterprise Manager Grid Control and it gives an url as http://localhost.localdomain:7777/em. But when i try to connect it gives an error massage as "The connection was refuse when attempting to contact localhost.localdomain:7777"
    Same situation when i try to connect Enterprise Manager Application Server (its url: http://localhost.localdomain:1810). It gives an error massage "The connection was refuse when attempting to contact localhost.localdomain:1810"
    What can i do in this situation? Please help me out.

  • TD340 Red Hat Linux 6.4 during start up give Kernel Panic

    I am a newbie and please forgive my newness
    I recently bought a TD340 with 32GB Ram, OB SAS RAID 300.
    While using the ThinkServer EasyStart up to configure the installation of Red Hat Linux 6.4. I am able to finish the installation successfull, however, after the installation is completed and and Linux 6.4 boots up, in the middle of the start up a I get the following message:
    Kernel Panic - not syncing - attempted to kill
    Pid: 1 comm: init not tainted 2.6.39-400.17.1
    Call Trace:
    and it nevers boots up sucessfully.
    Any help would be appreciated.

    It clearly mentions its bootstrap issue in Java stack. The bootstrap log files can be found in /usr/sap/<SID>/JC<XX>/work/ folder.
    dev_bootstrap* ; log_bootstrap* ;   jvm_bootstrap*.
    In one of these files, it will be mentioned, synchronization exception...Database initialization failed.
    90% of the issue is caused dude to Database not getting initilized or its not connected or userauthorizations missing or driver class secured in the Secure store is incorrect.
    Troubleshooting J2EE Engine 6.40/7.0 Bootstrap Issues
    SAP Note Number: 997510 
    Check this note, you will get all the answer!!
    And award points if it helped.
    -Subbu

  • Installing Oracle 8.1.5 in Red Hat Linux 6.2

    Hi,
    I'm trying to install Oracle 8.1.5 in Red Hat Linux 6.2. But when I run the runInstaller
    command it gives the following error & quit.
    [oracle@localhost cdrom]$ ./runInstaller
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre. Please wait...
    Error in CreateOUIProcess(): -1
    : Bad address
    And I tried to run the Installer with jre1.1.6 & jre 1.1.7. Both producing the same
    error.
    You may think why I'm using the old version of Oracle. It's an urgent need for
    me at the moment.
    Hope someone could guide me in the correct path to install.
    Thx in advance.
    Luxman

    You need to install java.
    See http://jordan.fortwayne.com/oracle/

Maybe you are looking for

  • Illustrator Crashing on open and save of files

    PC using Windows 8 I've been using Illustrator CC for 6 months and it worked fine, all of a sudden it can't open or save files without taking very long (5-10 minutes) and occasionally crashes. Please help!

  • DEP still crashes Acrobat 9.1 :-(

    Hi, I've googled and searched forums to no avail, is there still no fix to Acrobat crashing when DEP is enabled? I have several PDF's that work fine, but when I add a digital signature to them, they crash when I try to reopen them. Vista pops up it's

  • Snow Leopard and Exchange 2007 Configuration Issues

    I know this topic may have been covered in here previously but I have yet to find a solution. Here is the background. Our CEO has a Mac Book and two weekends ago he updated to Snow Leopard and now wants to use the Mail client on his Mac rather than O

  • Cant get a stable orthos large FFT run

    Ive had this stick of ram(OCZ Gold XTC 1024MB PC6400)running in my other computer (dell C521) since i bought it...the otherday i decided to put it in my MSI board...i had been using 667valueram before this in it and it was really holding back my over

  • Downgrade Lion to snow leopard in macbook air late 2010?

    Please, is there anyway to do this, lion its just too slow, and my battery drains faster in lion. i am totally dissapointed of upgrading to lion, can someone help downgrading? Regards.