Perfomance Issue on Windows Server 2003 Cluster

Hello,
we have a strange perfomance issue:
we have a single Windows 2003 Server for the XI Quality System and a Windows 2003 Server on production (both of them 32 bit).
When we transport an integration scenario 1:1 from quality to production we have to face serious performance issues. Perfomance on the productive cluster is approx. 50% lower than on the quality environment.
How could this be? Do you have any ideas?

Hi,
It has been a while since the last time we heard from you, so I assume this issue is solved by now.
I will mark a reply as answer, please feel free to unmark it if it’s not helpful, and we will be happy to continuously support you.
Have a nice day!
Amy Wang

Similar Messages

  • JDK issues with Windows Server 2003 SP2 Standard Edition

    Hi,
    We are running an ETL (Extracts-Transform-Load) Jar file which reads data from MS Commerce Server 2002, AS400 and SQL Server 2000 database and populates a SQL Server 2000 database. The jar was running fine on Windows Server 2000 but started to stall when we are running it from our newly acquired Windows Server 2003 SP2 server class machine. The JDK version is 1.4 on Windows 2000 and 1.6 on Windows Server 2003. Interestingly, the jar is running fine via JDK 1.6 on another Windows Server 2003 dev machine.
    The jar does not throw any error and we have to manually shutdown the execution of the jar.
    Can anyone please suggest some solutions here?
    Thank you!

    Um, does this have anything to do with JavaMail? If not, you might try a more appropriate forum.

  • JDK issues with Windows Server 2003 SP2

    Hi,
    We are running an ETL (Extracts-Transform-Load) Jar file which reads data from MS Commerce Server 2002, AS400 and SQL Server 2000 database and populates a SQL Server 2000 database. The jar was running fine on Windows Server 2000 but started to stall when we are running it from our newly acquired Windows Server 2003 SP2 server class machine. The JDK version is 1.4 on Windows 2000 and 1.6 on Windows Server 2003. Interestingly, the jar is running fine via JDK 1.6 on another Windows Server 2003 dev machine.
    The jar does not throw any error and we have to manually shutdown the execution of the jar.
    Can anyone please suggest some solutions here?
    Thank you!

    Um, does this have anything to do with JavaMail? If not, you might try a more appropriate forum.

  • Issues with creating PDF's (Acrobat 8.1.6. and 9.1.3) in Windows Server 2003 (32 bit) and Windows XP (64bit)

    We have a report package that generates customised reports
    We generate the PDF's by simply "printing" to the Adobe PDF printer
    In Windows XP Pro (32 Bit) the report creates the PDF perfectly
    In Windows Server 2003 (32 Bit) or Windows Xp Pro (64 Bit) the PDF is created 90% perfect but some of text has slipped on the page.
    Whilst we are looking into the report writer (Dev Express) I would like to rule out any Acrobat issues.
    With thanks
    Mark

    I think it will work fine if you use the "Enterprise" authentication option.  It may have dependencies on 32 bit components.  So, that's why we must run IIS in 32 bit mode even though it's on a 64 bit OS.  That means CR supports 64 bit OS systems only if you bring down other components that CR uses to 32 bit levels.  I'm not sure if that is considered "full support". 
    We are trying to use the LDAP authentication option, but that tab is disabled.  Other tabs such as Active Directory and WinNT are disabled as well.  There maybe another component that we must bring down to 32 bit processing.
    Is there a way to enable the LDAP authentication configuration tab?
    thanks

  • Tuxedo Memory Leak Issue (Tuxedo 8.1 - Windows Server 2003)

    Hi
    We are running tuxedo 8.1, 32 bit with patch level 258 in our windows server 2003 based production environment. We are currently facing an issue where the memory usage of machine slowly keeps on going higher and higher eventually resulting in “Memory Allocation Failure” to tuxedo servers. We then have to do a complete restart of tuxedo which stabilizes the system for other few days.
    We have been analyzing the our source code in development/test environment using different tools like a customized Alzheimer tool and IBM purify but both tools reported no memory leaks. We then developed a test tuxedo server exposing a tuxedo service which simply allocates a memory to a response buffer and then returns the response buffer. I then configured tuxedo queue with same name “MEMTEST3” and configured a TMQForward server to call this “MEMTEST3” service every time a message is en-queued to the MEMTEST3 queue.
    unsigned long _LIBENTRY ulTPAlloc(FBFR32 **ppc, long size)
    unsigned long ulRes = MSG_SUCCESS_c;
    ppc = (FBFR32 ) tpalloc("FML32", (char *) 0, size);
    if (*ppc == (FBFR32 *) 0) {
    vLogMessage(hGetLogHandle(), MSG_MEM_ALLOC_ERR_c, (char *) 0, (Event_t *) 0,
    BM_NOSUPPRESS_c, size);
    ulRes = MSG_MEM_ALLOC_ERR_c;
    return (ulRes);
    /*==============================================================================
    Service MEMTEST2
    ==============================================================================*/
    void MEMTEST3(TPSVCINFO *pRequest)
    FBFR32 *pFmlResponse = NULL;
    FBFR32 *pFml = NULL;
    unsigned long ulRes = MSG_SUCCESS_c;
    unsigned long ulActionCode = 0;
    int iExitValue = 0;
    long lTpurcode = 0;
    FBFR32 *pFmlNULL = NULL;
    userlog("Starting MEMTEST3 service.");
    if (pRequest == NULL || pRequest->data == NULL)
    vLogMessage(hGetLogHandle(), MSG_API_ARGS_ERR_c, NULL, NULL, BM_NOSUPPRESS_c);
    ulRes = MSG_API_ARGS_ERR_c;
    else
    pFml = (FBFR32 *) pRequest->data;
    userlog("MEMTEST3: GET THE MEM");
    ulRes = ulTPAlloc(&pFmlResponse, 1024);
    userlog("Ending MEMTEST3 service.");
    tpreturn( iExitValue, lTpurcode, ( char * ) pFmlResponse , 0L, 0L );
    While I was en-queuing the messages to the queue, I kept on monitoring the memory usage of the server hosting the service. What I observed was that I saw an initial hike in the usage of memory of the server followed by small jumps in memory increase. I kept on monitoring the server for a long time and the memory was never returned. What I suspect is that there is memory leak in tuxedo TMQforward process as it never released the memory allocated in the service.
    Can anyone help how this situation can be avoided ?
    Kind Regards,
    Asim

    Hi Todd,
    Also as well as my previous question, I also found your reply to another user posting something similar at Re: Memory leaks in Tuxedo libraries
    You mention that:
    In general Tuxedo will free anything it allocates, although there are cases where memory is allocated and not freed because:
    +1) it is one time or a fixed number of times allocations that will not continue to grow, and freeing up the memory just before exiting isn't of any benefit.+
    +2) the memory is under Tuxedo's memory management functions where we manage our own look aside lists to provide better buffer allocation performance and again freeing these before process termination is of little benefit.+
    Our code does only issue TPALLOC once and then a TPRETURN - could point (1) of your comment above also be something of concern to us, where we would observe a continuous growth of memory usage?
    I know it may sound like a stupid question but do we need to run our code 20,000 times before memory gets freed?
    Kind Regards,
    Asim

  • About memory issue during installing Oracle 11g on Windows Server 2003

    Hi, all
    When I installed Oracle 11g on Windows Server 2003 which the server is a virtual server, Oracle only can detect 2G memory.
    But there are 4G memory with my server.
    I want to know if the Oracle 11g's new feature or the virtual server lead the issue.
    Also , I want to get your help to resolve the issue, thanks a lot.

    Let me get this straight:
    You have created some virtual machine using someone's unknown VM software.
    You have installed Windows Server 2003 (perhaps, but not confirmed 32-bit) to that VM.
    You have allocated 4GB of memory to the VM (we guess ... not sure I'm ready to take your word on this)
    You are attempting to install Oracle 11g (presumably 11gR1 32 bit for Windows) in the VM
    And the Oracle (installer?) seems to be reporting that you only have 2GB RAM.
    Since I personally have installed Oracle 11g 32bit for Windows on Windows 2003 server with 4GB RAM and had no issues, I would be investigating the (unknown) VM environment.

  • User-changeable Passwords issue f/ ACS 4.0 on Windows Server 2003

    I am having an issue with the UCP website not functioning correctly. I have installed it from the ACS 4.0 CD, following the instructions from the Cisco.com website, but cannot get past the Login page. Users can get to the Login page, but after they enter their information (username / password) and click Login, the server returns the following error page: "CGI Error. The apecified CGI application misbehaved by not returning a complete set of HTTP headers."
    I cannot get past this page. I have verified that the website is installed as outlined in the Cisco procedure, and have re-installed twice to verify. I have granted Everyone Write and Execute permissions to the site directories, and granted the Virtual Directories Script and Executable access.
    Any help on this would be greatly appreciated. I am evaluating ACS 4.0 for deployment in our company, and UCP not working is a major stumbling block.
    Additional configuration information:
    Windows Server 2003 SP1, patched current to 8/29/06
    The ACS server is also running on this server; it was installed and tested first, before installing UCP.
    Thanks,
    John

    Change the user that runs CSusercgi.exe to Administrator.Refer the following steps Install UCP 4 on a machine that runs IIS server,Open IIS manager,Locate Default Web Site, Double click on the virtual name 'securecgi-bin',Right click on CSusercgi.exe and choose Properties,Choose 'File Security' tab,Choose 'Edit' in 'Authentication and access control' area,Change username from IUSR_ to 'Administrator' and enter his password.

  • Directory Security Strange Permissions Issues (Windows Server 2003 running Active Directory)

    I have a user that all of a sudden was not able to open 70% of her files located on a file server, Windows Server 2003 running Active Directory, from her laptop. The same user can access all the same files from a different machine, logging on with the same
    credentials. Just looking for a point in the right direction and a possible theory as what could cause this problem, an why all of a sudden. I did go back through the logs but nothing sticks out. For the most part the logs on the server and the laptop are
    pretty clean. 
    Both machines are Latitude E5420s running Windows 7 Enterprise Service Pack 1. Both machines are 64bit and connect to the network via hard-wire, not wireless.
    Thanks in advanced.
    Grajek

    I would recommend proceeding that way:
    Check that your DCs are in a healthy state and AD replication is fine: It might be that the user is member of security groups and the membership is not getting replicated properly which can cause this random behavior. You can use
    dcdiag and repadmin for checks and you can refer to my recommendations here: http://social.technet.microsoft.com/wiki/contents/articles/18513.active-directory-replication-issues-basic-troubleshooting-steps-single-ad-domain-in-a-single-ad-forest.aspx
    Make  sure that the file server is reachable from the user client computer. Start with
    ping and nslookup. Also, you need to make sure that the traffic between the client and the server is not blocked or filtered. You might want to temporary disable security software for testing
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Windows Serve 2003 Paging Issue

    Hi All,
    We have one windows server 2003 enterprise edition with good CPU power & 24 GB of physical memory.
    Since last few days weeks. This server becomes non-responsive with large number of event id 50 & 51. We can't access this system when this happens & someone need to go & hard reboot the system.
    Assumes this is something related to memory leak from some application but didn't find the exact trace for that.
    Any way to narrow down  this trace.
    Thanks,
    Sandesh

    Hi sandeshgawade87,
    Did you install the following Hotfix:
    Some data is corrupted when cached and noncached I/O operations occur by using the same NTFS file handle
    http://support.microsoft.com/kb/981166
    From the event ID, it also can caused by the hardware issue, please check your storage hardware related system.
    The related KB:
    Information about Event ID 51
    http://support.microsoft.com/kb/244780
    Windows System Event Log Errors that indicate possible I/O problems can be associated with database inconsistency or performance problems for SQL Server
    http://support.microsoft.com/kb/2091098
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Migrating Windows Server 2003 File Cluster to Windows Server 2008 R2

    Hello,
    I have a very large Windows Server 2003 2 node file cluster that I would like to upgrade to Windows 2008 R2. I need to do this inplace (same server hardware) and I would like to use the existing storage if possible (I could buy more if it would make things
    easier).
    Is there a step by step guide that can tell me how to do this upgrade inplace or can anyone give me details on how to do this? I've looked at a few articles and they are not very descriptive on what to do.

    What Microsoft calls an inplace upgrade is option 2 below
    There are two basic migration/upgrade methods for a 2003 cluster to 2008
    1) Build on new hardware, and move the disk/migrate the data. 
    2) Break cluster and remove one node, use that node to build a new one node cluster.  Repeat by removing nodes and adding to new cluster.
    Here is the MS Step-by-step guide for both of these approaches.
    http://technet.microsoft.com/en-us/library/cc754481(WS.10).aspx

  • I am trying to remote into a Windows Server 2003 from a Windows 7 machine and having issues

    I am trying to remote into a Windows Server 2003 from a Windows 7 machine.  It says "The terminal server has exceeded the maximum number of allowed connections".
    My first stop in trying to solve this problem was here:
    [URL="http://www.howtogeek.com/howto/windows/command-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/"]howtogeek.com[/URL]
    And it says:
    [I]
    [INDENT]This problem happens because Windows only allows two remote terminal services connections when you are in administrative mode, and you’ve either got two people already on that server, or more likely, you’ve got a disconnected session that still thinks
    it is active.
    The problem with this error is that you have to actually get on the server console to fix the problem if the server isn’t in a domain. ([B]If you are in a domain, then just open Terminal Services Manager and log off or disconnect the sessions[/B])[/INDENT][/I]
    So it seems to suggest that all I have to do really is to run the  Terminal Services Manager but I cannot find it.
    This web site from mssqltips.com [URL="http://www.mssqltips.com/sqlservertip/1981/remote-desktop-error-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/"](click here)[/URL] says all I need to do is first execute "mstsc /
    admin" from the command line.  But, when I do that, I get a message when I try to remote to the server, that says this: "To log on to this remote console session, you must have administrative permissions on this computer".
    So, what now?  What do you suggest?

    Hi Bobby,
    Yes, it is by design. By default, Windows Server only accepts two concurrent administrative sessions (Administrative Mode). It means that only two administrators can work on the server at
    the same time.
    If you would like more concurrent sessions, you need to purchase RDS CALs, install Terminal Services related server roles with proper configurations on the server.
    Remote Desktop for Administration (server 2003)
    http://technet.microsoft.com/en-us/library/cc785186(v=ws.10).aspx
    What Is Terminal Services?
    http://technet.microsoft.com/en-us/library/cc782486(v=ws.10).aspx
    Terminal Services Configuration
    http://technet.microsoft.com/en-us/library/cc787078(v=ws.10).aspx
    Purchase client access licenses
    http://technet.microsoft.com/en-us/library/3660ac5a-7468-48d3-b7e8-5529de8fb6c5
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Issues while weblogic 10.3.5 on 64 windows server 2003 R2

    Hi,
    I'm trying to configure weblogic in 64 bits windows server 2003 R2.
    1.First, I installed 64 bit jdk.
    2. Installed weblogic server(64 bit)
    3. insalled ADR 11.1.1.5 with jdk path done in the first step.
    4. Applied patch no : 12611176 (sherman patch)through opatch.
    5. then try to upgradeADF from 'E:\oracle\WlsStandalone\oracle_common\common\bin\wlst.cmd', i'm getting following error :
    wls:/offline> upgradeADF('E:\oracle\WlsStandalone\user_projects\domains\adf_domain')
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: upgradeADF
    wls:/offline>
    6. After this i tried to apply second patch 12556632, this also failure.
    Thanks in advance,
    SAN

    are you following the steps mentioned in the Opatch readme file, it will tell the way to upgrade, and it shows the prerequiestes also

  • Issues when Sharepoint Services 3.0 OS upgraded from windows server 2003 standard to windows server 2003 enterprise

    In my sharepoint 2007, I have upgraded the OS from windows server 2003 standard to windows server 2003 enterprise R2 SP2. After the OS upgrade when I run the central admin it's showing this error "Microsoft Windows Sharepoint Services 3.0 Error 2908
    error has occurred" screen shot below of the error. 
    Any help?

    Not sure I can help.  In general MS does NOT support the upgrade of the Underlying OS without re-installing SharePoint.  Many of the prerequisites that were installed when SharePoint was installed are OS specific.  You can either contact
    Product Support and see if they can provide any assistance or re-install SharePoint from scratch and re-attach/migrate all the existing databases with content into the new system on the new OS.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Acrobat 8 Professional and Windows Server 2003 R2 Issue

    Hi
    Our customers using Adobe Acrobat 8 Professional on Windows server 2003 R2 SP2. It works some period of time but then application stops working with this error and cannot start anymore:
    Faulting application Acrobat.exe, version 8.1.0.137, faulting module Checkers.api, version 8.1.0.137, fault address 0x000021a2.
    What can be the problem? There is nothing in the knowledgebase.
    Regards,
    Jelena

    Hello jordixip,
    You can connect your Mac to Terminal Services using Remote Desktop Connection Client . You need a license, the client software, and turning on the appropriate bits on the server. It is in Micro$oft-ese, but the overview is here.
    Good Luck!
    Zubin
    iMac G4   Mac OS X (10.3.9)   Mac OS 9.2 & earlier, Win2k Pro & Server

  • Laserjet CP2025 share issue (64-bit drivers from Windows Server 2003 32-bit).

    Hi,
    We are migrating our Desktops from XP 32-bit to Windows 7 64-Bit and I'm trying to update all of our printer drivers on our Print Server (Windows server 2003 32 Bit).
    I am adding the new drivers by opening up each printers properties on the print server, going to Sharing and then add new driver and directing it to the relevant folder for the 64-bit drivers for the printer.
    Every printer (HP, Panasonic, Brother) has worked so far, except for the HP Laserjet CP2025. The Net Express installer doesn't work. Nor do the Universal Printing Drivers (PLC 6). Does anyone know a way around this?
    Thank you.

    Can anyone help with this? I'm in a difficult position with this. Any help would be appreciated.

Maybe you are looking for

  • IPhone 2.0 software and Bluetooth

    I am sooo disappointed in the new software. I've successfully used my first generation iPhone with software 1.1.4 with my new Dodge uConnect system ($1,500 sound and bluetooth). Until today. Upgraded my iPhone to version 2.0. Upgrade failed and got r

  • Returning selected object when selecting something in ABPersonViewControlle

    Hey guys, There is a problem that I have right now. Basically I have this ABPersonViewController pushed and what I want is that if user touch down on a specific field, it will return that specific field's value. I tried to look at the documentation f

  • How to create the Exit Variable

    Dear all, I want to create the exit Variables  for query. But How to create the exit variables. Dose Anyone could share some document? Thanks Best regards, Leon

  • Info on lossy DNG?

    The idea of a (slightly) lossy, but full dynamic range, compressed image format is excellent, and long overdue. It seemed up to now that JPEG XR (previously HD Photo) would be the best choice, if only anyone agreed to use it. I was hoping LR would so

  • How to synchornise

    I am new to Oracle 9i Lite. I am using a Handheld PC with WinCE 3.0, I want to synchorize just 4 tables from a schema in a database which is in Oracle 8i. What are the steps involved.