JES Install on RedHat EL 3

Hi,
Just curious, has anyone out there successfully installed JES on RedHat Enterprise Linux 3?
Thanks

I have successfully installed on the supported Linux version, RedHat ES 2.1u2
Any other version would not be supported. . .
I know the installer fails on Fedora.

Similar Messages

  • JES 2005Q4 on Redhat 3 AS - AM problem

    I am using JES 2005Q4 on Redhat Linux 3 AS.
    After Installing DS, admin server, then Msg server and all are ok.
    I installed AM using web server as the web container - also uninstall and reinstall AM, but still facing the same problem
    When I start the web server it start successfully but the am server not and it giving the following errors
    =====
    failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exceptionjavax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
    ----- Root Cause -----
    java.lang.NullPointerException
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.j ava:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)< br> at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:347 8)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133) at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500) at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: HTTP3072: [LS ls1] http://redhat.omnixco.com:90 ready to accept requests
    startup: server started successfully
    Please help as it is urgent installtion and if you can advise which user provisioning tool I can use untill we fix this problem.

    Could you set debug to "message" and have a look into amAuth debug log?
    -Bernhard

  • Install linux redhat for oracle 10g2

    Hi Friends,
    I will install linux redhat linux 5 for oracle 10g 2. How to created correct partition of linux to match oracle 10g 2.
    I install linux as server style. any advice?
    Thanks
    JIm

    Hi JIm
    It is true that for us DBA the OFA is the standard by excellence. You have also the quite good document on that gives you also a lot of examples.
    http://www.ss64.com/orasyntax/ofa.html
    What is a style server? Do you mean as a template server?
    Please note also that if you need to do more than 1 installation you can clone your binaries from your first installation. Ideally you should patch it to he latest release and then make your clone.
    1. tar your current binaries under /oracle/product/10.2.0/db_1
    2. copy the tar file on the target server under /export/home/oracle and then untar it.
    3. cd to new_oracle_home/oui
    4. ./runInstaller -clone -silent ORACLE_HOME="<new_oracle_home>" ORACLE_HOME_NAME="<unique_home_name>"
    read more on http://download.oracle.com/docs/cd/B19306_01/install.102/b15660/app_cloning.htm
    You can also clone your database to other targets
    1 Duplicate from source to your targets     
    1.1 Perform a database backup including archive log
    1.2 Create an Oracle password file for the auxiliary instance
    1.3 Establish Oracle Net connectivity to the auxiliary instance
    1.4 Create an initialization parameter file for the auxiliary instance
    1.5 Start the auxiliary instance in NOMOUNT mode
    1.6 Mount or open the target database
    1.7 Ensure that backups and archived redo log files are available
    1.8 Allocate auxiliary channels if needed
    1.9 Execute the DUPLICATE script
    Hope this will help you to get the templates installed.
    Cheers
    Hubert
    Edited by: Hub on Oct 25, 2008 1:52 PM

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

  • JRE 1.4.0_01 install with Redhat 7.3

    After installation of the rpm-package I tried
    ./java -version
    and the systems claims that:
    Error: failed /usr/java/j2re1.4.0_01/lib/i386/client/libjvm.so, because libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
    Does that mean, that libstdc++-libc6.1-1.so.2 is not installed, or just that he can't find it?
    (used Redhat installation with option Software-Development, without Kernel-Development).
    Best regards
    F.

    I found out, that libstdc++....rpm is already installed on my system
    and there is seemingly no bugfix from Readhat for 7.3 concerning glibc -
    so it's a promblem with PATHs maybe?

  • Can Tuxedo6.5 install on Redhat 6.2 or 7.0 or 7.1?

    I tried to install tuxedo 6.5(client) on the redhat 7.1 many times on diffirent
    machine,but it return the same error as follow:
    Using /usr/tuxedo as the TUXEDO base directory
    \nUnloading /mnt/cdrom/linux/sw234/tuxcore/WS.Z ...
    cpio: premature end of file
    .. finished

    Well, if you see the platforms of the Tuxedo, you con see only the Tuxedo 71 for
    RedHat61
    and the Tuxedo80 for RedHat62. But I saw in some solutions case the installation
    the use
    of the Tuxedo65 with RedHat, but using some patches for RedHat for some C libraries.
    I'm trying to install the Tuxedo80 in a RedHat62 now, but I have some problems
    because when I start my services i can't see them in the tmadmin utility and I
    receive
    lines of my UBB file instead.
    I hope help.
    Ronald.
    "giler hu" <[email protected]> wrote:
    >
    I tried to install tuxedo 6.5(client) on the redhat 7.1 many times on
    diffirent
    machine,but it return the same error as follow:
    Using /usr/tuxedo as the TUXEDO base directory
    \nUnloading /mnt/cdrom/linux/sw234/tuxcore/WS.Z ...
    cpio: premature end of file
    ... finished

  • 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

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

  • 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

  • Oracle 8.1.7 Install on RedHat 6.2

    hey all, i've having some trouble with an Oracle 8.1.7 install on a vanilla rh6.2 server. The rh server has all the latest rpm upgrades installed as recommended by RedHat. When i run the installer script, i get this error message:
    SIGFPE received at bfffef9c in /usr/oracle/data/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/nat
    ive_threads/libawt.so. Processing terminated
    any idea what the heck this is caused by? I haven't tried a 8.1.6 install on this box yet, might give that a shot just to see if it works. thanks for any help or pointers.
    Jason

    Hello,
    i have a question about your updates: you run a system with glibc 2.2? -> forget it!
    i try to install 8.1.7 on RH7 and i get the same error-message, i downgrade to RH6.2 (orginal, without updates) and its work!
    Have alook to the topics with RH7 problems or use RH6.2 without updates(glibc)
    marcel
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jason Holland ([email protected]):
    hey all, i've having some trouble with an Oracle 8.1.7 install on a vanilla rh6.2 server. The rh server has all the latest rpm upgrades installed as recommended by RedHat. When i run the installer script, i get this error message:
    SIGFPE received at bfffef9c in /usr/oracle/data/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/nat
    ive_threads/libawt.so. Processing terminated
    any idea what the heck this is caused by? I haven't tried a 8.1.6 install on this box yet, might give that a shot just to see if it works. thanks for any help or pointers.
    Jason<HR></BLOCKQUOTE>
    null

  • Error when installing on Redhat

    Hello, we have just downloaded the evaluation version of the Sun Global Desktop application and would like to test it to see if it suits our needs. We are actually testing this inside a virtual server (Linux Vserver) on CentOS 5 (basically the same thing as Redhat).
    Installing the RPM works fine but when running /opt/tarantella/bin/tarantella start, I accept the license agreement and default installation settings, and I get the following output:
    OK to use these settings? [Y]
    Configuring your installation...
    Running templates Setup script...OK
    Running files_rename Setup script...OK
    Running dbcreate Setup script...OK
    Running extended_templates Setup script...OK
    Running config Setup script...OK
    Running printing Setup script...OK
    Running sysadmin Setup script...OK
    Running loadprobe_config Setup script...OK
    chmod: cannot access `/opt/tarantella/var/serverconfig/global/t3hostdata/template.properties': No such file or directory
    chgrp: cannot access `/opt/tarantella/var/serverconfig/global/t3hostdata': No such file or directory
    chown: cannot access `/opt/tarantella/var/serverconfig/global/t3hostdata': No such file or directory
    grep: /opt/tarantella/var/serverconfig/local/server.properties: No such file or directory
    Configuring and starting Secure Global Desktop web server...OK
    Running wcp/configchanges Setup script...OK
    Running tsp/resources Setup script...java.util.MissingResourceException: Can't find bundle for base name cmdline.ErrorMessageStrings, locale en_AU
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1521)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1260)
            <snip>
         at com.sco.tta.common.util.TarantellaApplication$1.run(TarantellaApplication.java:74)
         at com.sco.cid.common.RunnableThreadGroup.run(RunnableThreadGroup.java:129)
         at com.sco.tta.common.util.TarantellaApplication.run(TarantellaApplication.java:128)
         at java.lang.Thread.run(Thread.java:619)
    2009/11/12 13:07:50.117     (pid 0)     admin/misc/fatalerror     #1257991670084
    Sun Secure Global Desktop Software (4.5) FATAL ERROR:
    Failed to load essential configuration.
    Exception was: java.util.MissingResourceException: Can't find bundle for base name cmdline.ErrorMessageStrings, locale en_AU
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1521)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1260)
            <snip>
               at com.sco.tta.common.util.TarantellaApplication.run(TarantellaApplication.java:128)
         at java.lang.Thread.run(Thread.java:619)
    This program must now exit.
    Ensure the adminconfig directory exists.
    OK
    Running 3270/resources Setup script...OK
    Running 3270/configchanges Setup script...sed: can't read /opt/tarantella/var/serverconfig/local/xpe.properties: No such file or directory
    OK
    Running 3270/purge Setup script...OK
    Running 5250/resources Setup script...OK
    Running 5250/configchanges Setup script...OK
    What's next?
    Secure Global Desktop is now installed and ready to use.
    To get started:
    - In a web browser, go to:
       http://sgd.openhealth.com.au/
    - When prompted, log in with username "Administrator" and root's password.
    - On your webtop, click Administration Guide to learn more about the product.
    To add license keys, type:
    /opt/tarantella/bin/tarantella license add <key>...
    sed: can't read /opt/tarantella/var/serverconfig/local/tuning.properties: No such file or directory
    sed: can't read /opt/tarantella/var/serverconfig/global/cdm.properties: No such file or directory
    sed: can't read /opt/tarantella/var/serverconfig/local/tuning.properties: No such file or directory
    sed: can't read /opt/tarantella/var/serverconfig/local/tuning.properties: No such file or directory
    /opt/tarantella/bin/scripts/jserverstart: line 242: /opt/tarantella/var/serverconfig/global/webauth.properties: No such file or directory
    2009/11/12 13:07:56.006     (pid 19289)     server/config/error     #1257991676007
    Sun Secure Global Desktop Software (4.5) ERROR:
    The server configuration has been corrupted and can't be repaired.
    The server can't start.
    Reinstall Secure Global Desktop.
    2009/11/12 13:07:56.134     (pid 19289)     server/server/fatalerror     #1257991676134
    Sun Secure Global Desktop Software (4.5) FATAL ERROR:
    JServer error: com.sco.cid.common.ApplicationError: config corrupt[Root exception is javax.naming.ConfigurationException: Bad provider.url [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverresources/schema/attribute.conf (No such file or directory)]]
         at com.sco.tta.common.config.JndiServerConfigConstraints.checkHostObject(JndiServerConfigConstraints.java:135)
         at com.sco.tta.common.config.JndiServerConfigConstraints.run(JndiServerConfigConstraints.java:41)
         at com.sco.tta.common.config.JndiServerConfig.<init>(JndiServerConfig.java:164)
         at TTAServer.run(TTAServer.java:288)
         at java.lang.Thread.run(Thread.java:619)
    com.sco.cid.common.ApplicationError: config corrupt[Root exception is javax.naming.ConfigurationException: Bad provider.url [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverresources/schema/attribute.conf (No such file or directory)]]: Root exception is
    javax.naming.ConfigurationException: Bad provider.url [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverresources/schema/attribute.conf (No such file or directory)]
         at com.sco.jndi.provider.schema.SchemaContext.<init>(SchemaContext.java:122)
         at com
            <snip>
         at com.sco.jndi.provider.schema.AttributeSchemaContext.loadAttributeSchema(AttributeSchemaContext.java:105)
         at com.sco.jndi.provider.schema.AttributeSchemaContext.loadschema(AttributeSchemaContext.java:83)
         at com.sco.jndi.provider.schema.SchemaContext.<init>(SchemaContext.java:111)
         ... 20 more
    There may be a problem with the JVM.
    The server will exit.
    Check the logs for more information.
    2009/11/12 13:12:51.160     proxy/server     #1
    Sun Secure Global Desktop Software (4.5) FATAL ERROR:
    The program has encountered an error that means it cannot continue.
    It will now exit. A technical description is given below to help
    establish the cause.
    The JServer failed to restart.
    The Secure Global Desktop server cannot continue to run.
    Fix the problem which caused the JServer to fail to start.It looks as if the RPM file is missing some files however I'd imagine everyone else would be having the same problem. Any ideas?

    Oh well looks like we'll have to go with citrix.

  • Oracle 10.2 Install on RedHat EL5 PowerPC

    I am trying to install Oracle 10.2 on RedHat EL5 for PowerPC
    ./runInstaller -ignoreSysPrereqs
    I have this error in the log file:
    NFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: /home/oracle/oracle_10g/product/10.2.0/bin/genclntsh
    INFO: /usr/bin/ld: cannot find -lxl
    collect2: ld returned 1 exit status
    INFO: genclntsh: Failed to link libclntsh.so.10.1
    INFO: make: *** [client_sharedlib] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'client_sharedlib' of makefile '/home/oracle/oracle_10g/product/10.2.0/network/lib/ins_net_client.mk'. See '/home/oracle/oracle_10g/oraInventory/logs/installActions2011-06-24_11-29-20AM.log' for details.
    Exception Severity: 1
    The installed rpm (with the command rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}\n'|egrep 'binutils|compat|glibc|gcc|libstd|cpp|make|ODBC|libaio|ksh|motif|libelf|sysstat'| egrep -v 'avahi|cdrkit|ldap|ssl'|sort) are:
    binutils-2.17.50.0.6-14.el5.ppc
    compat-db-4.2.52-5.1.ppc64
    compat-glibc-headers-2.3.4-2.26.ppc
    compat-libgcc-296-2.96-138.ppc
    compat-libstdc++-296-2.96-138.ppc
    compat-libstdc++-33-3.2.3-61.ppc
    compat-libstdc++-33-3.2.3-61.ppc64
    cpp-4.1.2-50.el5.ppc
    elfutils-libelf-0.137-3.el5.ppc
    gcc-4.1.2-50.el5.ppc
    gcc-c++-4.1.2-50.el5.ppc
    glibc-2.5-58.ppc
    glibc-2.5-58.ppc64
    glibc-common-2.5-58.ppc
    glibc-devel-2.5-58.ppc
    glibc-devel-2.5-58.ppc64
    glibc-headers-2.5-58.ppc
    java-1.4.2-gcj-compat-1.4.2.0-40jpp.115.ppc
    ksh-20100202-1.el5_5.1.ppc
    libaio-0.3.106-5.ppc
    libaio-0.3.106-5.ppc64
    libgcc-4.1.2-50.el5.ppc
    libgcc-4.1.2-50.el5.ppc64
    libstdc++-4.1.2-50.el5.ppc
    libstdc++-4.1.2-50.el5.ppc64
    libstdc++-devel-4.1.2-50.el5.ppc
    libstdc++-devel-4.1.2-50.el5.ppc64
    make-3.81-3.el5.ppc
    openmotif22-2.2.3-18.ppc
    sysstat-7.0.2-3.el5_5.1.ppc
    unixODBC-2.2.11-7.1.ppc
    unixODBC-kde-2.2.11-7.1.ppc
    vacpp.rte-9.0.0-2.ppc64
    anyone can help me
    Thanks in advance,
    Enrico.

    Very interesting Kecskemethy
    In the paper it is written:
    *4.2 Default Makefile Issue on Red Hat Enterprise Linux 5*
    The default makefile version on Red Hat Enterprise Linux 5 is make 3.81. In this
    makefile version, the default database name (db_name) is not recognized by the client.
    Therefore, you should use makefile version 3.79 or use @db_name whenever
    username/password is used in the makefile.
    I tried the rpm-make-3.79 .... El5.ppc but I've not found.
    Should I then replace @dbname in the makefile.
    But where are these makefile that uses Oracle?
    And then I'm not sure that this will solve the problem ...

  • URGENT - Installing 817 - redhat 7.1 Gives Error in invoking target ntcontab.o

    Hi All,
    I have installed Redhat 7.1 and I am trying to install oracle 817 ee over it.
    after finishing all pre install requirments I succedded to start the installer
    - I installed jdk 118 v3
    - I added the Display and assume_kernel parameters to bash file
    but at the middle of setup it is giving the following error
    "Error in invoking target ntcontab.o of makefile
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk" and I tried to reply but it comes again
    here is the install log file
    "Starting install link phase of component Net8 Required Support Files
    Calling action unixActions1.7.1.5.0 registerForMake
    installMakePath = /usr/bin/make
    installMakeFileName =
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    installTarget = mkldflags
    installArguments = ORACLE_HOME=/boot/u01/app/oracle/product/8.1.7,
    undoMakeFileName = null
    undoTarget = null
    undoArguments = null
    logFile = /boot/u01/app/oracle/product/8.1.7/install/make.log
    progMsg = Linking ldflags
    Calling action unixActions1.7.1.5.0 make
    installMakePath = /usr/bin/make
    installMakeFileName =
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    installTarget = ntcontab.o
    installArguments = ORACLE_HOME=/boot/u01/app/oracle/product/8.1.7,
    undoMakeFileName = null
    undoTarget = null
    undoArguments = null
    logFile = /boot/u01/app/oracle/product/8.1.7/install/make.log
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target ntcontab.o of makefile
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE"
    please tell me what can I do to overcome this taking into consideration that I have downloaded and executed oracle patch published at otn.oracle.com
    waiting for your reply

    check these
    rpm -q compat-libs
    rpm -q compat-glibc
    rpm -q compat-egcs

  • HELP: Java Install on RedHat ES3 Linux

    I get the following error evoking java after initial install of J2SDK on RedHat ES 3 (version 9):
    [root@bdln4002 ~]$java -version
    Fatal: Stack size too small. Use 'ulimit -s' to increase default stack size.
    Aborted
    I have adjusted the stack size via ulimit command and reloaded the kernel. I have extended the stack size to "unlimited" and still receive the same error. My current settings look like this:
    [root@bdln4002 ~]$ulimit -a
    core file size (blocks, -c) 0
    data seg size (kbytes, -d) unlimited
    file size (blocks, -f) unlimited
    max locked memory (kbytes, -l) 4
    max memory size (kbytes, -m) unlimited
    open files (-n) 1024
    pipe size (512 bytes, -p) 8
    stack size (kbytes, -s) 10240
    cpu time (seconds, -t) unlimited
    max user processes (-u) 31488
    virtual memory (kbytes, -v) unlimited
    I have installed Java plenty of times in Solaris with out a fraction of this frustration. Any ideas where I am missing the boat? My searches are turning up nothing ... so assume I am complete linux idiot at this point.

    I've never heard of that error before. So I googled it and found this..
    http://www.mail-archive.com/[email protected]/msg15491.html
    Are you using a Blackdown jvm.. That isn't necessary for Linux any more. And the suggestion in this thread is to try using Java version 1.5. Honestly, I don't know enough about this subject to offer any thoughts of my own here.
    For general help with Linux you could try Linux Questions. There is a forum there specific for Red Hat users.
    http://www.linuxquestions.org
    Here are some links which offer information about installing Java on Linux. I don't remember the dates on these pages.
    http://home.bredband.no/gaulyk/java/index.html
    http://pipeline.lbl.gov/vgb2/help/java_linux_instructions.shtml
    http://www.cs.princeton.edu/introcs/21hello/linux.html
    http://www.linuxjournal.com/comments.php?op=Reply&pid=5780&sid=6290

  • WebLogic 7.0 install on RedHat 7.1 failed

    Does anyone successfully install WebLogic 7.0 on Linux? I try it with
    the following error:
    [root@tiger /download]# ./weblogic700_linux.bin
    Extracting
    0%....................................................................................................100%
    Font specified in font.properties not found
    [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found
    [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    ** Error during execution, error code = 11.

    wrong news group. Try tuxedo.general
    I've only seen Tuxedo used on RDH 7.1 and 7.2.
    Wayne
    Juan Melis wrote:
    Hi,
    I'am trying install Tuxedo 8.0 Client over
    RedHat 2.1 Advanced Server. The installation
    hangs and the ps command shows a java process defunct.
    I suspect that the .java_wrapper packaged
    in the tuxedo80_linux.bin fails.
    Does somebody have any idea?
    Thanks in advance.
    Juan

Maybe you are looking for

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All, When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part.  For example, I

  • Remove numbers after filename and add custom sequence?

    Hi, I have to rename quite much of rendered frames which names are like aoPass_000001.png...aoPass_099999.png. I have to replace those numbers to start from 0111111 for example witch I'll input manually when I run rename process. Right now I do it us

  • Help required!  - K700i and JavaScript

    Have just upgraded to a Sony Ericsson K700i and am having trouble access some web pages as it says either my browser does not support JavaScript or the JavaScript has been de-activated. As i don't know how to de-activate the JavaScript i'm sure that'

  • Getting "Not available to distribute" error

    Has anyone any idea on why we are getting this error? Is seems any new distributions we create, or existing ones that have changed haven't worked since 29th Feb (not sure if this is significant or not). The distributions don't distribute and the dist

  • AD Connector upgrade

    Hello, If I upgrade my existing Active Directory Connector, will I loose my Custom tasks. I want to understand what all will be impacted. I also  have Exchange integrated with OIM. Currently I am using 11.1.1.5 version and want to upgrade to  11.1.1.