RH5.2(2.0.36) O8.0.5 Kernel Configuration Questions

Looking for wisdom, insight, and a step-by-step procedure:
I have the CD-ROM from Oracle8 release 8.0.5 Standard Edition for
Linux, and I'm running Kernel 2.0.36 in a Red Hat 5.2
environment.
I'm working through the Installation Guide (referred to as the
"manual" in the following text). I'm in no hurry, and I would
rather get it right (even robust) the first time than get it
running as soon as possible. So, I'm trying to follow the
instructions. Here's what I've come up with so far; please post
your comments as replies here on technet.oracle.com:
1. The first instruction in the manual under Configure LINUX
Kernel for Oracle says "Use the ipcs command to obtain a list of
the system's current shared memory and semaphore segments, and
their identification number and owner." Specifically, what does
this mean that I am looking for?
# ipcs
------ Shared Memory Segments --------
key shmid owner perms bytes nattch
status
0x00000000 0 nobody 600 52228 11
dest
------ Semaphore Arrays --------
key semid owner perms nsems status
------ Message Queues --------
key msqid owner perms used-bytes messages
0x00000000 0 root 700 0 0
I did not find the man page on ipcs particularly enlightening.
2. In the next section, entitled, "Set the kernel parameters
corresponding to ...", I have gathered (though I wish the manual
said so explicitly) that these need to be set in the source for
the kernel and that the kernel would then need be recompiled.
(OK, end of whining, now onto the nitty gritty.) I have the
Shared Memory and Semaphore parameters in Table 2-2 and want to
plug them into the source.
First change needed, in file /usr/src/linux/include/linux/sem.h:
change #define SEMMSL 32 to #define SEMMSL 128
(I'll give a semaphore id 128 identifiers so that I can run 128
oracle processes. The max is 512 according to sem.h, so I took
the goemetric mean, since this is intended to be a test bed.)
I see no other changes needed in this file, and few implications
that I'm going to cause major problems with this change. On to
the next.
Second changes needed, in file
/usr/src/linux/include/asm-i368/shmparam.h:
Now, here's the part upon which I am really stumped.
change #define SHMMAX 0x2000000 to #define SHMMAX 0xFFFFFFFF
(I'm pretty sure that decimal 4294967295 is hex FFFFFFFF, though
the latter is a lot easier to write correctly!)
I looked up a few lines and read
SHMMAX <= (PAGE_SIZE << SHMIDX_BITS
Currently, PAGE_SIZE is set in
/usr/src/linux/include/asm-i368/page.h
to 1UL<<12 (0x1000).
However, SHMIDX_BITS + SHMID_BITS <= 24 from a few lines
above. And, from a few more lines above, SHMIDX_BITS is set to
15 and SHMID_BITS is set to 7. So, either I can tweak the two
BITS values or the PAGE_SIZE, right? (THIS IS NOT A RHETORICAL
QUESTION. I WOULD LIKE YOUR INPUT!).
However, to get SHMMAX to 2^32 with a page size of 2^12, I would
need SHMIDX_BITS set to 20, which would leave only 4 bits for
SHMID_BITS, which woud lin turn put SHMMNI at 16, which is too
low for the value recommended in the oracle manual, 100 (I wonder
if that is really 100 or if it is supposed to be 0x100...).
ANYway, It looks like I cannot do the whole job with SHM_BITS,
or even most of it.
This seems to lead me to adjusting page size, from 2^12 to 2^15.
To do this, I'll need to alter /usr/src/linux/mm/kmalloc.c in
order not to break the PAGESIZE-dependent structs. Does this make
sense?
Has anyone (even at Oracle...) done this level of analysis when
installing Oracle8 on Linux?
I saw that a few people have edited files, but few have mentioned
which files, and I have seen no details at all on the changes
made. Does this resemble the reasoning that they took?
Do I really have to change PAGE_SIZE to pull this off?
Do the instructions need to be changed? I think that they could
be a little more explicit, IMHO.
If you have read this far, thanks very much! I look forward to
your feedback.
null

I am really sorry that probably will not answer your questions,
but here is my advice:
use $ORACLE_HOME/bin/tstshm utility to find out
"Total shared memory attached"
if it is greater that the SGA size you expect then do nothing.
If it is not then change some of the parameters in the kernel.
If you need more information and you have a Technical Support
Contract you can call an analyst and get more datailed
information.
I'm sure at Oracle there is huge amount of resources about that.
Regards: Michael Daskaloff
P.S. Have in Mind that the default SHM parameters in RedHat 5.x
are good for a initial installation.
Art Eschenlauer (guest) wrote:
: Looking for wisdom, insight, and a step-by-step procedure:
: I have the CD-ROM from Oracle8 release 8.0.5 Standard Edition
for
: Linux, and I'm running Kernel 2.0.36 in a Red Hat 5.2
: environment.
: I'm working through the Installation Guide (referred to as the
: "manual" in the following text). I'm in no hurry, and I would
: rather get it right (even robust) the first time than get it
: running as soon as possible. So, I'm trying to follow the
: instructions. Here's what I've come up with so far; please
post
: your comments as replies here on technet.oracle.com:
: 1. The first instruction in the manual under Configure LINUX
: Kernel for Oracle says "Use the ipcs command to obtain a list
of
: the system's current shared memory and semaphore segments, and
: their identification number and owner." Specifically, what
does
: this mean that I am looking for?
: # ipcs
: ------ Shared Memory Segments --------
: key shmid owner perms bytes nattch
: status
: 0x00000000 0 nobody 600 52228 11
: dest
: ------ Semaphore Arrays --------
: key semid owner perms nsems status
: ------ Message Queues --------
: key msqid owner perms used-bytes messages
: 0x00000000 0 root 700 0 0
: I did not find the man page on ipcs particularly enlightening.
: 2. In the next section, entitled, "Set the kernel parameters
: corresponding to ...", I have gathered (though I wish the
manual
: said so explicitly) that these need to be set in the source for
: the kernel and that the kernel would then need be recompiled.
: (OK, end of whining, now onto the nitty gritty.) I have the
: Shared Memory and Semaphore parameters in Table 2-2 and want to
: plug them into the source.
: First change needed, in file
/usr/src/linux/include/linux/sem.h:
: change #define SEMMSL 32 to #define SEMMSL 128
: (I'll give a semaphore id 128 identifiers so that I can run 128
: oracle processes. The max is 512 according to sem.h, so I took
: the goemetric mean, since this is intended to be a test bed.)
: I see no other changes needed in this file, and few
implications
: that I'm going to cause major problems with this change. On to
: the next.
: Second changes needed, in file
: /usr/src/linux/include/asm-i368/shmparam.h:
: Now, here's the part upon which I am really stumped.
: change #define SHMMAX 0x2000000 to #define SHMMAX 0xFFFFFFFF
: (I'm pretty sure that decimal 4294967295 is hex FFFFFFFF,
though
: the latter is a lot easier to write correctly!)
: I looked up a few lines and read
: SHMMAX <= (PAGE_SIZE << SHMIDX_BITS
: Currently, PAGE_SIZE is set in
: /usr/src/linux/include/asm-i368/page.h
: to 1UL<<12 (0x1000).
: However, SHMIDX_BITS + SHMID_BITS <= 24 from a few lines
: above. And, from a few more lines above, SHMIDX_BITS is set
to
: 15 and SHMID_BITS is set to 7. So, either I can tweak the two
: BITS values or the PAGE_SIZE, right? (THIS IS NOT A RHETORICAL
: QUESTION. I WOULD LIKE YOUR INPUT!).
: However, to get SHMMAX to 2^32 with a page size of 2^12, I
would
: need SHMIDX_BITS set to 20, which would leave only 4 bits for
: SHMID_BITS, which woud lin turn put SHMMNI at 16, which is
too
: low for the value recommended in the oracle manual, 100 (I
wonder
: if that is really 100 or if it is supposed to be 0x100...).
: ANYway, It looks like I cannot do the whole job with
SHM_BITS,
: or even most of it.
: This seems to lead me to adjusting page size, from 2^12 to
2^15.
: To do this, I'll need to alter /usr/src/linux/mm/kmalloc.c in
: order not to break the PAGESIZE-dependent structs. Does this
make
: sense?
: Has anyone (even at Oracle...) done this level of analysis when
: installing Oracle8 on Linux?
: I saw that a few people have edited files, but few have
mentioned
: which files, and I have seen no details at all on the changes
: made. Does this resemble the reasoning that they took?
: Do I really have to change PAGE_SIZE to pull this off?
: Do the instructions need to be changed? I think that they could
: be a little more explicit, IMHO.
: If you have read this far, thanks very much! I look forward to
: your feedback.
null

Similar Messages

  • IPCS on Install for RH5.2

    Hi folks,
    Trying to install Oracle on RH5.2. A few novice type questions
    are below.
    The documentation says to use the ipcs command to list the
    system's current shared memory segments. I've searched
    everywhere and do not find this command. Could someone point me
    to it?
    The docs say to create 4 mount points. Are they talking about
    device level file system stuff (mke2fs) or just directories
    under root?
    I don't see anything in the documentation about block size
    definition. Does the installer assume 1024 at the filesystem
    level and configure for that or do I have to do something that
    I'm not finding in the doc set?
    Thanks,
    craig
    null

    Federico,
    Raid is supported under Linux.It has nothing to do with oracle
    supporting it. If the OS uses it, you can with Oracle. (although
    it will be alot nicer when they finally get out the Enterprise
    Edition so we can play with partitioning of tables, etc and
    stripe them across drives.. ;-)
    Kevin
    Federico Grau (guest) wrote:
    : craig (guest) wrote:
    : : Hi folks,
    : Hi
    : : Trying to install Oracle on RH5.2. A few novice type
    questions
    : : are below.
    : : The documentation says to use the ipcs command to list the
    : : system's current shared memory segments. I've searched
    : : everywhere and do not find this command. Could someone point
    me
    : : to it?
    : On my redhat 5.2 system the command is /usr/bin/ipcs.
    : When I use rpm to find more information on the command it says
    it
    : is the util-linux package under the Utilities/System group.
    : There are a couple other posting here on this section of the
    : documentation (ex: RH5.2(2.0.36) O8.0.5 Kernel Configuration
    : Questions).
    : If you are tinkering around setting up a test/simple database I
    : would not wory any more about it and simply continue.
    : If you are setting up a production database, then based on the
    : settings in your initSID.ora file you should compute the size
    of
    : your SGA and based on that information recompile the kernel
    with
    : different shared memory size parameters (not really familiar
    with
    : this... but also don't have the need yet).
    : : The docs say to create 4 mount points. Are they talking about
    : : device level file system stuff (mke2fs) or just directories
    : : under root?
    : I believe when they mean 4 mount points, they mean 4 different
    : drives and the mount points into your file system. The idea
    with
    : this, is to spread the control files over seperate drives in
    case
    : of a drive failure and also to improve performance by spreading
    : IO over several devices.
    : Again, if you are just tinkering around/testing you can slap
    : everything into the same drive/mount point. I decided to
    : "fool/trick" the install into thinking I had several mount
    : points... to get some exposure to the Optimal Flexible
    : Architecture (OFA), so I made four directories u01, u02, u03,
    and
    : u04 to install into (binaries in the first, and db spread over
    : the last 3). Being anal and not liking a lot of trash in my
    root
    : directory, I put these three subdirectories under a root
    : directory /oracle/. If I were to follwo OFA suggestions, I
    could
    : simply mount four seperate drives on my "u0?" mount
    points/stubs.
    : It is interesting that nowhere have I seen Oracle talk about
    RAID
    : in their OFA documentation which sort of makes the various
    mount
    : points unnecesary. In addition, oracle seems to dump the whole
    : OFA idea when running on NT %-)
    : : I don't see anything in the documentation about block size
    : : definition. Does the installer assume 1024 at the filesystem
    : : level and configure for that or do I have to do something
    that
    : : I'm not finding in the doc set?
    : : Thanks,
    : : craig
    : If you check in the Oracle8 Administrators Reference for Linux,
    : section 3-9 ... it states that the default block size for
    oracle
    : on linux is 2KB (with a range from 2KB - 16KB). I do not
    : remember/know how to check the block size on linux, but I
    recall
    : on earlier version it asking if you wanted to format extfs2 for
    : 512/1024/2048 byte blocks with a default to 2048 byte blocks...
    : so I would imagine that is where we are at now... regardless,
    : oracle recomends setting the Oracle block size to a multiple of
    : the linux file system block size.
    : Good luck,
    : Federico
    null

  • Error in conection ClientNT and DB Linux 805

    Im installing two servers with Database. One with WindowsNT
    Server with Oracle 8.0.5 and other Linux RH5.2 with Oracle 8.0.5.
    After configuration of tnslistener I connect perfectly with
    users in OraLnx and OraNT.
    My clients are Windows95. I try connecting clientes Win95 in
    OraLnx.
    Well, While installing and testing the service in NetEasyConfig
    (In Oracle NT)I is display error:
    The test did not succed
    ORA-12224: TNS: no listener
    Thanks for all helps
    Ghamba
    null

    Hello Roland,
    1) The dbmclie call(from the commandline) does NOT work.
    I again get the same error message as follows:
    <i>acpadm@g8t45:/usr/sap/ACP/SYS/exe/run> dbmcli
    Must be called by root or effective user 502 effective group 501
    Error! Connection failed to node (local) for database (no dbname): Reading header from pipe:(0:NO ERROR(0)</i>
    2) YES, <sid>adm is included in 'sdba' group.
    3) sdbverify output is attached in file mysdbverify.
    It consists of toomany permission and group changes.
    Please go through it and revert back to me .
    I am sending the mysdbverify file to your SAP mail Id.
    Thanking you in advance.
    Regards,
    Prem

  • Can I Open RH5 project file in RH10?

    I don't like registration of all kinds until I took an RH arrow in the knee. XDD
    Here's my scenario:
    My colleague created a project in RH5 long time ago and now she's handing over the project to me.
    I copied the whole robo source files folder to my local disk and tried to open it in RH10. Then error saying .cpd file might be corrupt so that RH cannot load the data from the database. I know .cpd file is the cache file for a RH project, right? It's created/overwritten every time you open the RH project. Then I figured, maybe I should delete the .cpd file(as it might be created in RH5 in her machine) before I open it in RH10?
    Also, I've tried to open the same project file in RH5(I have RH5 and RH10 installed in the same OS:Win 7). It worked for the first time, with lots of errors of broken links and reference links but failed for the second time, right after I opened that project in RH10. (You might will want to doubt if RH5 is executable in Win 7, I thought it should be but it turned out it is, which is amazing...)
    So..here're the questions:
    1. Do RH5 and RH10 coexist in Win 7?  Some said they don't..
    2. Should I delete the .cpd file created in lower version of RH before I open the project created in RH of lower version(say, RH5) in RH of higher version(in this case, RH10)?
    3. Can RH10 open the project created in RH5? I know the project created in RH of lower version will be converted in some way when it's opened in RH of higher version. Anyone practiced this successfully?
    Thank you!

    It proves that X5 can be opened. It does not prove it will work properly in all respects. Also webhelp will likely have issues with some browsers. In other words and to answer your question, both can be on the same machine but that does not mean both will work as designed.
    Rh8 could be used with Windows 7 when Rh8 was released, except bits broke until it was patched so the chances of X5 are rather low.
    MS Access is not needed on your machine as the CPD is a runtime database. There's no point messing with it, leave Rh to recreate it.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Links do not work RH5 to RH 8

    I upgraded a context sensitive, Oracle Help output, from RH5 to RH8.  Now several of the old topic ID links do not work. The links are not "broken" and some links within the same topic work and some do not. It gives the message that the address is invalid on the non-working links.  Also, the help system does not work when the "search" functionality is used.

    Dear jscher2000, thank you for your response! I'm running 16.01 version, so the 3.6.20 version isn't the correct one. I've updated it yesterday.
    I also have to mention that today everything seems to work just fine! :) I don't experience the problems anymore and all links work again just normally, eventhough I'm logged into Facebook account. Maybe it was just a temporary bug.
    I couldn't say what was the reason to that solution, but I'm glad there aren't problems anymore with Mozilla.
    Thank you again and best regards,
    Nina

  • Layout Status not updated following upgrade of RH5 project to RH7

    I have over thirty RH5 projects to upgrade to RH7 with two
    layouts for each: Microsoft HTML Help (Primary Layout) &
    Printed Documentation.
    While upgrading the first project I noticed that running the
    File > Batch Generate... option following the upgrade does not
    update the layout Status to "Generated". I found out that the
    layout files are actually updated but the Status still shows as
    "Out of date".
    Running File > View Primary Layout (after running the
    Batch Generate) displays the message, "Microsoft HTML Help output
    is out of date. Would you like to compile before running?" with
    Yes, No and Cancel options. Clicking the Yes button generates the
    Primary Layout again, but this does not update the layout Status to
    "Generated" either.
    For the status of your layouts to be updated you must close
    your upgraded project, reopen it & generate the layouts again.
    I have spent much of this afternoon confirming the above
    information, I hope that this posting saves you some time that
    might be spent wondering why your layout status is not
    updating.

    You may need to stop all processes of the shadow instance that are running with the old limitations. I'd try the following:
    ps -ef | grep sapstart
    then kill the process of the shadow instance (check for the system number of the shadow instance to identify).
    I'd also try to stop the instance first so all shared memory segments are cleared - and then try to manually start it:
    cd <upgrade-directory/bin
    ./SAPup stopshd
    ./SAPup startshd
    You may assign the user directly to the project but this won't be taken into account if the assignment is not set in /etc/user_attr.,
    Markus

  • CPUJul2009 on 11.1.0.7 on RH5 64bit

    Has anyone applied CPUJul2009 on 11.1.0.7 on RH5 64bit? It sent me to java hell:
    Applying patch 8563945...
    ApplySession applying interim patch '8563945' to OH '/home/oracle/orasw/app/oracle/product/11.1.0'
    Backing up files affected by the patch '8563945' for rollback. This might take a while...
    Patching component oracle.rdbms, 11.1.0.7.0...
    Updating archive file "/home/oracle/orasw/app/oracle/product/11.1.0/lib/libserver11.a" with "lib/libserver11.a/kzia.o"
    # An unexpected error has been detected by HotSpot Virtual Machine:

    Check point #6 under "III. Environment: " section of MOS note 748378.1
    HTH...

  • TOC problems after RH5 - RH7 upgrade

    Hello,
    I use RoboHTML to create help projects.
    After upgrading one with several subprojects from RH5 to RH7
    the following problem occurs:
    the TOC of the subproject is not incorporated in the main
    TOC, instead the name of the subproject is shown. when clicking
    this, the subproject is opened in a new tab (tested on Firefix3 and
    Opera9.5), virtualy as a separate project.
    The same project was previously published with RH5, with the
    subprojects correctly linked.
    Also, I reveive the attached java error (again not existing
    with RH5) when opening the start page. if I substitute the newly
    generated WebHelp.jar with the old one (generated by RH5) the error
    ceases but the TOC problem persists.
    Any ideas?
    Thanks a lot,
    Norbert

    I recently tested the 9.0.1 upgrade and the hotfix for 9.0.1, but the problem still exists. However, "ColdFusion Jedi" Raymond Camden came up with a workaround. You can read about it here:
    http://www.coldfusionjedi.com/index.cfm/2010/9/16/Followup-to-CFGRID-MultiRow-Post
    The problem occurred when the Adobe team that released the 9.0.1 upgrade added "multi-row select" functionality to the HTML/AJAX version of CFGRID, but they failed to include the same ID-passing functionality of the previous "single-row select" implementation.
    I created a more generic version of Raymond's javascript function which finds the selected row(s). This javascript must reside on every page which contains an HTML cfgrid:
    <script type="text/javascript">
    function getSelected(gridName,idName) {
        obj = ColdFusion.Grid.getSelectedRows(gridName);
        var selected = "";
        for(var i=0; i<obj.length; i++) {
          if(selected == "") selected = obj[i][idName];
          else selected += "," + obj[i][idName];
        document.getElementById('selectedRowIDs').value = selected;
        return true;
    </script>
    To force the selected row's ID (or other) field to be passed to to the subsequent page, you must include the following in your CFFORM tag (the field name MUST BE in ALL CAPS):
         onSubmit="return getSelected('gridName','FIELDNAME')"
    Example: <cfform name="itemGridForm" action="editItems.cfm" method="post" onSubmit="return getSelected('itemGrid','ITEMID')"...>
    You must also include the following hidden field in your cfform which contains the cfgrid:
        <!---Pass the selected FileFolderID as a hidden field called "selectedRowIDs" to itemEdit page--->
         <cfinput type="hidden" name="selectedRowIDs" id="selectedRowIDs">
    On the called page, FORM.selectedRowIDs will contain a list of the selected rows' ID fields (or whichever field you choose when calling the Javascript function).
    Message was edited by: el-cott

  • Very last time RH5/cf8

    Ok, if I cant get it working now then I will be abandoning
    every single cf app, and switching to something else. Just for
    principal. First, I have been trying to get CF8 to work on RH4 ever
    since beta, no luck. Fine. I switched to RH5 and it still does not
    work. All security has been disabled. After trying to run the
    connector, this is what I get:
    Could not connect to any JRun/ColdFusion servers on host
    localhost.
    Possible causes:
    o Server not running
    -Start Macromedia JRun4 or ColdFusion 8 server
    o Server running
    -JNDI listen port in jndi.properties blocked by TCP/IP
    filtering or firewall
    on server
    -host restriction in security.properties blocking
    communication with server

    1. Do you have Apache up and running by itself already?
    2. Do you have a user account created specifically for
    ColdFusion server to use?
    3. Did you give the installer the correct path to your Apache
    installation?
    4. Are you installing CF 8 Standard or Enterprise?
    I currently have CF 8 installed on ubuntu 7.10 and had no
    problems. I've installed CF 6 and 7 on Red Hat ES 2 and 3 without a
    problem, but I deployed them as EAR files on JBoss. I've also had
    CF 4.5 and 5 installed on Fedora and CentOS with few problems.
    The only problem I can recall running into was installing CF
    5 on CentOS 3.x. A port that CF wanted to use was already in use by
    JNDI. We just told JNDI to use a different port and CF started
    working just fine.
    Have you called the Adobe support line for this? This forum
    is not an official support outlet.

  • Upgrading WCS with RH5.x - do I have the correct files

    Hi All,
    My supplier seems to be just as ignorant as me regarding the following:
    I have a disc labelled 'WCS-WLSEU-RH5-Upgrade.iso' - will I be able to upgrade my WCS' OS (running on RH4 on a WLSE appliance) with this disc, or is it actually for converting a WLSE to WCS (and our supplier has given me the wrong thing- which is what I am afraid of)?
    Many Thanks for any help you can give,
    Scott

    Hi
    The image that you have will upgrade the operating system to red hat 5.0. This version is a requeriment if you want to use WCS 5.0 and higher.
    You have to burn the image in a CD and boot with this CD in order to perform the upgrade.
    Where do you find this image, I have been searching it in the cisco web site but i can`t find it.
    Would you mind telling me , where is located this iso file?
    Thanks in advanced

  • RH6 crashes when generating RH5 project

    Hello,
    I am trying out RH6. I have been a RH5 user for the past 2.5
    years. I have a huge progect with complex conditional build tags.
    RH5 works fine when I publish with WebHelp Pro. I am not useing an
    engine at this time. I was but my project got to big for it. To
    many pdf files to search on. Anyway. I open RH6, open the RH5
    project. I try to generate WebHelp Pro. The files seam to copy OK
    but when the generating tries to update files. Crash!
    Exception unknown software exception (0xc000000d) occurred in
    application at location 0x78138890. Any Ideas? I am performing this
    test on a new computer that has never seen RH5

    Hey, BTIMoe
    What is confusing Rick and I is trying to understand your
    scenario. When you say "I try to generate WebHelp Pro. The files
    seam to copy OK but when the generating tries to update files.
    Crash! " Is this from the "View Result" locally button after
    generation, or have you tried to publish it to a non-RoboEngine web
    server and then it crashes?
    I have tried this using the RH 6 Trial version without a
    problem when I View Results. However you can't publish to a
    non-RoboEngine because it's looking for the RoboAPI.asp file to
    redirect it to a virtual directory on the server called "Robo". Why
    it crashes, I'm not sure. In the past if the RoboEngine was not
    configured properly you might get a "failed to connect to server"
    error, but I have never had it actually crash the app. Also, what
    is the destination to which you are publishing?
    Finally, I know the Trial version has a topic limit (though
    I'm not sure what the limit is). Could you create a test project of
    no more than 20 topics and see if that causes a similar problem?
    The bottom line is to choose WebHelp if you are not
    publishing to a RoboEngine enabled server (or the new RoboHelp
    Server 6 which replaces the old RoboEngine 4).
    Let us know exactly what your trying to accomplish and we'll
    take another crack at it.
    john

  • OAS4 + RH5/6 Help!!!!?

    Has anyone managed to get OAS4 running on RH5/6 sucessfully?
    I have been attempting to get OAS4 with the 4.0.7.1 patch
    working on RH6 but as yet I've had no joy. I now have everything
    working, but when I try to launch a PL/SQL application via the
    admin listener nothing happens, and after looking around I
    noticed that the admin listener has died.
    I have used the script to work around the ps problems (the cgi
    scripts to start OAS use redundant ps options, see below), and
    so OAS now starts up correctly.
    I have checked the kernel settting NR_TASK and this is 2048.
    My host name is set to James, there is no domain name which is
    exactly what I specified on installing OAS.
    I have altered the max # of connections for all the listeners
    and set them to 200 [which prevents the Max Connect Count
    exceeds compile time limit (connect limit :
    : 256) error -- see below].
    Any help, or confirmation if anybody has actually got OAS4
    running on RH5 or RH6 would be most appreciated.
    James
    Work Arounds
    I was able to start ORB with some mods to ps command on my RedHat
    6.0 and 2.2.11 kernel. Oracle owsctl is using some obsolete
    commands to status processes, these don't work "ps mh" and "ps pw
    1" and "ps pwww 1"
    I renamed /bin/ps to /bin/ps.org
    and created /bin/ps with folowing content
    chmod +x /bin/ps
    #!/bin/sh
    case "$1" in
    /bin/ps.org
    "pw")
    /bin/ps.org -w -p $2 $3 $4
    "mh")
    /bin/ps.org -h $2 $3 $4
    "pwww")
    /bin/ps.org -w $2 $3 $4
    /bin/ps.org $1 $2 $3 $4
    esac
    It prevents nesty messages to the console and actual makes OAS
    4.0.7 work
    You may want to change /usr/src/linux/include/linux/tasks.h
    and set NR_TASK to 2048 to increase number of available treads
    You will need to recompile kernel to make this change.
    Hope this helps!
    Jaroslaw Sosnicki
    Ralf -
    You can eliminate this message by going into the "Network"
    configuration for your "www" listener and changing the "max
    connections" parameter to 256 or less
    Regards
    Ralf Duenkelmann (guest) wrote:
    : During startup of OAS we get the following warning:
    : Max Connect Count exceeds compile time limit (connect limit :
    : 256)
    : Does anyone know what that means and what should be changed?
    : Ralf
    null

    First, Developer 2000 (Forms/Reports 6) was never supported to work on Vista. Second, this version has been desupported for many years. Third, what exactly is your question?
    Here is the remaining documentation for Forms 6.0 & 6i. Most other references have been removed since this version is obsolete.
    http://www.oracle.com/technology/products/forms/techlisting.html
    http://www.oracle.com/technology/documentation/dev_arch.html
    Although completely unsupported, here is some information provided by Steve Cosner regarding installing on Vista:
    Re: Forms 6i installed and running on Windows Vista

  • O8i on RH5.1

    Dear all:
    I am install O8i on RH5.1. I meet some problems.
    1. After i finish running root.sh as root, i can't connect to
    database with sqlplus. The error tells me i have not enough
    previlige.(But i can use sqlplus with login account oracle(db
    account of OS(). Anyone has install O8 on RH5.1?
    null

    That's working as designed: you have to set the proper
    environment variables and use username/password if working as
    root (which you shouldn't do, anyway).
    To check out the environment variables have a look at .profile of
    the Oracle user.
    Yang Yong (guest) wrote:
    : Dear all:
    : I am install O8i on RH5.1. I meet some problems.
    : 1. After i finish running root.sh as root, i can't connect to
    : database with sqlplus. The error tells me i have not enough
    : previlige.(But i can use sqlplus with login account oracle(db
    : account of OS(). Anyone has install O8 on RH5.1?
    null

  • Agent for RH5 x86_64?

    Is there an agent that can be installed on Red Hat 5 EL x86_64? I downloaded the 64 bit 10.2.0.3 agent but attempting to push it from Grid Control results in an error message that the agent is only supported on RH3/RH4. Attempting to install driectly on RH5 using the runInstaller gets an UnsatisfiedLinkError looking for jre/1.4.2/lib/i386/libawt.so. Is there a trick I need to do to get the runInstaller to run on 64 bit? I didn't have any problem installing 64 bit CRS/ASM using the runInstaller as/is from those downloads.
    thanks.

    Do you not have metalink or did you try their suggestion/note?
    Subject:      "Exception java.lang.UnsatisfiedLinkError: ../jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred" on RHEL5/OEL5 for 10.2 x86 or x86_64 install
         Doc ID:      Note:443617.1      Type:      PROBLEM
         Last Revision Date:      28-NOV-2007      Status:      PUBLISHED
    In this Document
    Symptoms
    Cause
    Solution
    References
    Applies to:
    Oracle Server - Enterprise Edition - Version: 10.2.0.1.0 to 10.2.0.1.0
    Oracle Server - Standard Edition - Version: 10.2.0.1.0 to 10.2.0.1.0
    Linux x86-64
    Linux x86
    This article applies to Red Hat Enterprise Linux RHEL 5 ( x86 and x86_64)
    This article applies to Oracle Enterprise Linux OEL 5 (x86 and x86_64)
    Symptoms
    While installing Oracle database 10.2.0 on RHEL 5 (Redhat Enterprise Linux) or OEL 5 (Oracle Enterprise Linux), you get the following error before Oracle Universal Installer (OUI) gets invoked.
    Exception java.lang.UnsatisfiedLinkError: /tmp/OraInstall<time_stamp>/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred..
    java.lang.UnsatisfiedLinkError: /tmp/OraInstall<time_stamp>/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:222)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:193)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:202)
    at oracle.sysman.oii.oiic.OiicInstaller.getInterfaceManager(OiicInstaller.java:436)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:926)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:866)
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:222)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:193)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:202)
    at oracle.sysman.oii.oiif.oiifm.OiifmAlert.<clinit>(OiifmAlert.java:151)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:984)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:866)
    Cause
    The i386 version of the libXp package is missing. The Oracle Universal Installer ( OUI ) requires the file libXp.so.6 and this file is installed with the package libXp in RHEL 5 and OEL 5.
    Issue the following to confirm the missing rpm:
    % rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep libXp
    Solution
    The package libXp was not installed in RHEL 5/OEL 5 with default RPM packages, so it will need to be installed manually. In RHEL 4 this file was provided by the package xorg-x11-deprecated-libs which is installed with default package installation but this is not the case for RHEL5/OEL5 and is now provided with a different rpm, the libXp rpm.
    Install the package libXp by the command:
    # rpm -ivh </path/to/>libXp.<version>.i386.rpm

  • Backward Compatibility RH5 vs. RH6

    I have versions RH5 and RH6 in my office. I just edited and
    compiled a RH5 file using RH6. RH5 will no longer open this file.
    Is there a feature or process in RH6 which will either allow saves
    as an earlier version or conversion to an earlier version?

    HI qboss and welcome to our community
    Unfortunately there is no backward compatibility built in.
    Doesn't mean you can't do it though. Take a look at
    this
    link for some information on it.
    Cheers... Rick

Maybe you are looking for

  • "An error has occurred:Object reference not set to an instance of an object."

    This error message comes up with a user in InfoView.  The user schedules a report, updates parameters, and the report kicks off successfully.  But then a few minutes later, this error is received.    This occurs sporadically, regardless of the length

  • How do I get my music from an old iPod to itunes on a new PC

    I have an iPod full of music, both downloaded via iTunes and copied from CD. My old PC is no longer available. How do I get my music onto iTunes on my new PC? Thanks

  • Why won't large images open in full screen on first click?

    I go to open an image (jpg, png) that has a byte size of 2000 x 3096. What ends up happening, is that it will initially open a full screen window, and after a second or so, that full screen window will shrink to a half screen window. Now I'm required

  • Mail in OS X Mavericks 10.9.1 won't launch

    In OS X 10.9.0 Mail launched flawlessly and I had no problems, but since the 10.9.1 update it hasn't launched ever since. Here is the activity in Console: 11/12/2013 7:43:44.561 pm com.apple.SecurityServer[15]: Killing auth hosts 11/12/2013 7:43:44.5

  • Problem in creating PO

    Hi All, I was creating PO for customer.that time it showed plant is not avaiable because that I am unable to save PO. but everything is fine because I have already mentioned Delivering plant for material. Can you SAP Gurus please help me out Its urge