Forms Server Install on Redhat Linux 7.0

I am attempting to install Forms6i/Reports6i/Graphics6i on my Linux Box.
I already have a 8.1.6 Database configured and running.
After downloading the tar file and extracting it I am having trouble with the installation of the software. The Guide refers to running the orainstal shell script in the orinstall directory. Well when I execute the script I get a Character Installer and I was expecting the Java based Gui Installer such as the one with Oracle 8i DB. I cannot get the oraviewer program to work either for I wanted to see if there were some other setting I am not executing correctly.
When I continue with the Char Installer it has trouble finding a lib called X11m.a or something (Motif related).
Does Forms 6i require Motif? If so where and how do I get it for my Linux box? Are there any work arounds for this.
Any help is greatly apprecicated.
Thanks

Hello Shawn,
Yes, you need motif libraries. You can obtain it for free from: http://www.metrolink.com/products/Motif/download.html
I installed both runtime and development packages.
Aditionally you may ned to have X-devel packages installed.
After struggling with Forms installation on my linux machine I managed to do this, but let me tell you that it's not so simple. First of all please excuse my bad English, I'm not a native speaker. Anyway that's how I did it.
I assume that you downloaded the file d2k6irelease2.tar from technet. This file includes Forms 6i rel. 2 Server and Developer.
I managed to install this on my RedHat 7.1 machine having already installed Oracle 8.1.7 database Server.
First of I created a separate user which owns Forms Server software. I set this user as belonging to the same group ("dba" in my case) as the oracle database software owner. (On my machine I have "oracle" user which owns databse server belonging to the "dba" group and "forms" user belonging also to the "dba" group). You must set your environment like this (in ".bash-profile" in my case):
-- Begin .bash_profile file
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
unset LANG
PATH=$PATH:$HOME/bin
BASH_ENV=$HOME/.bashrc
ORACLE_BASE=/oracle
ORACLE_HOME=$ORACLE_BASE/product/forms
ORACLE_SID=forms
ORACLE_AUTOREG=$ORACLE_HOME/guicommon/tk60/admin
TNS_ADMIN=$ORACLE_HOME/network/admin/tnsnames.ora
ORACLE_TERM=vt220
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
TWO_TASK=oratest
MMTK_AVIPLAYER="xanim %s &"
PATH=$PATH:$ORACLE_HOME/bin
DISPLAY=TEST_MACHINE:0.0
export ORACLE_BASE ORACLE_HOME LD_LIBRARY_PATH TWO_TASK MMTK_AVIPLAYER
export TNS_ADMIN DISPLAY ORACLE_AUTOREG ORACLE_TERM ORACLE_SID
export BASH_ENV PATH
unset USERNAME
-- End .bash_profile file
As you can see I set up ORACLE_BASE to the same ORACLE_BASE as database software ORACLE_BASE, a new ORACLE_HOME, a dummy ORACLE_SID, TWO_TASK to the sid of your 8.1.6 server instance, TNS_ADMIN pointing to a directory which I created manually before starting the installer (see below my "tnsnames.ora" file under this manually created directory), ORACLE_AUTOREG, ORACLE_TERM, DISPLAY set to your_hostname:0.0, LD_LIBRARY_PATH as seen, MMTK_AVIPLAYER is for playing ".avi' files (I didn't tried this). You may need to "chmod 775" on your $ORACLE_HOME directory from the database user account.
-- Begin "tnsnames.ora" file
ORATEST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = TEST_MACHINE)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = oratest)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
-- End "tnsnames.ora" file
I untared d2k6irelease2.tar under a subdirectory created under "forms" home directory. In "unixdoc/Server" directory you will find linux_svr.pdf instructions for installation of Forms server and under "unixdoc/Developer" you will find linux_dev.pdf instructions for Developer Server. "oraview" didn't worked for me either. GUI installer didn't worked for me either. Chnaging to orainst you may issue ./orainst command and start the installation in character mode (I did not even started an X session). I choosed default install, do not create database objects (I think you will be able to install later this objects by running some sql scripts, I didn't). And I choosed all components presented and all options and default port parameters. You will also be prompted to confirm locations of the motif libraries. I choosed http mode for forms server. Do not install Reports security feature (I've heard that it's not working, this option will be presented to you somewhere at the end of installation). After finishing you may need to edit "forms60_server" file and some other files. For example I had to change my "host_name.domain_name" (in my case was "TEST_MACHINE.(none)") to my IP address as I don't have a DNS server here.
That's what I did to test forms server:
I wanted to test my Forms server by running Apache web server (the one that is installed by default by linux). (in the documetation you will find references to the WebDB listener which as far as I know is no longer installed in release 2, so the documentation is obsolete regarding this module). For this you will have to edit /etc/httpd/conf/httpd.conf file. Look for the section "Alias" and "AliasScript". under your forms $ORACLE_HOME/orainst you will find two files "forms6iconfig.txt" and "reports6iconfig.txt". You will find there actions to be performed by you manually. in "forms6iconfig.txt" file you will find virtual mappings for physical directories. You have to put this entries in "httpd.conf" file. You must edit this file as "root". For example 'Alias /dev60temp/ "/oracle/product/forms/tools/web60/temp/"'. The exception I made was for "/dev60cgi" virtaul mapping which I've put under ScriptAlias section 'ScriptAlias /dev60cgi/ "/oracle/product/forms/tools/web60/cgi/"'.
After succesfully editing the file you will ned to restart http server:
#/etc/rc.d/init.d/httpd restart
Login again as "forms" user.
In $ORACLE_HOME directory isuue:
$./forms60_server start
This will start your forms server listener.
After that you can test your forms server running from an external machine by entering: http://ip_addres_of_linux_machine/dev60html/runform.htm
and after completing parameters you will see "text.fmx" form applet saying that Forms server is installed corectlly or directly: http://ip_addres_of_linux_machine/dev60cgi/f60cgi
You have to install Jinitiator to view the applet. It will be prompted for you to download it when accessing the above address.
To be honest I was disapointed to see that forms server is very slow. And I mean very slow.
In the end please let me excuse if I wasn't clear in some points. If you have any questions please post them on the list. I'm not an expert and I may have made mistakes, but in the same time I hope this will help you setting up forms server on your linux box.
I forgot to mention that you will probably see a message saying that "formsweb.cfg was not found" when accesing "http://..../f60cgi". If you see this you have to options: either make a symlink "forms60" in the root directory to $ORACLE_HOME/forms60 directory or add a line in your "httpd.conf" file (I put this lines the last ones):
#Include 6iserver configuration file for setting formsweb.cfg path
include "/developer_home/conf/6iserver.conf"
And in $ORACLE_HOME create a directory named "conf". In this directory create a file named "6iserver.conf" and put the following line in it:
SetEnv FORMS60_WEB_CONFIG_FILE /developer_home/forms60/server/formsweb.cfg
This will set your environment correctly and you will be able to see the test form. Don't forget to restart apache web server and forms listener.
Kindly,
Codrut Octavian Popescu

Similar Messages

  • Problems and solutions for 9i DB R2 install on Redhat Linux AS 2.1

    Installing 9iDB R2 9.2.0.1.0 on Redhat Linux Advanced Server 2.1 (aka Redhat Enterprise Linux (AS))
    and applying patchset 2 (9.2.0.3.0)
    This is a certified platform but I hit many problems getting the install to work. Here are the problems I hit and how I solved them.
    Note: This is not intended to be a install for dummies but just an account of all my problems and how I overcame them. I spent 10 hours on this certified install (mostly looking for solutions to the problems I was having)
    I had a Intel Pentium 3 with 512 Meg RAM. (test machine)
    1. Install Redhat Linux
    2. Install Sun JDK 1.3.1 (this is not actually required for this install. I installed it as I was planning to install 9iAS after this)
    3. Install binutils-2.11.90.0.8-13 (also not required. I installed it for 9iAS)
    All other components were ok on my Redhat Linux install (i.e. kernel version, glibc)
    4. Create oracle user with dba group
    5. Create oracle home and oracle base directories. Ensure these are owned by oracle with rwx
    6. Set kernel parameters and make sure that they are initialized every startup:
    I managed to locate this script in the Redhat document called
    "Deploying Oracle9iTM on Red Hat Enterprise Linux AS"
    create a file called oracle.sh in /etc and give it execute permissions
    oracle.sh
    #!/bin/bash
    # configures kernel and system parameters for Oracle9i R2
    # File handles
    echo 65536 > /proc/sys/fs/file-max
    ulimit -n 65536
    # Shared memory
    # The default SHMMAX value is too low and likely to cause a failure during
    # database creation. SHMMAX should be equal to half of your system's physical
    # RAM.
    # The default is for 512 MB of RAM. Replace the default value as appropriate
    # for the amount of memory in your system, i.e.,
    # 512 MB : 268435456
    # 1 GB : 536870912
    # 2 GB : 1073741824
    # 4 GB : 2147483648
    echo 268435456 > /proc/sys/kernel/shmmax
    # It is generally safe to leave these next two values as they are
    echo 4096 > /proc/sys/kernel/shmmni
    echo 2097152 > /proc/sys/kernel/shmall
    # Semaphores
    echo 250 32000 100 128 > /proc/sys/kernel/sem
    # Sockets
    echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
    # Processes
    ulimit -u 16384
    ----EOF---------
    then...
    # chmod +x /etc/oracle.sh    # make executable
    # . /etc/oracle.sh # apply changes now
    edit /etc/rc.local to ensure this is run on startup
    append to /etc/rc.local
    # configure system for Oracle9i R2
    bash /etc/oracle.sh
    --------EOF--------------------
    7. create a generic oracle environment setup script for all users to run
    create the file /etc/profile.d/oracleenv.sh
    be sure to change the variables to your environment (ORACLE_BASE, ORACLE_HOME and ORACLE_SID)
    oracleenv.sh
    # Configures the user's environment for Oracle9i R2
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/9.2.0.1.0
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ORACLE_SID=orcl
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_BASE ORACLE_HOME ORA_NLS33 ORACLE_SID LD_LIBRARY_PATH PATH
    ----EOF---------
    chmod 755 /etc/profile.d/oraclenv.sh
    This file will run when a user logs in.
    8. Install oracle DB
    This took me quite a few attempts.
    The first Install I did I received the error jre was not found. This issue seemed to be relating to the fact I was not installing on a Pentium 4. Oracle was looking for the jre in oracle.swd.jre/bin/i686 (and .../lib/i686) when some of the files were placed in i386 and java was looking in i386. This created a real mess. I had encountered a similar problem on a previous install on a different platform. I found articles of people that tried to just link the directories with symbolic links but this never worked. I tried my own version but also failed.
    The solution that worked for me was to de-install, remove all the oracle directories created by the install (this part I had always done) AND also delete the file /etc/oraInstl.loc. This makes the Installer truly believe this is the first time Oracle has been installed on this box. My jre problem disappeared after that. (I don't know why it just didn't work in the first place...)
    The next error I received was an ORA-03113 when creating the database (in the dbca). (It was actually at this point that I found the document from redhat as mentioned in my set 6 above) I also noticed that when running the install of the database, the default was for Oracle's SGA to use 70% of the available memory on my machine (I have 512M so that's 360M). Oracle instructed me to set shmmax to around 240M. This may be why the database creation failed as I thought the shmmax parameter needed to be larger that SGA. Anyway, I reduce the SGA to 50% and it worked.
    This error may also have been caused by the kernel parameters not being set properly after a reboot so if you implementing stop 6 above. You may never get this problem, hopefully.
    8. Install the universal Installer 2.2.0.18.0 (a prerequisite for installing the patchset 2)
    You will need this to install the patchset 2. You can get it from metalink by searching for the bug number in the patch area. Search for bug/patch number 2878462 in patches. (37Meg for linux intel)
    (Did you know that when oracle refer to a bug number, you should treat this as a patch number? General the bugs are not available for public viewing but oracle create a patch of the same number as a placeholder. So don't search for the bug in the site search or by doc id, go straight to the "patches" area and enter the bug number as a patch number, you'll have more success. - I only found that out today after struggling with metalink for the last 4 years)
    9. Install the patchset 2
    I downloaded patchset 2 (which will bring my DB version to 9.2.0.3.0) (220Meg). There is a special symbolic link command you'll need so make sure you remember to do this.
    i.e.
    $ cd $ORACLE_BASE/oui/bin/link
    $ ln -s libclntsh.so.9.0 libclntsh.so
    10. Migrate your database
    I could not get this to work. The docs says I need at least 150M shared_pool_size and 150M Java_pool_size before running the startup migrate. As I only have 512Meg RAM (and shmmax set to 230M) I did hold much hope that this would work. I started my DB without the migrate option just to see if it would actually open with 300M in my pools. It did, so I shut it down and restarted with the migrate option. After 5 minutes of heavy processing (I still have an empty database) my server appeared to hang. I decided to restart the machine and just re-create my DB with the new patchset already applied. I delete my $ORACLE_BASE/oradata/<sid> directory and remove the entry from /etc/oratab and re-created my DB. This worked fine :)
    I hope this document helps you for your install. Please drop me line if it does help and I'll endevour to write more documents like this one.
    Please drop me a quick line at [email protected] even just to say "thanks".
    I will include a few keywords here to help the searches find this document. (mainly the keywords I searched on and failed to find a doc like this one)
    ORA-03113 ORA-3113 03113 3113 jre was not found jre not found i686 i386 i586 9iDB R2 9.2.0.1.0 9.2.0.3.0 Redhat Advanced Server 2.1 AS Enterprise Linux (AS) RH install error installation errors oui dbca problem issue
    Good luck,
    Tim Daniell.

    The trick that worked for me was on a 2nd attempt. I installed once, let it fail with "jre was not found", de-install through the installer, delete all directories and files under $ORACLE_BASE (including $ORACLE_HOME), and also delete /etc/oraInst.loc.
    I don't know why it fixes itself with this. Oracle say this is an unresolved bug 2726268 that lies in the installer. This is still unresolved by Oracle (as at 02-June-03) therefore it is not a published bug/patch. If this doesn't work, I suggest you open an iTAR and see if Oracle has any more suggestions for you.
    Cheers,
    Tim.

  • Installing on Redhat Linux 7.1?

    Hello.
    I know Redhat Linux 7.1 is not officially supported, but I want to know if it's possible to install the Sun ONE Application Server 7 on this OS.
    The reason I ask this is that the installer is giving me problems. It stops during installation with the message "installation stopped or aborted". The logs show a package conflict between some of the packages from the App Server installation (no other packages are mentioned). The portions of the App Server that were installed are then automatically uninstalled.
    I'm using default install directories.
    Since other posters here seem to have trouble with the installer and other versions of Redhat, perhaps my problems are not OS related at all...
    Any ideas would be appreciated.
    --Andr�s.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nicholas Waltham ([email protected]):
    I am currently trying to install Oracle 8.05 onto Redhat Linux 7.1. I can get part of the way through
    the installation, however, when it is installing the rdbms portion. I stops with an error about a failure
    during relinking. Here is the part of make.log which details what really happened. Could someone tell
    me how to proceed.
    Thank you,
    Nicholas Waltham
    --------------[ rdbms.ins 2618 ]<HR></BLOCKQUOTE>
    Well ,I tried to install Oracle 8.0.5 in Debian Potato. At end I desist.
    Oracle 8.0.5 works with glibc 5 and Debian Potato with glibc6 .
    I guess this is your problem.
    There are patches for this but i don't get
    to make work.
    Sorry for my english.
    Cisar

  • Could not create Java VM to start 8.1.7 install on RedHat Linux 9

    I am trying to install 8i 8.1.7 on redhat linux 9. when I start the installer I get this error and nothing happens after it. I do have java installed on the pc. Whats the cause. I did the preinstall steps and am using the oracle account to start the installation. I got the install file from the oracle downloads site.
    [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...
    [oracle@localhost Disk1]$ /usr/local/downloads/Oracle8iLinux/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link
    time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM

    I found a thread that said I needed to do
    export LD_ASSUME_KERNEL=2.4.1 which I did. 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?

  • 11.5.9 install on redhat linux 7.3

    we are trying to install oracle applications 11.5.9 on linux using rapid install...when rapid install checks for all the necessary things it fails at file system check and we get following message
    there are 2 errors
    1.
    Error - Unable to create directory with proper privileges:
    Database Install Log Directory
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/log/PROD_
    if i go to $prompt and do ls i can see this directory
    $ls /d02/oracle/proddb/9.2.0/appsutil/log/
    PROD_
    2.
    Error - Unable to create directory with proper privileges:
    APPL_TOP admin Install Log Directory
    Mount Point = /d01/oracle/prodappl/admin/PROD_ /log
    here i dont understand why there is a space after PROD_
    and there is no log directory created
    **any/all help is appreciated as our client want this to be done ASAP**
    thank you!
    File System Check :
    Database ORACLE_HOME Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0
    Database ORACLE_HOME admin folder Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil
    Database ORACLE_HOME temp folder Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/temp
    Error - Unable to create directory with proper privileges:
    Database Install Log Directory
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/log/PROD_
    Database System File Directory Created Successfully
    Mount Point = /d03/oracle/proddata
    Database Log File Directory Created Successfully
    Mount Point = /d04/oracle/proddata
    Database Data File Directory Created Successfully
    Mount Point = /d05/oracle/proddata
    Database Index File Directory has write privileges:
    Mount Point = /d05/oracle/proddata
    APPL_TOP Created Successfully
    Mount Point = /d01/oracle/prodappl
    APPL_TOP admin Created Successfully
    Mount Point = /d01/oracle/prodappl/admin
    APPL_TOP mount 2 has write privileges:
    Mount Point = /d01/oracle/prodappl
    APPL_TOP mount 3 has write privileges:
    Mount Point = /d01/oracle/prodappl
    APPL_TOP mount 4 has write privileges:
    Mount Point = /d01/oracle/prodappl
    COMMON_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn
    Apps ORACLE_HOME Created Successfully
    Mount Point = /d01/oracle/prodora/8.0.6
    Tools ORACLE_HOME Created Successfully
    Mount Point = /d01/oracle/prodora/iAS
    JAVA_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/java
    PORTAL_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/portal
    JRE_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/util/jre/1.1.8
    Temp Directory Created Successfully
    Mount Point = /d01/oracle/prodcomn/temp
    Error - Unable to create directory with proper privileges:
    APPL_TOP admin Install Log Directory
    Mount Point = /d01/oracle/prodappl/admin/PROD_ /log
    Enjoy,
    Prakash S. Ranade
    Database Administrator
    OCP DBA - 8i, 9i
    "Because you can doesn't mean you should"

    Hi
    I've installed, but have problem with Forms.

  • Oracle 9i (9.2.0.4) install on Redhat linux AS3.0

    I download the oracle 9i (9.2.0.4)latest version from website , I only require patch p3006854_9204_linux.zip for the installation. But Unfortunitly, after finish database setup, It can not start Agent Configuration Assistant
    error message:
    "Agent service Failed"
    Any one can give me suggestion to solve it ?
    Thanks a lot!
    [email protected]

    Did you set your oracle home? Can you post your ENV parameters?

  • Where can I download "apache http server plug-in", where apache is on Redhat Linux 7.2

    hi,
    very urgent!
    where can I download "apache http server plug-in", where apache
    web server is on Redhat Linux 7.2.
    in my situation,I want to proxy all requests to weblogic 6.1,which is on win2000.
    thanks
    jy

    Hi,
    You can try using the following approach with +'MatchExpression'+ parameter for the +'VirtualHost'+ configuration, which should solve your problem:
    <VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName << Put your apache server ip-address here>>
    ErrorLog logs/error_log
    <Location */CustomLocationPrefix1** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP1+
    WebLogicCluster 192.168.100.1:7001,192.100.1:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_1
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <Location */CustomLocationPrefix2** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP2+
    WebLogicCluster 192.168.100.3:7001,192.168.100.4:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_2
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <Location */CustomLocationPrefix3** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP3+
    WebLogicCluster 192.168.100.5:7001,192.168.100.6:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_3
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <IfModule mod_weblogic.c>
    +## Combine all the locations for the different web-apps you want to route through apache http server+
    +## (i.e., APP1, APP2, APP3 in this case).+
    WebLogicCluster 192.168.100.1:7001,192.168.100.2:7002,192.168.100.3:7001,192.168.100.4:7002,192.168.100.5:7001,192.168.100.6:7002
    MatchExpression *
    +## The following may not be needed (need to recheck)+
    EnforceBasicConstraints OFF
    </IfModule>
    </VirtualHost>
    Regards,
    Deepak Kerur.
    Edited by: user10231088 on Jul 7, 2011 6:36 PM
    Edited by: user10231088 on Jul 7, 2011 6:36 PM

  • Successful installation of 8iEE 8.1.7 on RedHat linux 7.2 but no luck with Oracle 9i

    Hi All,
    I've successfully installed Oracle8i EE version 8.1.7 on RedHat
    Linux 7.2. However, I have NOT had much luck installing Oracle
    9i version 9.0.1 on RedHat Linux 7.2. I am wondering if anyone
    in this forum has any luck installing Oracle 9i on RedHat Linux
    7.2. I am running Linux kernel 2.4.7-10.
    Now I am not trying to start a shouting match here; however, it
    seems to me that a person with any common sense would not run
    Oracle database on a Windows platform. Instead of running it
    on Windows platform, one would be much better off running it on
    Linux platform. I am currently Oracle EE 8.1.7 on an dual-Intel
    processor 266MHZ with 512MB of RAM with Linux as the Operating
    System. I have to say that the performance of the box is really
    solid. At the same time, I am also running Oracle EE 8.1.7 on
    an identical hardware system with Win2K server and I have to say
    that the performance system is really pitiful on this Win2k server.
    The windows box can only 1 instance at a time. If I try to have
    two instances running at the same time, the windows box just comes
    to a screeching halt. In contrast, the Linux box really rocks. In
    a testing environment, I have 3 instances running at the same time
    and the linux is barely breaking a sweat. I am getting maximum
    performance out of the linux box because I recompile the linux kernel
    to optimize the box to run Oracle database.
    Having said that, as an Oracle DBA newbie (with less than six months
    of Oracle DBA experience, the last ten years as a Cisco/Unix Engineer),
    I find it fascinating that Oracle is only certified to run on SUSE (may
    be I am wrong and someone can correct me on this one) when RedHat is
    probably the dominant Linux distro. It took three days to get Oracle 8i
    version 8.1.7 to install on RedHat Linux 7.2. Why Oracle is slowed to
    support Linux RedHat is something I just don't understand.
    OK, enough of venting my frustration, if anyone has successfully installed
    Oracle 9i EE version 9.0.1 on RedHat Linux 7.2, please share your knowledge.
    In the mean time, if anyone interested in obtaining instructions on howto
    install Oracle 8i version 8.1.7 on Redhat Linux 7.1/7.2, send me an email
    at [email protected] and I will send the instructions. The instructions
    are written specifically for "windows dummies" so it is very to read and
    follow. If you have been Unix for a long time, there will be instructions
    in there that are so easy some of you may ask why put those in there in the
    first place. My response would be: "windows dummies".
    Regards,
    Michael (david)

    I very much agree with you Oracle is working very much better on Unix/Linux than Windows BUT in many cases you are obliged to use windows ( in Case that My company high managment enforce it ) , I have installed 9i on Windows and Linux , I am herunder including the full details :
    ========================================================================
    Installing Oracle 9i on Linux
         Linux : Redhat 7.2
         Oracle : 9i Server EE 9.0.1.0.0
         RAM Used : 256 M Ram
         Hard Disk : IDE RAID
         Linux Kernel : 2.4.4-10
         JDK : Blackdown jdk118_v3 => downloaded from www.blackdown.org
         All shell here is the Bash shell ( Bourne again shell )
    1.     To run a shell script over Linux , just drag the shell file from the file manager and drop it to a shell window
         Be sure to have swap space of 400 M or more
         If the systems stop responding for some time , leave it , it will continue
         Be sure to make a stage area for the CDs # 2 , 3 only because you will start from the CD 1 but after going in the installation the CDROM freezes and refuses to open door to replace CD ,, in this case you will switch to the last 2 CDs from the stage area
         Make sure you have the following executables at /usr/bin : MAKE , AR , LD , NM , C for Unix that is installed during Linux installation from the distribution media
    Steps ( Root User ) :
    1.     be sure to have to have your server domain is like hostess.com.eg and you can be able to ping it
    &#61607;     open /etc/hosts
    &#61607;     add a line as follows ( for instance ) :
    &#61607;     192.168.0.11 hostess.com.eg hostess
    &#61607;     ping hostess.com.eg
    &#61607;     ping hostess
    &#61607;     ping 192.168.0.11
    &#61607;     be sure to have a replay for all of them
    2.     install JDK inside the /usr/local directory => after downloading the JDK you can easily decompress it but just clicking at it using the GUI
    3.     get to the / prompt
    4.     type ln s /usr/local/jdk118_v3 /usr/local/java
    5.     download binutil RBM from Redhat for version 7 of Linux to downgrade binutils for Linux 7.2 or you will encounter an error at the third CD set
    6.     download it from : ftp://ftp.redhat.com/pub/redhat/linux/7.0/en/os/i386/redhat/rpms/binutils-2.10.0.18-1.i386.rpm
    7.     run it as follows : rpm -Uvh force nodeps binutils-2.10.0.18-1.i386.rpm
    8.     change to /proc/sys/kernel
    9.     type cat sem
    10.     you will get : 250 32000 32 128
    &#61607;     250 => SEMMSL
    &#61607;     32000 => SEMMNS
    &#61607;     32 => SEMOPM
    &#61607;     128 => SEMMNI
    11.     you need to have the SEMOPM to be 128 , to do so , locate the file called sem open it replace the value of 32 with 128
    12.     type again cat sem to be sure of taking the required effect
    13.     after the installation ends just re-install the 7.2 utils again as follows :
    14.     rpm -Uvh force nodeps binutils-2.11.90.0.8-9.i386.rpm
    15.     you can find the last RPM at the 7.2 CD set
    16.     after downloading the Oracle files from the net you need to decompress it as follows (one step) :
    &#61607;     zcat linux9i_disk1.cpio.gz | cpio idmv
    &#61607;     zcat linux9i_disk2.cpio.gz | cpio idmv
    &#61607;     zcat linux9i_disk3.cpio.gz | cpio idmv
    17.     you can decompress them at 2 steps as follows :
    &#61607;     gunzip linux9i_disk1.cpio.gz
    &#61607;     gunzip linux9i_disk2.cpio.gz
    &#61607;     gunzip linux9i_disk3.cpio.gz
    &#61607;     cpio idmv < linux9i_disk1.cpio
    &#61607;     cpio idmv < linux9i_disk2.cpio
    &#61607;     cpio idmv < linux9i_disk3.cpio
    18.     Now you have 3 directories , have care when Burning them to CD because you need to take care of paths
    19.     if you have downloaded the files via a Windows machine and have a MKS installed over it you can easily invoke Visual Pax and decompress the files at one go using the GUI program
    20.     log on to Linux as Root and run commands in the file commands.txt
    21.     log on as user Oracle to be sure that its created
    22.     log on as root again
    23.     get to the directory of /home/oracle
    24.     enable showing the system files
    25.     open the file of .bash_profile
    26.     add the accompanied bash file contents at the end of it to set the environment variables
    27.     log on as user Oracle
    28.     open shell and type set and be sure that environment variables are set correctly
    29.     open shell and change to the cdrom by typing cd /mnt/cdrom => Linux 7.2 is an auto mounting OS so you at no need to mount the CD drive prior to using it and if you need to mount it just type : AS ROOT
    &#61607;     mount t iso9660 /mnt/cdrom /cdrom
    &#61607;     this is surly after creating a directory at / called cdrom
    30.     Start the installer ( as Oracle User ) by typing ./runinstaller
    31.     the installer will ask you to run a started script as root , you may open a shell and type su then open Nautilus ( if using Gnome or File manager as super user if using KDE ) and drag the noted file to the shell screen and press enter ,, after it is ended continue with the installer
    32.     if asked to supply JDK home directory then it is /usr/local/java
    33.     Unix group Name ( to update Oracle software ) : oinstall
    34.     Oracle home is : /oracle/9.0.1
    35.     base directory : /oracle/orainventory
    Hisham Nagia
    IT Manager / OCP DBA
    Hostess Egypt / EFG-Hermes - CIIC

  • Oracle forms server implementation on single machine

    I am using windows xp on my system.
    can I run the developer 6i forms .FMX file from browser (internet explorer), after installing oracle forms server??
    which operating system should we use to implement forms server.
    while installing form server on windows xp a message was displayed like 'some files can be installed on
    windows NT only'. I am not sure wheather the forms server will work on windows xp?
    My requirement is I want to run the .FMX file from Internet explorer in my system i.e using single machine.
    plz clarify.
    with thanks
    GMS

    can I run the developer 6i forms .FMX file from browser (internet explorer), after installing oracle forms server??The answer is yes if you can get it to install.
    I think you will need a FQHN (Host name with DNS).
    which operating system should we use to implement forms server?We used Linux, Red Hat 4 AS, But I think you could use Windows 2003 with that version. I would avoid Windows NT at this point.
    I have no information on using XP, I'm pretty sure I would not. I would use a server OS.
    Best Regards
    mseberg

  • JDBC OCI8 driver for Redhat linux 6.1

    I have oracle 8.1.5.0.1 Enterprise server loaded on RedHat linux 6.1 and i am trying to access database through jdbc. When I am trying to execute one of the compiled class say Employee.class provided in the JDBC samples directory using OCI* driver it is coming up with an error libocijdbc8.so can not open shared object file: no such file or directory. This libocijdbc8.so file can not be found on the disk. Can some one please provide me leads where can find this driver? ar Oracle's website or somewhere else?. Any help in this regard will be greatly appreciated.
    Thanks
    Naidu

    One more thing, I tried this with both jdk1.1.6_v5 and jdk1.1.8 and also i have class path pointing to $ORACLE_HOME/jdbc/lib/classes111.zip file. and the code is
    /* This sample shows how to list all the names from the EMP table
    // You need to import the java.sql package to use JDBC
    import java.sql.*;
    class Employee
    public static void main (String args [])
    throws SQLException, ClassNotFoundException
    Class.forName("oracle.jdbc.driver.OracleDriver");
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    // Connect to the database
    // You can put a database name after the @ sign in the connection URL.
    Connection conn =
    DriverManager.getConnection ("jdbc:oracle:oci8:@NaiduT2", "scott", "tiger");
    // Create a Statement
    Statement stmt = conn.createStatement ();
    // Select the ENAME column from the EMP table
    ResultSet rset = stmt.executeQuery ("select ENAME from EMP");
    // Iterate through the result and print the employee names
    while (rset.next ())
    System.out.println (rset.getString (1));
    // Close the RseultSet
    rset.close();
    // Close the Statement
    stmt.close();
    // Close the connection
    conn.close();
    }

  • Where to download Oracle 9i client for Redhat Linux?

    We have our Oracle 9i database running on another UNIX machine and need to install Oracle 9i client with sqlplus to be installed on Redhat Linux. So, can someone tell me where I can download it?

    Hi,
    Please refer to:
    http://www.oracle.com/technology/software/products/oracle9i/index.html
    Best regards,
    Sipingal

  • Not able to connect to DB in Redhat Linux - intermittent wired problem

    Hi,
    I need some help from you if possible please help me. There is a wired problem in the Linux based Oracle server.
    OS: Redhat Linux 8
    Database: Oracle Enterprise server 9.2
    There is an intermittent wired problem.
    After some time (it happen twice last Saturday and Yesterday), either from application or from SQL Plus we are not able to connect it from outside. But we are able to connect to the oracle server on Linux server.
    We checked the Listener status on the server and it was UP and running.
    We can ping the server from outside.
    We are not able to do an FTP from inside the server or from Outside to the Linux server.
    During this time the http protocol is working we can upload any file to the other sites.
    We tried to shutdown the oracle server and even we tried to restart the OS itself and not able to resole this issue.
    If we create a new Listener and starts the server and all blocking thing were released and now working.
    Currently we are monitoring the server at ALIF’s premises if it going to happen for the third time or not.
    Thanks a lot
    Regards
    Kumar

    What is the error that you get when you try to get connection ?
    to check the log file is a good option: <ORACLE_HOME>/network/log/listener.log
    Joel Pérez

  • Can any one help me. I tried to install Oracel 8.1.5 on RedHat Linux 7.0 and failed.

    I am running my system with RedHat Linux 7.0 and tried to install Oracle 8.1.5.
    I extracted jre required files and when i tried to start ./runIns.sh from install/linux directory it is giving me an error Unable to initalize threads: cannot find class Java/lang/Thread
    Could not create JVM
    i tried 3 times and i ended up here and i need instruction to sort out the problem as earlier as possible.pls do advice me in this.
    pls send the solution ASAP to my email id - ([email protected])

    Make sure you have IBM's Java 1.1.8 JRE/JDK installed on your server and $JAVA_HOME set. Check the Oracle installation instructions. One other problem with Red Hat 7.0. is that
    there is a libc library incompatibility problem with Red Hat linux 7.0 and Oracle 8i. The database will not start after you install it. Go to MetaLink (if you have support) and search for document # 121176.1. Basically, you have to download an older version of glibc, modify your Oracle link environment files, re-link the database executables and all will work normally. I did it on my Red Hat Linux 7.0 server two weeks ago and everything is working fine. Only other alternative is downgrade to Red Hat 6.2.

  • Error in starting form server on Redhat 7.1

    Hi,
    i have installed oracle9iAS 1.0.2.0.0 on redhat 7.1 successfully
    with out any error but when I start forms server it gives error
    like: failed to exec runform f60webm [error:2]
    WHen I look in make.log file it shows errorr like
    gcc: /usr/xllR6/lib/libXm.so :no such file or directory
    make: *** [rwrun60] error 1
    this error are at various places in make.log file
    when I look for libXm.so in that directory it was not there.
    can I download this file from some where???
    pls give any solution for it as I'm unable to run my forms
    through web
    thanx in advance
    Akhil

    I think that this is an x-windows library that you are missing.
    You need to get and install the x-windows rpm and that will have
    the file. Have a look for the file name using google and I'm
    sure you'll find the name of the package.
    Steve

  • Succes installing 9iAS R2 (release 2) on RedHat Linux 7.3

    I had success installing 9iAS release 2 on RedHat Linux 7.3. I used the instructions on http://www.puschitz.com/OracleOnLinux.shtml.
    At first, I tried this on RedHat 8.0. Funny thing is: installation of infrastructure failed even though I followed the instructions. Then I downloaded 7.3, followed EXACTLY the same instructions and voila, works like a charm.
    Puschitz' instructions are for 9i and not for 9iAS though. Some additions:
    1) One of the pre-installation steps there says to set some environment variables, one of them being the SID. It's set to 'test', but of course with standard settings the sid of the database that comes along with 9iAS has a SID of 'iasdb'.
    2) Also what I did, was to downgrade the binutils package to the version provided by Oracle here: http://otn.oracle.com/software/products/oracle9i/files/binutils_readme.html. As an alternative, Puschitz says to change some makefiles. I didn't try this.
    3) I then installed the infrastructure. When finished, I exited the installation and rebooted. After the reboot:
    4) I changed to the /bin directory and typed (as root):
    ln -s /sbin/fuser
    5) Changed back to user 'oracle' and started the infrastructure with:
    $ORACLE_HOME/bin/sqlplus
    connect / as sysdba
    startup
    exit
    $ORACLE_HOME/bin/lsnrctl start
    $ORACLE_HOME/bin/oidmon connect=iasdb start
    $ORACLE_HOME/bin/oidctl connect=iasdb server=oidldapd instance=1 start
    $ORACLE_HOME/opmn/bin/opmnctl startall
    6) Then started the installer and did the middletier installation. Rebooted.

    Following your instructions i've also succesfull installation of ias9iR2 Infrastructure on Redhat7.3. Checked the database Iasdb and Enterprise Manager Website (on http://liminwang:1810), everything works fine. Hence i try to install Portal & Wireless on the same machine on a different Oracle_home (but on the same Oracle_base) according to the installation guide. The installation stuck when i've chosen the Portal and Wireless option. I get a warning that the Enterprise Manager Website Process is still running and it must be stopped to proceed the stallation. So i stopped this process by: $oracle_home/bin/emctl stop
    Still i get the same warning. Stopping the database also doesn't help. Even when i deinstalled the Enterprise Manager Website component i get the same warning.
    Please help!

Maybe you are looking for

  • Firming the schedule lines from MRP

    Hi All, I have a scenario where I generate the scheule lines from the total planning run for the material with the help of schedule line indiator = 3. I want these schedule lines should get automatically firmed. Which are the various ways by which I

  • Conceal data item (forms generation)

    Hi How could I generate a conceal data item (for example, for entering passwords)? I can't find any property, and the documentation says that the conceal form item property is not set by designer... Thanks

  • What does output look like

    I have RoboHelp on my computer, and I used an older version years ago. Can I pull in multiple flash/html files and generate an output of one swf file? If so, Robohelp may REALLY solve some of our problems!!!

  • HTML in a MessageDialog box

    Can you have a html-link in a JOptionPane.showMessageDialog box??? If so is the case, what do I write? Thanks!!!

  • Web page super small

    I am wondering why internet pages don't fill the whole screen. I have stretched my internet from the bottom right corner so that it takes up the whole 17" screen, but all the web content stays super tight in the center. It just seems so small and is