Which cases we need to restart the J2EE Engine

Hi,
In our project , we have only two servers
One for Development & Testing
Second for Production.
Because of the Development and testing happening in the same mechine, we are requesting the client to get another server, Because we are getting problem to use the same server for develpment and testing .
when ever we make any changes at the bapi side, to reflect those changes in the front end or webdynpro, we need to restart, if we make any changes in the, Config Tool or Visual Admin, we need to restart.
At the same time couple users are working in the same server for tesing. It is troubling them when ever we make the restart.
So we are getting lot of complaits when ever we restart the server.
so we decided to request new server for development seperately. so , one of our administrators asking for proofs from the SAP coumentation, why do we need restart many times.
To get the new server for development, we need to show documentation from the sap for resons of restart. i have got some documentation for restart when it requires.
If any of you have some links related to this restart requires done on which cases?
can u please forward it me.
Regards
Vijay

Hi Vijay,
Find the official documentation for J2EE engine in the below link
<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/1a/819d42449b0731e10000000a1550b0/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/1a/819d42449b0731e10000000a1550b0/content.htm</a>
Regards,
Sudeep

Similar Messages

  • How to restart the J2EE Engine

    I ran a couple tests the other day, and the next time I looked the J2EE Engine was down.  (Could not send or receive PTP messages to it).
    When I brought up the J2EE Engine Administrator, it put upt the following help box:
    <b>Unable to lookup connection default
    http:host1:8101/msgserver/text/login returned empty list of connection parameters</b>
    I had to reinstall to get it to work.
    Does anyone know how to restart the J2EE engine ?
    Thanks, John

    Hi,
    judging by the URL given in the error message (which is a URL that queries the message server), your engine must be of 6.40 version. Well, on 6.40 you should have the SAP Management Console (SAP MMC) that you can open and start the engine from. TO open it, go to Start -> Programs -> SAP Management Console. Inside, locate your SAP System, right-click on it and select Start.
    That's it.
    Just for a reference, <a href="http://help.sap.com/saphelp_nw04/helpdata/en/9b/dd7277f3e64ecba59f7fbac7edd2fe/frameset.htm">this</a> page contains also some screenshots of the MMC.

  • Enque Server was restarted without restarting the J2EE engine (MSCS)

    Hello All,
    I've installed the Portal on Microsoft Cluster (MSCS) and everything is working well. Now when i try to move the Group from Node 1 to Node 2 to test whether it fails over or not?? It does fail over however, server node on CI and DI(Dialog Instance) gets crashed. I checked the log files and got the following:-
    <b>Enque Server was restarted without restarting the J2EE engine. This could lead to data inconsistencies and requires a restart of the entire system.</b>
    Has someone experienced this before, any ideas.
    Regards
    Vaib

    Hi vaibhav,
               We are planning to install a HA & Load balanced NW portal. I was looking to get some information regarding same. While going through SDN, I came across this message. Thought of writing to you, since you have already implemented this solution.
          Do you have any IDEA, whether SAP(Ok with other Institute also..) offer's any courses / Training for setting up HA (High-Availability) & LOAD BALANCING solutions for NetWeaver Enterprise Portal ?
    Or any books available for the same at SAP Press?
    PS: you also may refer to my message at SDN with the subject line: Courses / Books For HA & Load balancing for NW Portal
    Courses / Books For HA & Load balancing for NW Portal
    Regards
    Sunil Kulkarni

  • Restart the Java-Engine in a dual stack installation (java+abap)

    Hi,
    how is it possible to restart or start only the j2ee-engine in a dual stack installation. We have a JAVA- and a ABAP-Stack and want only restart the JAVA-Stack. In windows i can use the MMC of SAP but how is it possible in UNIX.
    regards,
    sharam

    Hi Eric,
    i konw this TR, it doesn't work. There are two possibilities:
    restart j2ee-local
    restart j2ee-global
    we try it with j2ee-local because we use a dual stack installation. What could be the problem. Is there an other possibility? How can i restart the j2ee-engine directly on my unix machine?
    regards,
    sharam

  • Restart the servlet engine

    I made some changes to the KM -> Content Mgt -> Repository Managers -> BO Repository and saved them.
    I got a message at the top telling me to:
    "restart the servlet engine"
    So I'm wondering if that means restart the J2ee or just restart some repository service?
    Mike

    Michael,
      Pls restart the j2ee engine. This is normally reqd if you make changes in Rep managers.
    Rgds

  • I need to restart the database

    Hi Guys,
    I have migrated my database from oracle 9i to 10gR2 and from 32bit windows to 64bit RHEL4 using full database export and import. Everything works fine. We have got some performance enhancements also.
    But one report generation module which was supposed to complete in 25 minutes takes 1-2 hrs. to complete. Most of the time we need to restart the database to complete the operation. After restarting the database it completes within 15 mintutes.
    What may be cause of such behaviour, any idea? How should I proceed to resolve the issue? The cursor_sharing paramater is 'FORCE' which was same in our 9i setup also.
    Regards,
    Santosh

    Hi,
    >>After restarting the database it completes within 15 mintutes.
    It seems this doesn't make sense. Did you gather statistics for the tables? In addition, take a look at AWR from OEM that contains performance statistics and workload information on the database that is captured every hour and preserved for seven days by default. In this case, historical information is important to diagnose a performance problem that has already happened
    Cheers
    Legatti

  • In which case we need a class with all methods defined as abstract ?

    In which case we need : A class with all methods defined as abstract (or should we go for Interface always in this case)

    The concept of interface and abstract class overlaps sometime, but we can have the following thumb rule to use them for our specific need:
    1) Interface: This should be use for code structuring. They standardize your application by providing a specific contract within and outside. If you think abstract class also provide structure, then reconsider as it limits the structure re-usability when there are many super-classes to inherit from. Java allow multiple inheritance by interface and not by Abstract class.
    2) Abstract Class: This should be use for code-reusability. Interface doesn't have any code so can't be used for code-reusability.
    Actually we can use both to provide the best.Taking a refernce to J2EE framework, the "Servlet" is an interface. It laids down the contract/structure for any code to be a servlet.
    But the "GenericServlet" class is an abstract class which provides implementation of some of the methods defined in the "Servlet" interface and leave some method abstract.
    Thus we see that the "Servlet" interface standardise the structure and the "GenericServlet" abstract class gives code re-usability.
    Original Question:
    In which case we need a class with all methods defined as abstract ?To this question, as all methods are abstarct we don't have option for code-reusability. so why not add standard structure concept to your application. So if there is not any restriction on making the field variable(if any) as final, we should go with the interface concept.

  • I can't install Firefox 5. It downloads & starts the wizard. I follow the prompts till it says it needs to restart the computer 'to complete a previous upgrade of firefox' . I say yes and it restarts and there is no sign of firefox and no error message.

    The very first time I tried this there was a red message that flashed on the screen too fast to read it. I have Windows 7 and AVG. My son's computer also has Windows 7 and AVG and his upgrade went without a hitch. It deleted my old version of firefox (3.6.12) so now I'm using IE. Windows installed a lot of updates just before I tried upgrading firefox. I have tried turning my firewall down. I have gone to the file in downloads and double clicked it and it does the same thing. It always says it needs to restart the computer even though I have closed all other applications. Should I just give up and try reinstalling an older version of Firefox? Thanks

    It is probably because you are not properly closing Firefox. Restarting your system would make sure that Firefox had terminated, but you do not have to do that.
    To properly close Firefox on Windows systems, use
    :File > Exit or "Firefox:" button > Exit
    When you get the message "Firefox is already running" it is too late, and you must force termination of Firefox through the Windows Task Manager before restarting Firefox. Windows 7 has a keyboard shortcut to save you a step "Ctrl+Shift+Esc" then on "Processes" tab, select "firefox.exe" and use the "End Process" button. More thorough would be to right-click on the "firefox.exec" and choose "End Process Tree".
    You would find firefox.exe in a Mozilla folder in your program files, but y0u would not want to delete it there, you would need to use the Control Panel which you have already identified and do it from there -- but generally you would not need to do that, and there is nothing in what you have posted to indicate that you should. But if you did do that, then don't let the install start Firefox for you as you would want to use you existing desktop icon or method of starting Firefox, and should decline having Firefox install start Firefox for you. When the install starts then invoke Firefox in your normal manner. This should eliminate problems of creating a new profile rather than using your old profile.

  • Tried to open my old MacBook.  Couldn't remember password.  Followed suggestion to reinstall hardware.  Now startup disk is stuck in computer and it won't turn on.  I keep getting a message saying I need to restart the computer.  Any ideas?

    Tried to open my old MacBook.  Couldn't remember password.  Followed suggestion to reinstall hardware.  Now startup disk is stuck in computer and it won't turn on.  I keep getting a message saying I need to restart the computer.  When I hold down power button, I get the same message over and over.  Any ideas?

    Hello m.goo, and a warm welcome to the forums!
    To eject the Disc, hold the Mouse button down, (or what passes for it on a Laptop), while powering up, if you also hold the Option key down at the same time it should eject & give you a chance to insert your install disc & wait for it to shw as a Boot option.
    "Try Disk Utility
    1. Insert the Tiger Mac OS X Install disc , then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, *you must select your language first.)*
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    Then Safe Boot , (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it finishes.
    If it appears to be time for An Archive & Install, which gives you a new OS, but can preserve all your files, APPs, pics, music, settings, etc., as long as you have plenty of free disk space...
    http://docs.info.apple.com/article.html?artnum=107120
    Be sure to use Preserve Users & Settings.
    To check if AppleCare applies, AppleCare Products Overview...
    http://www.apple.com/support/applecare/overview/

  • Is it necessary to restart the J2EE after I have imported certificates?

    Hi guys,
    I have imported certificates into the keystore. Is it necessary to restart the J2EE to make them available?
    Thanks, Olian

    Hi Olian,
    Not necessary to restart the server.
    If you have imported server certificates, then you can check it by assigning the certificates to https port in SSL provider and acces the server through https://<server name (FQDN):<https port>.
    The explorer should show you the imported certificate.
    If you have imported any other certificates , then also its not necessary to restart. You can directly check the functionality for which you have imported the certificates.
    Cheers....,
    Raghu

  • Air play in Apple Tv disconnects with no reason, and I need to restart the router to connect again. Meanwhile apple tv is connected to wi if. Can somebody help?

    Air Play in my Apple TV disconnects from iPhone or Mac book after some time of playing. I need to restart the router in order to connect again. Apple tv is connected to wifi succesfully? Any suggestion?

    I tried something new yesterday after reading all these messages.  My ATV3 was situated on top of my satellite box and I noticed that it was quite warm.  The instruction manual suggests that the box not go over a certain temperature, so I moved the box to a location without the heat under it.  It now works without any problem at all...at least, so far.   

  • The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -  When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for abo

    The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -
    When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for about 6 months ...

    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325
    Are you trying to use a 32bit version (I did not even know there is one for Photoshop CC 2014)?
    If so – why?

  • Do we need to restart the Tomcat server each time when we modify servlets?

    Hi Friends,
    Do we need to restart the Tomcat server each time when we modify servlets. Or is there any otherway to achieve the functionalitly?
    Thanks and Regards,
    JG

    JamesGeorge wrote:
    Hi kajbj,
    Java guys are mostly using TOMCAT,so for me it seems to be the best place.That's not correct. Most people who are writing stuff for the web might be using Tomcat, but there are lots and lots of Java applications that aren't for the web.
    Is there any other reason behind your question.Yes, this forum is named "New to Java" and Tomcat questions shouldn't be asked here, even if people knows the answer to you question. You will probably get better and more detailed answers in a Tomcat forum. All othe guys there are actually using Tomcat, and they know the small differences between the different versions, and how they behave on different operating systems. They do also know if you need to make configurations changes, and where you should make them.
    So in future, please ask questions in a forum that is specific to the product that you are using.

  • If the data network is not available for some time, to get it again we need to restart the phone instead it is not finding the data network instantly. why cant the iphone searches data net work offten if not available. i am totally disappointed with this!

    If the data network is not available for some time, to get it again we need to restart the phone instead it is not finding the data network instantly. why cant the iphone searches data net work offten if not available. i am totally disappointed with this!

    Still it could not find the data network.it searches for voice network instantly and works too. but even full voice network available, there is no data network.when i restart the phone it could find data network.
    Already i reset network settings for two times.

  • PCI-GPIB does not like returning from computer power-save mode. I need to restart the application. Uggh! Customer not happy.

    It seems volatile memory is lost on the PCI GPIB Card. When the system returns from power-save, I cannot get to my GPIB instruments. I have to close the application and restart it. I've tried unregistering and reregistering the gpib globals and resetting the device interfaces (reissuing the ibdev command) without luck. I am using Visual Basic 6, but I also get the Measurement and Automation Explorer to fail in the same way, so I don't think it is my development environment.

    On Sat, 15 May 2004 20:23:58 -0500 (CDT), SQP Products wrote:
    >PCI-GPIB does not like returning from computer power-save mode. I
    >need to restart the application. Uggh! Customer not happy.
    >
    >It seems volatile memory is lost on the PCI GPIB Card. When the
    >system returns from power-save, I cannot get to my GPIB instruments.
    >I have to close the application and restart it. I've tried
    >unregistering and reregistering the gpib globals and resetting the
    >device interfaces (reissuing the ibdev command) without luck. I am
    >using Visual Basic 6, but I also get the Measurement and Automation
    >Explorer to fail in the same way, so I don't think it is my
    >development environment.
    Can you change your power save settings? What operating system
    are you running?
    Also, some BIOS's have options for power save. For example, recent
    IBM's can be set to maintain power to all peripherals, or only to main
    memory. Of course, you would want it to maintain power.
    I suspect the GPIB board and its driver are completely unable to
    handle power save operation. It probably was never considered while
    it was being designed.
    Aidan Grey

Maybe you are looking for

  • Memory Leak issue with TreeView

    Hi, I get Memory Leaks in the TreeView, if I open the stage which contains the TreeView several times. Everytime I open the stage, I clear the TreeView and populate it with new items. However there are leaks. I think this is a bug. But maybe my code

  • BitLocker Drive Encryption Recovery Key

    I have a Dell Optiplex 7010 running Windows 7 Enterprise 64-bit. Intermittently when booting the computer the Windows BitLocker Drive Encryption Recovery Key Entry screen shows up. Most of the time I can power off the computer and then turn it back o

  • Error with Do Not use SOAP envelope

    All, I used the do not send SOAP envelope option in the SOAP receiver adapter. Instead of XSLT, I used JAVA mapping to create the entire SOAP message ( Am more comfortable with Java and this is just a trial) , and this is the output of my java mappin

  • Mini not showing up in iTunes or charging anymore

    Hello, It seems since iTunes dramatically changed their software, we've been having issues with the mini being recognized when it's plugged into the computer. I have a regular iPod and the same cable works just fine for my iPod but when we plug the m

  • XWS-Security, JAAS and role-based authorization

    What is my best bet to try to authorize users to use certain web services? For example, let's say a user logs into a web application A, who connects to a web application B implementing Web Services and XWSS. A passes along the userNameToken, and B au