Application Server Specs

How to spec out the Application Server 10g Machine ?
If we need to support x number of clients.
or
if we need to add more users in an already running server is there any algo/formula to add 'y' RAM to the server to support 'x' number of users.
Regards
Adnan Siddiqui

How to spec out the Application Server 10g Machine ?
If we need to support x number of clients.
or
if we need to add more users in an already running server is there any algo/formula to add 'y' RAM to the server to support 'x' number of users.
Regards
Adnan Siddiqui

Similar Messages

  • Problem with WLST in weblogic application server 10.3 on solaris 10 x86

    Hi Friends, I installed Sun Solaris 10 on my desktop x86. I am able to install oracle weblogic application server 10.3.
    I created one domain and I am trying to start AdminServer on that using WLST command.
    Before that , I started the admin server from command as normal start ( nohup ./startWebLogic.sh &) and the server started perfectly alright. After that I was trying to open admin console in firefox browser. It was opening perfectly alright.
    Now I stopped the server and checked no processes which are related to weblogic were running , and then initialized the WLST environment using the script "wlst.sh" , which is at (in my system) /usr/bea/wlserver_10.3/common/bin/wlst.sh. Now the environment had been set and the WLST offline prompt came up.
    Now I used the below WLST scirpt command
    startServer('AdminServer','mydomain','t3://localhost:7001','weblogic','weblogic1');
    and the server started perfectly alright, now what I did was , I started admin console at FireFox browser , it prompted me to enter user name and password , I gave them , and once the login is done, then in my shell window , I am seeing error as
    **wls:/offline> WLST-WLS-1263965848154: <Jan 19, 2010 11:39:24 PM CST> <Error> <HTTP> <BEA-101017> <[ServletContext@28481438[app:consoleapp module:console path:/console spec-version:2.5]] Root cause of ServletException.**
    **WLST-WLS-1263965848154: java.lang.OutOfMemoryError: PermGen space**
    **WLST-WLS-1263965848154: at java.lang.ClassLoader.defineClass1(Native Method)**
    **WLST-WLS-1263965848154: at java.lang.ClassLoader.defineClass(ClassLoader.java:616)**
    **WLST-WLS-1263965848154: at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)**
    **WLST-WLS-1263965848154: at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:344)**
    **WLST-WLS-1263965848154: at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:301)**
    **WLST-WLS-1263965848154: Truncated. see log file for complete stacktrace**
    **WLST-WLS-1263965848154: >**
    **WLST-WLS-1263965848154: <Jan 19, 2010 11:39:24 PM CST> <Error> <JMX> <BEA-149500> <An exception occurred while registering the MBean com.bea:Name=mydomain,Type=SNMPAgentRuntime.**
    **WLST-WLS-1263965848154: java.lang.OutOfMemoryError: PermGen space**
    **WLST-WLS-1263965848154: at java.lang.ClassLoader.defineClass1(Native Method)**
    **WLST-WLS-1263965848154: at java.lang.ClassLoader.defineClass(ClassLoader.java:616)**
    **WLST-WLS-1263965848154: at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)**
    **WLST-WLS-1263965848154: at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)**
    **WLST-WLS-1263965848154: at java.net.URLClassLoader.access$000(URLClassLoader.java:56)**
    **WLST-WLS-1263965848154: Truncated. see log file for complete stacktrace**
    **WLST-WLS-1263965848154: >**
    **WLST-WLS-1263965848154: Exception in thread "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: PermGen space**
    So I thought I have less memory consuming for this weblogic admin server and opened up ,
    _/usr/bea/wlserver_10.3/common/bin/commEnv.sh_
    and changed the memory arguments as
    Sun)
    JAVA_VM=-server
    MEM_ARGS="-Xms1024m -Xmx1024m -XX:MaxPermSize=1024m" <---- previously these were 32m and 200m and MaxPermSize
    and also in /usr/bea/wlserver10.3/common/bin/bin/setDomainEnv.sh_
    and in this file also I changed the memory arguments as
    *if [ "${JAVA_VENDOR}" = "Sun" ] ; then*
    *WLS_MEM_ARGS_64BIT="-Xms256m -Xmx512m"*
    *export WLS_MEM_ARGS_64BIT*
    *WLS_MEM_ARGS_32BIT="-Xms1024m -Xmx1024m"*
    *export WLS_MEM_ARGS_32BIT*
    and restarted the server using the WLST command and again tried to open the admin console on a browser, same error is showing.
    (1) Environment : Sun Solaris x86
    (2) JDK : sun jdk 1.6._17
    Please help me what I am doing wrong here and please let me know the solution.
    I was trying to install jrockit 1.6 on this since my OS is sun solaris X86 , there is no compatible jrockit version is not there.
    Thanks a lot
    Peter

    Hi Peter,
    As you have mentioned in your Post that
    MEM_ARGS="-Xms1024m -Xmx1024m -XX:MaxPermSize=1024m" <---- previously these were 32m and 200m and MaxPermSize
    The Setting you have provided is wrong ...that is the reason you are gettingjava.lang.OutOfMemoryError: PermGen space. There is a RRation between PermSize and the maximum Heap Size...
    Just a Bit Explaination:
    Formula:
    (OS Level)Process Size = Java Heap (+) Native Space (+) (2-3% OS related Memory)
    PermSize : It's a Netive Memory Area Outside of the Heap, Where ClassLoading kind of things happens. In an operating System like Windows Default Process Size is 2GB (2048MB) default (It doesnt matter How much RAM do u have 2GB or 4GB or more)...until we dont change it by setting OS level parameter to increase the process size..Usually in OS like Solaris/Linux we get 4GB process size as well.
    Now Lets take the default Process Size=2GB (Windows), Now As you have set the -Xmx512M, we can assume that rest of the memory 1536 Mb is available for Native codes.
    (ProcessSize - HeapSize) = Native (+) (2-3% OS related Memory)
    2048 MB - 512 MB = 1536 MB
    THUMB RULES:
    <h3><font color=red>
    MaxPermSize = (MaxHeapSize/3) ----Very Special Cases
    MaxPermSize = (MaxHeapSize/4) ----Recommended
    </font></h3>
    In your Case -Xmx (Max Heap Size) and -XX:MaxPermSize both were same ....That is the reason you are getting unexpected results. These should be in proper ration.
    What should be the exact setting of these parameters depends on the Environment /Applications etc...
    But Just try -Xmx1024m -Xms1024m -XX:MaxPermSize256m
    Another recommendation for fine tuning always keep (Xmx MaxHeapSize & Xms InitialHeapSize same).
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)
    Edited by: Jay SenSharma on Jan 20, 2010 5:33 PM

  • Does Oracle Application Server (10.1.3.4.0) support JSF 1.2?

    Sorry for the double post, but I realized this was more appropriate in the OC4J forum so posted it there. Not sure how to delete this one :-(.
    I am trying to migrate from JSF 1.1 to JSF 1.2 on OC4j 10.1.3.4.0 and am running in to problems. I recently stumbled on this post:
    http://kjvarga.blogspot.com/2008/12/oc4j-1013-does-not-support-jsf-12.html
    Which reads as follows:
    I spent a very frustrating day wading through the version soup that is JavaServer Faces and trying to deploy a JSF 1.2 app on on OC4J 10.1.3 container. To save you a lot of time, OC4J DOES NOT SUPPORT JSF 1.2.
    This technical paper explains that OC4J 10.1.3 (all versions) supports Servlet 2.4, JSP 2.0 and JSF 1.1.
    http://www.oracle.com/technology/tech/java/oc4j/1013/whitepapers/OC4J-FOV-10131.pdf
    And this handy webpage explains that "JSF 1.2 is the latest release and it works with servlet 2.5 and jsp 2.1". So obviously it's not compatible. It also details all the versions of Java technologies that each JSF version relies upon.
    http://www.roseindia.net/jsf/jsf-versions.shtml
    Is this true? I can't use the JSF spec released in 06 on the most current version of oracle application server? Could someone please confirm/deny/shed some light?
    Thanks so much,
    Yeuker
    Edited by: yeuker on Jun 29, 2009 10:54 AM

    Found a bit more information located here:
    http://wiki.glassfish.java.net/Wiki.jsp?page=JavaServerFacesRI
    See the section entitled
    "Do I have to use a JSP 2.1/Servlet 2.5 container with the Mojarra version 1.2?" which states:
    If you're using JSPs for your view descriptions, then yes, you will need to use a JSP 2.1/Servlet 2.5 compliant container. However, if you're using another view technology, such as Facelets or JSFTemplating, you can run JSF 1.2 within a Servlet 2.4 container with out issue.
    Now here is the part that may make me look like a newb... not sure if I am "using JSP's for my view descriptions"... what does that mean anyway?
    I dont think I am not using Facelets or JSFTemplating. I'm just using standard JSF... All of my pages end in jsp and the standard faces servlet that makes all *.faces requests go through the faces controller servlet. There is really no JSP EL code in my faces pages, just standard jsf tags h:form, f:selectItems, h:inputText etc...
    So my question is... am I using JSP's for my view descriptions?

  • How to find out the application server info

    Hi, I am wondering how to find out the application server info in Java code, just like how to find out the db platform being used. Thanks

    Hi,
    I am not aware of any spec defined way of finding out such info. There may be vendor specific APIs or mechanisms.
    But you can use environment entries in your deployment descriptors to specify the information and make use of the entries inside your j2ee component. That will make your code platform neutral.
    Sahoo

  • E Business Suite 11i Server Spec for Linux?

    Does anyone know, or can suggest possibilities, of a server spec for 11i on Linux. This is for a small company installation of 11i.
    Where can I go to ansewer questions like this?
    What Linux distributions are supported for 11i?
    I was thinking of multiple CPU's, highpoint raid controllers to give RAID 0+1, and 1 or 2 Gb of memory.
    thanks
    Dave Darrall.

    Jimmy,
    Our E-business suite 11i has been running on the application tiers RHEL 4, due to the requirement to support large memory configurations on a 32-bit system.  Is it true that from RHEL 5, the “hugemem” kernel which achieves this 32-bit memory scalability has been deprecated in favour of the use of 64-bit kernels?
    Your 11i application tier will be limited to 32-bit even if you install 32-bit OS on x86-64 hardware.
    Our Oracle 11g database is running on RedHat Linux 5.8. Is E-Business suite 11i (application tiers) certified to run on RHEL 5.8?
    Yes.
    Also for future planning, is E-Business suite 12 (application tiers) certified to run on which versions of RedHat?
    Please see:
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (Doc ID 761566.1)
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Linux x86-64 (Doc ID 1330701.1)
    Thanks,
    Hussein

  • SOAP on Sun Java System Application Server 9

    I am running the Sun Java System Application Server 9 (SJSAS). My goal is to have SOAP running on the server to handle incoming messages. I cannot find the answers to the following critical questions anywhere.
    1. Should I be creating my own soap client/server with the javax.xml.soap package, using some utility that might come bundled with SJSAS that I don't know about, or using something like Apache AXIS?
    2. Whatever I use, how should it be deployed to the application server? AXIS comes as a bunch of jar files, but to deploy a web service to SJSAS requires a war. Instructions for other application servers for using AXIS seem not to apply for SJSAS for this reason.
    3. After I get the server installed, how do I actually connect that to any of the rest of the code on my server. For instance, would I put the actual business logic to query the persistence layer in a stateless session bean and then somehow reference the methods in that bean to compose the return message to go to the client?
    If anybody knows of or is willing to create a tutorial to achieve this goal on SJSAS and has a place to post it, that would probably be a great contribution to the information available online. If I am missing such a tutorial, I apologize and would be glad to have it pointed out to me. Any assistance with actually deploying soap for SJSAS would be tremendously helpful. There is a lot of why to use it, when to use it, what the spec is, and so on online. There is precious little how to use it and even less how to deploy it. Thank you for any help.
    Ryan

    the sun java system application server 8 and 9 comes with certutil and pk12util (http://www.mozilla.org/projects/security/pki/nss/tools/pk12util.html) programes. using them you can import them
    or check on google how to conver pk12 certs to NSS format.
    another option is to open the certificate in Internet explorer and save to cer format and then convert.

  • Application Server - Does it realy work?

    We recently purchased IAS version 9.0.2. We have it running on a dual Xeon 2 Ghz machine with 4gb of Ram, and a very fast raid with WIN 2k SP4. (A pretty beefy server). We have both the infrastructure and Mid Tier on the same box. We have it running as a test environment with only 3 people hitting it (Please keep in mind ONLY 3 people)
    1 - We had to apply 3 patches just to make it function properly.
    2 - The Application server constantly hangs.
    3 - Within portal if you want to hit an external database, you have to create synonyms for every thing you wish to use on the external database (Views, Tables, Etc.)
    My points are:
    1) Does Oracle Beta Test at all!?
    2) Build a Self-Service Portal in Days, Not Months (Quoted from the OTN web site) - VERY Un-realistic!
    3) $40,000 for this software in its current state is INEXCUSABLY!
    If ANYONE at all has had 100% success/satisfaction running IAS Enterprise on a win 2k platform. PLEASE let me know. I Hope that I'm not the only one going through these problems!

    We currently have it running in Win2k on Dual P3 1.4GHz with 2GB of Ram with the Infrastructure and Mid-Tier on the same box. We started having problems with the Report Server hanging but still able to use the Portal, this was happening every 2-3 days. We modified the init.ora file to up the number of processes from the default to 300.
    Since doing this the machine has been up and running reports for a month. :)
    This has also speeded EM up by 20% not sure why but i am glad that it did.
    I only wish Oracle support could have recommended this to me in response to my TAR instead of me having to mess about.
    From the sound of the spec of your box you should get better performance than i get and mine is definitely acceptable.

  • Configuring Application server on windows (CMDTUX_CAT:16855 error)

    Hi there,
    My environment specs:
    OS: Windows 2008
    DB: SQL Server 2008 with SP2
    Oracle software installed:
    1. JRockit JDK R28.1 for Java SE 6 with JRockit Mission Control 4.0.1 for Microsoft Windows
    2. Oracle WebLogic Server 11gR1 (10.3.4) Generic and Coherence
    3. Tuxedo 10gR3 for MS Windows Server 2008 wMS VS 2008 x86 32-bit (NO RP043 patch installed)
    4. PeopleSoft 8.52
    5. PeopleSoft Enterprise Human Resources Management System and Campus Solutions 9.0 Feature Pack
    6. Database Configuration wizard completed successfully with following warning. (Setup has detected that the PeopleTools version does not match the version in the installed database. The database may not be created successfully. Please check the log file(s) located under the log directory for details.)
    7. I was configuring the Application Server based on the installation guide from Oracle and I ran into this error.
    Any help is greatly appreciated.
    Below is the log:
    PeopleSoft Domain Administration
    Domain Name: HR84
    1) Boot this domain
    2) Domain shutdown menu
    3) Domain status menu
    4) Configure this domain
    5) TUXEDO command line (tmadmin)
    6) Edit configuration/log files menu
    7) Messaging Server Administration menu
    8) Purge Cache
    9) Preload Cache
    10) Clean IPC resources of this domain
    q) Quit
    Command to execute (1-10, q) : 1
    PeopleSoft Domain Boot Menu
    Domain Name: HR84
    1) Boot (Serial Boot)
    2) Parallel Boot
    q) Quit
    Command to execute (1-2, q) [q]: 2
    Attempting to boot bulletin board...
    tmadmin - Copyright (c) 2007-2008 Oracle.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by Oracle.
    Tuxedo is a registered trademark.
    No bulletin board exists. Entering boot mode.
    INFO: Oracle Tuxedo, Version 10.3.0.0 with VS2008, 32-bit, Patch Level (none)Booting admin processes ...
    exec BBL -A :
    process id=3704 ... Started.
    1 process started.
    Attaching to active bulletin board.
    Attempting to boot ...INFO: Oracle Tuxedo, Version 10.3.0.0 with VS2008, 32-bit, Patch Level (none)
    Booting server processes ...
    exec PSWATCHSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -ID 45196 -D HR84 -S
    PSWATCHSRV :
    process id=2596 ... Started.
    exec PSAPPSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" [email protected] -- -D HR84 -
    S PSAPPSRV :
    process id=2668 ... Started.
    exec PSAPPSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" [email protected] -- -D HR84 -
    S PSAPPSRV :
    process id=2776 ... Started.
    exec PSSAMSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -D HR84 -S PSSAMSRV :
    process id=3756 ... Started.
    exec PSANALYTICSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -D HR84 -S PSANAL
    YTICSRV :
    process id=1736 ... Started.
    exec PSANALYTICSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -D HR84 -S PSANAL
    YTICSRV :
    process id=2324 ... Started.
    exec PSANALYTICSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -D HR84 -S PSANAL
    YTICSRV :
    process id=1640 ... Started.
    exec PSMONITORSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -ID 45196 -D HR84
    -S PSMONITORSRV :
    process id=4048 ... Started.
    8 processes started.
    Checking process startup status. This may take up to 120 seconds.
    Please wait...
    INFO: Oracle Tuxedo, Version 10.3.0.0 with VS2008, 32-bit, Patch Level (none)
    Booting server processes ...
    **exec PSRENSRV -o ".\LOGS\stdout" -e ".\LOGS\stderr" -A -- -D HR84 -S PSRENSRV :**
    **CMDTUX_CAT:1685: ERROR: Application initialization failure**
    **tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error ha**
    **ndler**
    **tmshutdown -qy**
    ==============ERROR!================
    Boot attempt encountered errors!. Check the TUXEDO log for details.
    ==============ERROR!================
    Do you wish to see the error messages in the domain log file? (y/n) [n] :y
    PSADMIN.3552 (0) [12/06/11 13:20:19](0) Begin boot attempt on domain HR84
    PSAPPSRV.2776 (0) [12/06/11 13:20:31](0) PeopleTools Release 8.52 (WinX86) start
    ing. Tuxedo server is APPSRV(99)/1
    PSAPPSRV.2776 (0) [12/06/11 13:20:31](0) Cache Directory being used: C:\Users\Ad
    ministrator\psft\pt\8.52\appserv\HR84\CACHE\PSAPPSRV_1\
    PSSAMSRV.3756 (0) [12/06/11 13:20:31](2) Min instance is set to 1. To avoid loss
    of service, configure Min instance to atleast 2.
    PSSAMSRV.3756 (0) [12/06/11 13:20:31](0) PeopleTools Release 8.52 (WinX86) start
    ing. Tuxedo server is APPSRV(99)/100
    PSAPPSRV.2668 (0) [12/06/11 13:20:31](0) PeopleTools Release 8.52 (WinX86) start
    ing. Tuxedo server is APPSRV(99)/2
    PSAPPSRV.2668 (0) [12/06/11 13:20:31](0) Cache Directory being used: C:\Users\Ad
    ministrator\psft\pt\8.52\appserv\HR84\CACHE\PSAPPSRV_2\
    PSSAMSRV.3756 (0) [12/06/11 13:20:32](0) Cache Directory being used: C:\Users\Ad
    ministrator\psft\pt\8.52\appserv\HR84\CACHE\PSSAMSRV_100\
    PSAPPSRV.2668 (0) [12/06/11 13:20:32](1) GenMessageBox(0, 0, M): Security Table
    Manager (Get): The database is at release 8.50. The PeopleTools being run requi
    re databases at release 8.52.
    PSAPPSRV.2668 (0) [12/06/11 13:20:32](0) Server failed to start
    PSSAMSRV.3756 (0) [12/06/11 13:20:32](1) GenMessageBox(0, 0, M): Security Table
    Manager (Get): The database is at release 8.50. The PeopleTools being run requi
    re databases at release 8.52.
    PSSAMSRV.3756 (0) [12/06/11 13:20:32](0) Server failed to start
    PSAPPSRV.2776 (0) [12/06/11 13:20:32](1) GenMessageBox(0, 0, M): Security Table
    Manager (Get): The database is at release 8.50. The PeopleTools being run requi
    re databases at release 8.52.
    PSAPPSRV.2776 (0) [12/06/11 13:20:32](0) Server failed to start
    PSRENSRV.3148 [12/06/11 13:22:33](0) PeopleTools Release 8.52 (WinX86) starting.
    Tuxedo server is RENGRP(92)/101
    PSRENSRV.3148 [12/06/11 13:22:33](3) Switching to new log file C:\Users\Administ
    rator\psft\pt\8.52\appserv\HR84\LOGS\PSRENSRV_1206.LOG
    PSADMIN.3552 (0) [12/06/11 13:22:40](0) End boot attempt on domain HR84
    Do you wish to see the error messages in the Tuxedo log file? (y/n) [n] : y
    132019.WIN2K8!PSADMIN.3552: Begin attempt on domain HR84
    132023.WIN2K8!tmadmin.2936.3292.-2: TMADMIN_CAT:1330: INFO: Command: boot -A
    132025.WIN2K8!tmboot.2480.1216.-2: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132025.WIN2K8!tmboot.2480.1216.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is set
    to 120 seconds
    132025.WIN2K8!tmboot.2480.1216.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAIL op
    tion is selected
    132027.WIN2K8!BBL.3704.3912.0: 12-06-2011: Tuxedo Version 10.3.0.0 with VS2008,
    32-bit, Patch Level (none)
    132027.WIN2K8!BBL.3704.3912.0: LIBTUX_CAT:262: INFO: Standard main starting
    132029.WIN2K8!tmboot.3816.1772.-2: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132029.WIN2K8!tmboot.3816.1772.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is set
    to 120 seconds
    132029.WIN2K8!tmboot.3816.1772.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAIL op
    tion is selected
    132030.WIN2K8!PSWATCHSRV.2596.1992.-2: 12-06-2011: Tuxedo Version 10.3.0.0 with
    VS2008, 32-bit
    132030.WIN2K8!PSWATCHSRV.2596.1992.-2: LIBTUX_CAT:262: INFO: Standard main start
    ing
    132031.WIN2K8!PSAPPSRV.2776.404.0: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132031.WIN2K8!PSAPPSRV.2776.404.0: LIBTUX_CAT:262: INFO: Standard main starting
    132031.WIN2K8!PSAPPSRV.2668.764.0: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132031.WIN2K8!PSAPPSRV.2668.764.0: LIBTUX_CAT:262: INFO: Standard main starting
    132031.WIN2K8!PSSAMSRV.3756.756.0: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132031.WIN2K8!PSSAMSRV.3756.756.0: LIBTUX_CAT:262: INFO: Standard main starting
    132031.WIN2K8!PSANALYTICSRV.2324.2760.0: 12-06-2011: Tuxedo Version 10.3.0.0 wit
    h VS2008, 32-bit
    132031.WIN2K8!PSANALYTICSRV.2324.2760.0: LIBTUX_CAT:262: INFO: Standard main sta
    rting
    132031.WIN2K8!PSANALYTICSRV.1640.2796.0: 12-06-2011: Tuxedo Version 10.3.0.0 wit
    h VS2008, 32-bit
    132031.WIN2K8!PSANALYTICSRV.1640.2796.0: LIBTUX_CAT:262: INFO: Standard main sta
    rting
    132032.WIN2K8!PSANALYTICSRV.1736.2452.0: 12-06-2011: Tuxedo Version 10.3.0.0 wit
    h VS2008, 32-bit
    132032.WIN2K8!PSANALYTICSRV.1736.2452.0: LIBTUX_CAT:262: INFO: Standard main sta
    rting
    132032.WIN2K8!PSMONITORSRV.4048.1804.-2: 12-06-2011: Tuxedo Version 10.3.0.0 wit
    h VS2008, 32-bit
    132032.WIN2K8!PSMONITORSRV.4048.1804.-2: LIBTUX_CAT:262: INFO: Standard main sta
    rting
    132032.WIN2K8!PSANALYTICSRV.1736.2452.0: LIBTUX_CAT:250: ERROR: tpsvrinit() fail
    ed
    132032.WIN2K8!PSANALYTICSRV.1640.2796.0: LIBTUX_CAT:250: ERROR: tpsvrinit() fail
    ed
    132032.WIN2K8!PSAPPSRV.2668.764.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132032.WIN2K8!PSSAMSRV.3756.756.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132032.WIN2K8!PSMONITORSRV.4048.1804.-2: LIBTUX_CAT:250: ERROR: tpsvrinit() fail
    ed
    132032.WIN2K8!PSAPPSRV.2776.404.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132032.WIN2K8!PSANALYTICSRV.2324.2760.0: LIBTUX_CAT:250: ERROR: tpsvrinit() fail
    ed
    132233.WIN2K8!tmboot.3640.2792.-2: 12-06-2011: Tuxedo Version 10.3.0.0 with VS20
    08, 32-bit
    132233.WIN2K8!tmboot.3640.2792.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is set
    to 120 seconds
    132233.WIN2K8!tmboot.3640.2792.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAIL op
    tion is selected
    132233.WIN2K8!PSRENSRV.3148.1988.-2: 12-06-2011: Tuxedo Version 10.3.0.0 with VS
    2008, 32-bit
    132233.WIN2K8!PSRENSRV.3148.1988.-2: LIBTUX_CAT:262: INFO: Standard main startin
    g
    132233.WIN2K8!PSRENSRV.3148.1988.-2: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    132233.WIN2K8!tmboot.3640.2792.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error en
    countered; initiating user error handler
    132237.WIN2K8!BBL.3704.3912.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    132240.WIN2K8!PSADMIN.3552: End boot attempt on domain HR84
    Press Enter to continue...
    PeopleSoft Domain Administration
    Domain Name: HR84
    1) Boot this domain
    2) Domain shutdown menu
    3) Domain status menu
    4) Configure this domain
    5) TUXEDO command line (tmadmin)
    6) Edit configuration/log files menu
    7) Messaging Server Administration menu
    8) Purge Cache
    9) Preload Cache
    10) Clean IPC resources of this domain
    q) Quit
    Command to execute (1-10, q) :

    When i checked the event log i see the following errors:
    Pid 3108: server failed to startup because SgnDBSignon() failed.
    Pid 2224: server failed to startup because SgnDBSignon() failed.
    Pid 3716: server failed to startup because SgnDBSignon() failed.
    Below is my domain configs
    Quick-configure menu -- domain: HR84
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 16) DBNAME :[HC]
    2) Quick Server : No 17) DBTYPE :[MICROSFT]
    3) Query Servers : No 18) UserId :[PS]
    4) Jolt : Yes 19) UserPswd :[PS]
    5) Jolt Relay : No 20) DomainID :[HR84]
    6) WSL : Yes 21) AddToPATH :[C:\Program Files\Microsoft SQL S
    erver\100\Tools\Binn]
    7) PC Debugger : No 22) ConnectID :[PSCID]
    8) Event Notification: Yes 23) ConnectPswd:[P@ssw0rd]
    9) MCF Servers : No 24) ServerName :[WIN2K8]
    10) Perf Collator : No 25) WSL Port :[7000]
    11) Analytic Servers : Yes 26) JSL Port :[9000]
    12) Domains Gateway : No 27) JRAD Port :[9100]
    Actions
    =========
    13) Load config as shown
    14) Custom configuration
    15) Edit environment settings
    h) Help for this menu
    q) Return to previous menu
    HINT: Enter 15 to edit DBNAME, then 13 to load
    Enter selection (1-27, h, or q):
    Edited by: 897150 on Dec 6, 2011 11:30 AM
    Edited by: 897150 on Dec 6, 2011 11:31 AM

  • Application Server Supporting EJB2.0

    Hi
    I am using Websphere4.0 as well as Weblogic 5.1 .
    I want application server which support EJB2.0 spec (especially i want to try out LocalInterface Examples.)
    I want evaluation copy which i can down load.
    I have installed J2EE server 1.3 : For this can anybody tell me about Jars to be set in Class-Path.
    Thanx
    VJ

    You can try Oracle Containers for J2EE (OC4J) at otn.oracle.com/tech/java/oc4j
    this is a J2EE compliant server. But still have an whole implentation about EJB 2.0 (OC4J Developer Preview), However you can try Local interface, CMR, and other features EJB 2.0-specific.
    OC4J is 100% Java implemented. You can launch the OC4J server separately or embebed in the Oracle9iAS (Oracle9i App. Server).

  • Deploying Forms with Forms6i/Oracle Internet Application Server 8i - need help!

    Hi Gurus!
    I am trying to setup the Oracle Internet Application Server 8i (Release 1.0)and deploy the forms to the web. The server is on Solaris. I have installed and configured the application server. I used the 'runform.htm'and 'test.fmx' to test the installation of the application server on the Server machine. In that case it works fine and shows the message 'Application Server is up and running'. Where as if I tried to access the same 'runform.htm'and 'test.fmx' from another client machines through a web browser it is not executing the 'test.fmx' and throws the following error:
    " FRM-92060:Failed to connect to the Server. Bad machine specification:'hostname':9001"
    Details...
    oracle.forms.engine.RunformException:FRM-92060: Failed to connect to the Server.
    I am using the default port#9001 to run the Forms server (i tried using another port and i got the same error). The web server is listnening on the port 7777.
    I am not sure what needs to be fixed. Can someone please through some light on this?
    Thanks!
    null

    The Oracle 8i jvm component (formerly known as JSERVER) was designed to support server side java.
    This component was initially developed and included in the Oracle 8i rdbms 8.1.5.
    Enhancements continued to be implemented with the 8.1.6 and 8.1.7 releases
    IAS uses the same oracle 8i JVM from the rdbms to support java code on the middle tier.
    Here's how the IAS version and the RDBMS version match up on the Oracle 8i jvm's features.
    RDBMS 8.1.6 with IAS 1.0.0 (unix) / 1.0.1(NT)
    RDBMS 8.1.7 with IAS 1.0.2 (new name IAS 9i)
    8.1.6 / IAS 1.0.0 / IAS 1.0.1 supports :
    session EJB's(1.0 spec), corba objects and java stored procedures
    8.1.7 / IAS 1.0.2 (aka IAS 9i) supports :
    The 8.1.7 implementation will support the 8.1.6 features listed above plus the ejb 1.1 spec (entity ejb's -- see below), servlets and java server pages.
    note : in another thread Mr. Devin clarified the current status of the EJB 1.1 spec (entity beans)in the 8.1.7 solaris release and the future win nt release.
    If I remember correctly, Mr. Devin reported a last minute issue has delayed the support for the entity bean feature but ejb spec 1.0 / 1.1 session beans are in place.
    When the entity bean issue is resolved, a software patch needed to support the entity bean feature will be provided in a rdbms patch.
    for additional technical info, please review :
    http://otn.oracle.com/products/oracle8i/pdf/8iR3_nfs.pdf
    http://otn.oracle.com/products/ias/listing.htm#tech
    i hope this helps ...

  • Recommend Hyper-V Server Specs

    Hallo ladies and gentlemen 
    I am a 2nd year BSC IT and we had an assignment that we need to get a job and ask a few questions about their working environment. The job I got ask me to get information on Hyper-V (Best practices, What to avoid, Configuration Recommendations, etc. ) I
    need to get information about if their specs is correct or is their any other recommendations suited better. Their project involves installing 8 servers with 4 VM's on each. Here is the specs of every Server Host
    All 8 hosts contain
    64 GB Ram
    320 GB Disk Space
    20 CPU Cores
    Every VM will contain
    8Gb VM Ram
    40 GB Disk space
    4 CPU Cores
    6 VM's Per Host ( Max )
    4 VM's Per Host ( Designed ) 
    Also I am not sure if all servers platforms require the same specs but here is a list of  how many and which server platforms their are on each host
    Host 1
    GR Node
    RDS Server
    Application Server
    Not sure which is the 4th one
    Host 2
    Historian
    RDS Server
    RDS Server
    Application Server
    Host 3 - 8
    RDS Server
    RDS Server
    Application Server
    Application Server
    The next hosts are redundant
    Host 1 and 2
    Host 3 and 4
    Host 5 and 6
    Host 7 and 8
    It looks like I have covered everything that I had on paper so is the specification great or what do you recommend if not ?

    Hi SandMan,
    we cannot give Sizing advice based on Roles, it depends mostly on Performance and SLA Requirements. I personally use the MAP Toolkit (http://technet.microsoft.com/de-de/solutionaccelerators/dd537566.aspx) to gather Performance Requirements.
    Regards,
    Benedict

  • Server Specs

    Hello Kind Identity Management Folks!
    We are getting ready to purchase and setup our production server environment for our Identity Management Project. We will be managing about 40,000 accounts. The majority of the management tasks will involve manipulating data in a production LDAP server. That data will then be used by other systems to handle authentication and resource access. We have a good understanding of our requirements for the LDAP server hardware. Unfortunately we do not have a good understanding of our IDM server hardware. Currently we are planning on housing 4 production systems. One pair for end user access (reseting passwords, account claiming, etc.) and one pair for back end system processing and administrative tasks (Active Sync., etc.). We want to load balance between the two servers for each pair. We are planning on using a content switch to load balance. We believe that we will be running RedHat on all of the systems.
    Soooo...... What kind of specs do you all think we should be getting for the 4 servers? What kind of specs are you using? How does your usage compare with our projected usage? Is there anything hardware wise you think we should be aware of?
    Any input into the hardware needs of IDM is greatly appreciated.
    Thanks!
    Jim

    System notes:
    User Population: ~300K
    Identity System Password Changes: ~4K/day
    Resource Password Changes: ~12K/day
    Identity System Password Resets: ~1K/day
    User Modifications (other than password): ~5K/day (about half flowed to downstream resources)
    10 ActiveSync adapters (more on this later)
    Primary Resources:
    RACF (190K users)
    AD (100K users)
    LDAP (~300K users)
    Novell (14K users)
    Server Specs:
    DB Servers -- 2xSun V490 each w/16GB RAM running an Oracle Cluster
    Active Sync Servers -- 2xSun V440s each with 8GB RAM running Weblogic 8.1SP5 and Sun 1.4.2 JVM (heavily tuned for garbage collection)
    User Facing Servers -- 10xHP DL380s w/4GB RAM running RedHat, Weblogic 8.1SP5, Jrockit JVM (heavily tuned)
    We configured the ActiveSyncs to make it so the each dealt with approximately 10% of the changes, first one filtered to deal with employee numbers ending in 0, second to deal with employee numbers ending in 1, etc. We couldn't get it to scale otherwise - our nightly data changes were taking almost eight hours to process, we now deal with them in under an hour.
    The user facing servers also deal with miscellaneous tasks, we are starting to bring other smaller systems into the fold, and they will handle those as well. We could deploy more instances of the application on all servers, but we're still getting our feet wet, and it's working fairly well so far. We see typical loads on all servers to be under 20% utilization, except for the DBs, which we see jump to 70 or 80% under heavy use periods (particularly AD reconciliations).
    Hope that helps you out.

  • Creating an application server stub until the JCA is fully implemented

    Greetings,
              We have pretty much decided that the Java Connector Architecture is the
              way to go, when it comes down to integrating with EIS systems.
              However, the problem still remains that the JCA spec is not fully
              supported in the current beta release of the Connector implementation
              within WLS 6.0. In particular,
              I see that only non-transaction Resource Adapters can be deployed in
              this release (local transaction and XA transaction ones will have to
              wait until the full release in the summer).
              However, what our group wants to do is write XA-compliant Resource
              Adapters, even ahead of the actual support for them in the product. The
              issue for us is how to structyure our implementation so that we end up
              with a minimal re-write when the full implementation of the spec
              arrives.
              It seems to me that if I wanted to have support for XA-compliant
              Resource Adapters NOW, I would have to actually write some of the code,
              that would otherwise be part of the application server/container,
              myself. In particular, it is the code that "enlists" the XAResource
              object, which is associated with the ManagedConnection that an
              application bean asks for, with the Transaction Manager that is later
              going to coordinate things in the global XA transaction.
              Let me describe how I see things:
              when the application component calls into the Resource Adapter for a
              connection handle, the ConnectionFactory class according to the spec)
              delegates the call to the application server ConnectionManager (that it
              has been initialised with, typically at creation time), which in turn
              calls the createManagedConnection method of the ManagedConnectionFactory
              class inside the Resource Adapter.
              Now, I want to emulate the application server so that the
              ConnectionManager class is in fact implemented in my Resource Adapter.
              That I guess will not be a problem. However, the next thing IS (in the
              current BETA release): the application server code would normally
              retrieve the XAResource instance that is "hanging" off the
              ManagedConnection that has just been created and would "enlist" this
              with the Transaction Manager. Thereafter, everything would follow the
              normal XA transaction route, as the Transaction Manager would start
              calling back into the XAResource, notifying it on the status of the
              global XA transaction (start, end, prepare, commit, abort).
              Looking at the JTA specification, an in particular at what the
              application server code has to do, I see the following set of
              interactions:
              TransactionalResource res = ResourceFactory.getTransactionalResource();
              XAResource xaRes = res.getXAResource();
              (TransactionManager.getTransaction()).enlistResource(xaRes);
              <<<<<<<<<------------ how do/can I, in
              application code, within the Resource Adapter in fact, get hold of the
              TransactionManager instance? This is trivial when it is implemented
              within the app server code, but could I also do this?
              This will obviously be an interim solution for us: we will implement a
              very small part of the appliction server logic (you could call it a
              stub) around the registration of the XA resource with the global
              transaction manager. The aim is really to write something that will
              appear to our application beans as well as to the rest of the Resource
              Adapter as something that is behaving in the same way as the application
              server would (in the full implementation of the JCA spec), and would
              also ensure that neither our application component code nor our Adapter
              code would not have to be dramatically changed when that app server
              piece of the JCA-specified system contract implementation is in place.
              I realise that the APIs to the Transaction Manager implementation within
              WLS are "private" and that people may not want us to be using them. But
              it is the only way that I see for us to create something (Resource
              Adapters) which are a)XA compliant and b) will only have to change
              minimally, if at all, when the actual implementation is in place.
              I would appreciate any thoughts from BEA folks out there. Also, if you
              see another way of solving my problem (support global XA transaction
              within my Resource Adapters, AND minimal re-write) that I may be
              missing, I would appreciate your feeback around that.
              Many thanks in advance
              Kostas
              Kostas Karagianidis
              Technical Consultant
              PricewaterhouseCoopers
              Delta 602, Delta Business Park
              Swindon SN5 7XJ, Wiltshire
              United Kingdom
              Tel: +44 1793 536291
              Fax: +44 1793 529641
              Mobile: +44 7768 083452
              e-mail: [email protected]
              The information transmitted is intended only for the person or
              entity to which it is addressed and may contain confidential and/or
              privileged material. Any review, retransmission, dissemination or other
              use of, or taking of any action in reliance upon, this information by
              persons or entities other than the intended recipient is prohibited.
              If you received this in error, please contact the sender and delete the
              material from any computer.
              

    Did you sign your jar file for JWS? I don't think the security manager will allow a filebrowser if the jar is not signed.
    Edited by: Plee on Dec 29, 2008 6:54 AM

  • Server Spec 11.1.2

    Hi all
    Below is the server spec for EPM 11.1.2. I would like to know the impact on memory and space if we have two, three applications instead of One. Can u guys help me ?
    100 Users (35 active users) For One Planning App
    HTTP Web/J2EE Server Processor      4 X 3GHz
                   RAM           8 GB
                   Hard Disk     32 GB
    Essbase               Processor      4 X 3GHz
                   RAM           16 GB
                   Hard Disk     32 GB                    
    Other Services (Reporting, ODI Etc)     Processor      2 X 3GHz
                   RAM           8 GB
                   Hard Disk     32 GB               
    RDBMS               Processor      2 X 3GHz
                   RAM           8 GB
                   Hard Disk     100 GB RDBMS Storage
    200 GB For Essbase Storage
    Many Thanks
    Edited by: user8819264 on Sep 28, 2010 1:45 AM

    I am not going to really make a judgement on your specs as I don't really think you can do it over a forum it requires much more depth in understanding on how the system would be used.
    Though looking at the specs for the essbase server, are you considering storing the data on the local disk, if so I would consider looking at getting more space as you could easily hit that amount if you have a number of large applications on there.
    Other than that it looks ok for a number of planning applications, you may have to increase the ram if you are going to have quite a few planning applications running on a 64bit platform and want to include any other products, once again its hard to make judgements and you will probably be fine it is a ok spec.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Do older versions of Oracle Application Server support Containers for J2EE?

    Do older versions of Oracle 9iAS support Oracle Application Server Containers for J2EE (OC4J)?
    I went to the our companies application server directory. I don't see an oc4j or j2ee directory.
    Thanks,
    Merced

    How far back are you looking? ANd what, in particular, are you looking for ...
    The history of the Oracle 'internet service' that I remember is roughly:
    Web Server 2.1 (mid 1990s)
    Web Application Server 3.x (mid 1990s)
    Oracle Application Server 4.0.x (late 1990s)
    Oracle Internet Application Server 1.0.x (2000)
    Oracle Application Server 8i (basically 1.0.2.22.2.z)
    Oracle Application Server 9i (9.0.2, 9.0.3)
    Oracle Application Server 10g (9.0.4, 10.?.1)
    Oracle had an initial J2EE container [attempt] with 4.0.x but that never really took off. I think that was really around the time of the last beta revisions for the JSP spec, and that's left us with the legacy of JServ apps. Seems like you would see OJSE, Oracle JSE (Java Server Engine?) in the docco and path.
    IIRC, the current OC4J lineage started with around IAS 1.0.2 and has moved forward on what is now OC4J. There were some opportunities in the early days to improve consistency in the naming and directory structure areas. That has some lineage from Ironflare's Orion engine and so occasionally you see 'Orion' in the messages.

Maybe you are looking for

  • 37PF9830, Mac Mini, & DisplayConfigX

    I bought a Mac Mini (dual core 1.66), and am tring to use it with my Philips 37PF9830 (1920x1080). So far, so good! Either over or underscan (depending on the overscan checkbox) but the quality is great. However, trying to get it to map more like 1:1

  • Finder crashes in Lion 10.7.3

    I own a iMac 2011 model., running Lion OS 10.7.3..., Recentrly i installed Total finder 1.3.4.. and ever since i have problem with my finder... it kept on crashing like anything.. opening new windows every now and then., got totally frustated and uns

  • Item ID for Minimize, Maximize button at system form title bar

    Hi, Can anyone help me out finding Item ID for Minimize, Maximize and close buttons at system form title bar (Left side Title of form and right side three buttons). I need ID for these items, if anyone knows please reply. will appreciate help on same

  • Do we need ABAP developer license?

    Dear people, we use SAP ECC6.05 and we need to ABAP some different thinks. Now I wonder if we need a "developer license"? I thought that this license were include into the SAP ECC6.05. Can someone have an answer about that? Jan Maalderink

  • IChat opens empty windows upon startup

    I just installed Snow Leopard, and now every time I open up iChat, up pop blank chat windows from the last time I used iChat. For example, let's say I were chatting with "johnappleseed." If I quit out of iChat and then reopen it, not only does my bud