Running concurrent SAPEHPI on the same OS

Hello
We have to upgrade more then one SAP system running SAPEHPI, the SAP system are running on the same server.
if running more then SAPEHPI on the same host for diffrent SAP system, tcp port will be busy (4239 and other)
Do you know of a way to run SAPEHPI concurrent on the same server (change of http ports)
TIA
Erez

Hi Erez,
Kindly note that running concurrent EHPI's on the same system is a complicated process and unless very much required better not to use this.
If you run several enhancement package installations in parallel on the
same host, you have to use different port numbers for each. When you
start the installation program, specify the port numbers as follows:
       o  httpport=<http port number>
       o  guiport=<GUI port number>
       o  -srvarg=/DSUService/abaptoolport=<port number for ABAP inst.
          tool>
You can only run multiple SAP Enhancement Package Installer on ABAP only
systems, not on dual stack or Java only systems.
Do you use different port numbers? Are all ports accessible, especially
on the frontend? (See port usage with netstat -a command)
For configuring the different EHPI-Directories you can for instance
use this: usr/sap/<SID>/EHPI
where <SID> is the of the systems, where you execute the EHP
installation.
Please take care that the paths of the different EHPI-Directories
that you will define are not very long!
I hope this answers your query.
Regards,
Abhishek

Similar Messages

  • How to run two query  in the same preparedStatement

    Hi all,
    Please tell me how to run two queries in the same preparedStatement object ?
    In my module I have to run two queries and I don't want to make two methods for running two different queries.
    I just want to call this method for both of my queries.
    methodName(long param)
    Connection conn=null;
    PreparedStatement pstmt=null;
    //////////////// some coding
    Please Help !
    Thanks in advance
    amitindia

        public void foo()
            Connection connection = null;
            PreparedStatement stmt = null;
            try {
                connection = ...get from pool...;
                stmt = connection.prepareStatement("...");
                ...fetch results...;
                stmt.close();
                stmt = null; // So the finally statement works if there is an exception
                stmt = connection.prepareStatement("...");
                ...fetch results...;
            } finally {
                if (stmt != null) ..close it...;
                if (connection != null) ..return it to pool...;
        }

  • Can I run two PIDs from the same vi?

    Hi
    I want to control speed of the rotating shaft and force applied by the pneumatic cylinder using two different PIDs from the same program.
    I managed to get two PIDs to work separatly using PID control loop VI`s supplied with labview 6.1 (I got Kc, I and D right, so there is no overshoot). When I try to run both PIDs within my vi they don`t work. I again tried various gains and managed to get one PID to work but not the other. Then through trial and error I managed to get a second PID to work but I had to change refresh time of the FOR loop from 100msec to 1msec.
    Does anyone have experience with running two PIDs in the same program? Does the timing of the FOR loop influence PID contorller? Does equiring of other data while run
    ning PID has effect on the PID?
    I would really appreciate any comments/help. I am pretty thrustrated at this time
    Thanks"

    The timing of the FOR loop will influence your PID control, which is a fundamental part of PID control. Acquiring data doesn't affect the PID although it could affect the timing of the loops. For instance if you only have one DAQ card you would want to have it all in one loop because you can not have two AI sessions open to the same card.
    For more detailed information on PID I would recommend reading the "PID Control Toolset
    User Manual" which should have been installed to your machine but can also be found at : PID Control Toolset User Manual"
    Regards,
    JR A.
    Application Engineer
    National Instruments

  • Can i run two PIDs at the same time?

    Hi
    I want to control speed of the rotating shaft and force applied by the pneumatic cylinder using two different PIDs from the same program.
    I managed to get two PIDs to work separatly using PID control loop VI`s supplied with labview 6.1 (I got Kc, I and D right, so there is no overshoot). When I try to run both PIDs within my vi they don`t work. I again tried various gains and managed to get one PID to work but not the other. Then through trial and error I managed to get a second PID to work but I had to change refresh time of the FOR loop from 100msec to 1msec.
    Does anyone have experience with running two PIDs in the same program? Does the timing of the FOR loop influence PID contorller? Does equiring of other data while
    running PID has effect on the PID?
    I would really appreciate any comments/help. I am pretty thrustrated at this time
    Thanks

    I don't know whcih PID vi's you are using but I had similar problems. I
    solved it by going to the VI properties of the PID subvi, select category
    execution and make sure that reentrant execution is selected. Only then two
    instances of the PID vi can run without interfering each other.
    Martien
    solved by setting the execution mode
    "smartlander" wrote in message
    news:[email protected]..
    > Hi
    >
    > I want to control speed of the rotating shaft and force applied by the
    > pneumatic cylinder using two different PIDs from the same program.
    > I managed to get two PIDs to work separatly using PID control loop
    > VI`s supplied with labview 6.1 (I got Kc, I and D right, so there is
    > no overshoot). When I try to run
    both PIDs within my vi they don`t
    > work. I again tried various gains and managed to get one PID to work
    > but not the other. Then through trial and error I managed to get a
    > second PID to work but I had to change refresh time of the FOR loop
    > from 100msec to 1msec.
    > Does anyone have experience with running two PIDs in the same program?
    > Does the timing of the FOR loop influence PID contorller? Does
    > equiring of other data while running PID has effect on the PID?
    > I would really appreciate any comments/help. I am pretty thrustrated
    > at this time
    > Thanks

  • Concurrent execution of the same interface

    Hi,
    we use ODI in an application that waits for incoming data files in a directory and uploads their content into a target database.
    The principal question I have is this:
    Can ODI handle concurrent executions of a single interface? In our use case, this happens when two (or more) users submit their files within short period of time, but I think this question is important in general. Is ODI a good fit for concurrent data flows targeting a single datastore?
    I personally doubt that. An ODI interface consists of loading and integration steps. That is, loading data into one or more temporary work tables, joining into a flow table (if having more than one source datastore), and finally integrating (merging) data into the target datastore. Most of the loading and integration knowledge modules follow this pattern:
    1. drop work table
    2. create work table
    3. populate work table
    4. use work table (e.g. for joining into a flow table)
    5. drop work table
    This seems to be a problem - indeed testing with two concurrent executions failed due to the faster instance dropping the work table being used by the other instance.
    I know you can configure the KMs not to drop the work table and/or design custom LKMs/IKMs as you see fit, yet the idea of two concurrent processes using the same work table doesn't look right to me.
    So back to my original question - what is the best practice for concurrent ODI executions on the same target? Is serializing of executions on single target a must? Does ODI provide means to achieve the serialization? Are there other options?
    Thanks in advance for your feedback.

    Sure, I like the idea.
    It's a pity that such KMs do not come out of the box with ODI. Even though I agree with you that it's an easy customization, it's still effort that someone has to pay, on top of the ODI license cost. After all, ODI is supposed to reduce the amount of development work. Hopefully Oracle realizes this and ships more reusable KMs in the future (the product is still pretty new in the Oracle portfolio).
    Thanks for your feedback, it's definitely more elegant than serializing execution (which remains an option for less demanding scenarios).
    Further elaborating your idea...How about creating an ad-hoc work schema dynamically? Is that feasible? Say by cloning a template physical schema and setting the work schema? That way the existing KMs could be reused.
    Another fancy idea would be using the substitution API in the work table prefix definition, e.g. "C$<%=odiRef.getSession("SESS_NO")%>". That would be a nice feature for Oracle to implement.

  • Disallow running multiple instances of the same web start application..

    on the client? I have an application that is launched on the client by clicking on the link to the JNLP file. The problem is that I don't want the application to launch twice if the user clicks the link twice. Is there a way to keep web start from running multiple instances of the same app?
    I don't want to just disable the button after it is clicked because then the user won't be able to get back in if they need to.
    Any help out there?
    Thanks,
    Melanie

    The way I do this is to try connect to an obscure port number on the localhost at startup.
    if this connection succeeds I assume the app is already running. otherwise the program continues and registers as a server at that port number.
    I actually take this a little bit further by registering a web server at this port (I use the Brazil server), That way if the program finds an instance of itself running it can send a message to the web server and ask the program to do something (like start another window if,for instance you wanted to allow this but only within the same VM).

  • Midp 2.0: is it possible to run 2 timers at the same time?

    elo! jz wondering if its possible to run 2 timers at the same time..

    actually, im going to use the first timer for the character's animation such as walking.. the other timer i'll use for timing the 'walking activity' of the character (let's say, 3 seconds walking).. after 3 seconds, the character will stop and do other activity aside from walking..
    p.s.
    im mentioning about timers in midp 2.0 :)

  • Can i run two widgets at the same time on the same page?

    Can i run two widgets at the same time on the same page?
    Hi
    I have created and published 4 free ibooks and i would to run two widgets
    - a countdown clock
    - a review test
    at the same time on the page. Can i do that?
    Thanks in advance
    Haris

    thanks for your answer. Yes indeed HTML widgets run only full screen (snif snif). I consider this as a "distinguishing treatment".
    One solution  i read !!!!! was to create through keynote a countdown clock, to export to quicktime move and to imported at iBA predefined widgets. of course this is not the solution i need.
    So, in order to have at the same widget and run together a count down clock and a preview test (20 questions)  i must
    1)"hack" the preview widget and insert a countdown clock
    2) create a preview test using iAD.....
    thanks again
    haris

  • Run two VIs at the same time

    Hello!
    I want to know how i can run two VIs at the same time.
    I mean that i want to run a second VI ( N.2) while another VI (N.1) is in
    execution without suspend it (N.1)
    If anyone has suggestions, please help me!
    Thank you very much.
    roby.

    If you say "run a vi", I assume that you have the VI open in LabVIEW, then press the run button. (Some of the earlier answers taks about programmatically calling VIs, which I don't think is the focus of your question)
    You can run as many VIs as you want at the same time. Simply press the run button of the second VI and they will both run.
    Of course you should ensure that they don't use the same resources (e.g. DAQ device, or listen on the same TCP port, etc.) In these cases, the second VI might fail. (Also if the second VI is a subVI of the first VI, you won't be able to run it seperately, because it will be already running.)
    LabVIEW Champion . Do more with less code and in less time .

  • My MacBook is almost two years old and has started running really slow. It gets bogged down when it is running different programs at the same time, like Safari and Pages. It didn't react this way until recently. Any advice would be very welcome.

    My MacBook is almost two years old and has started running really slow. It gets bogged down when it is running different programs at the same time, like Safari and Pages. It didn't react this way until recently. Any advice would be very welcome.

    Launch Disk Utility and select the icon of the internal drive (the drive itself, not the volume icons below it.) Is the SMART status "Verified?" If not, replace the drive immediately. If the status is "Verified," the drive may still be failing. Back up all data, if you haven't already done so. Reinstall Mac OS X, then run Software Update. Test with all wired peripherals disconnected. If it's still slow, you have a hardware problem.
    Mac OS X 10.6 Help: Reinstalling Mac OS X

  • Running concurrent Application Server in same processor

    Has anyone done any benchmark testing with running multiple concurrent application server?
    I need to run 70 Application Servers 10g on the same processors and I need to know if there are any limitations or any best practices?
    Any suggestions or recommendations will be greatly appreciated.
    I have the following requirements:
    Hardware:
    RAM
    64 GB
    CPU and cores and CPU speed.
    C8 Core 1.2GHz UltraSPARC T2 processor
    HD capacity
    2x146GB SAS
    Server Name or type
    SUN Enterprise T5220
    5. Network:
    Network Speed
    5 Containers will share bandwidth of one Gigabit Ethernet NIC, giving theoretical bandwidth of 200Mb/s to each container on average
    Network Card and Network Drivers
    Internal Network Interfaces - Type: 10/100/1000; Quantity: 4
    External Network Interfaces - Type: x8 PCI express Quad Gigabit Ethernet UTP low profile adapter; Quantity: 4
    Software Stack:
    OS version and OS type
    Sun Solaris 10 US

    Thanks for you response.
    For the purpose of our discussion here is what we are looking at:
    There is going to be only a single machine a T5220 Sun Server loaded with Solaris 10.
    1. This single machine will hold 70 concurrent applications server 10g.
    2. Each application servers will have its own dedicated Oracle database in a seperate server.
    Should this architecture hold?

  • Can I run two ipods from the same itunes library/account?

    I have a 20gb photo colour ipod and have just bought a new 30gb video ipod. I need to know whether I can run them off the same library and itunes account or do I have to have separate user accounts?
      Windows XP   iTunes 7.0.1.8

    Yes, you can.
    You can either have multiple user accouts on your computer, or create separate playlists for your two iPods in iTunes.
    This should explain how to manage multiple iPods:
    How to manage multiple iPods using one computer
    -Kylene

  • Can device run multiple encryptions at the same time?

    I have a G5 at home and I'm considering hooking up a new Airport Extreme to enable wirelsss access from my work laptop (WIN PC). I use a Netgear 54MBPS Wireless PC card WG511 v2 which supports 128bit encryption. Should this work with the mac APE and if so can I also run other encryption modes at the same time in future if needed. I will be connecting the APE to my cable modem and using one of the LAN ports to connect to the G5.

    Thanks Don, at this stage I'm only using the Netcomm wireless but maybe in future I might go for the iTV or add another computer.
    Rob

  • How to run two icalenders on the same computer?

    How can i run two separate icalenders on the same computer? I have my own icalender with work, home, etc, and it's totally full. I am now running an artists collective and will publish the collectives icalender on the web. I don't, however, want to mix what will be a pretty busy calender with my own already too full one. Is it possible to run two totally separate calenders on the same computer?
    macbook   Mac OS X (10.4.8)  

    trsv,
    Welcome to Apple Discussions.
    Create two Groups...
    Calendar 1:
    Work
    Home
    etc
    Calendar 2:
    Collective Calendar
    You can then switch which groups you wish to display by activating/deactivating the check mark in the Calendar source window.
    That will also allow you to selectively publish the Collective Calendar.
    ;~)

  • How do i run 2 profiles at the same time?

    i have 2 profiles created but i want to run 2 separate profiles at the same time and i cant figure out how...... :-( Please help!!
    Thanks
    Ron

    Use the -no-remote command line switch to open another Firefox instance with its own profile and to run different Firefox instances simultaneously.
    * http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Bypassing_the_Profile_Manager

Maybe you are looking for

  • New iPod update has messed up my Artist list!!!

    I would greatly appreciate if anyone could help me out, as this problem is causing a great deal of annoyance & frustration. My iPod recently that there was a new update to download, which I did. However, once I did this, this has greatly messed up my

  • Wbs settlement auc

    HI, we are using different currency for company code and controlling area. when we try to settle the wbs element,  we are getting error " no area exists for cost accounting value" thanks you

  • 14" iBook won't boot past Blue Screen?

    Hi, I have in my possession my Sisters 14" iBook G4. It boots with the grey Apple logo but then freezes at the blue screen. I'm guessing it's either the hard drive or logic board, does anyone have a procedure to follow to diagnose the fault? I don't

  • EDM Calculation WB

    Hi Gurus, I am facing a peculiar issue with EEDMCALCWB for Formula calculations. Profile A = Profile 1 + Profile 2. Values maintained in Profile 1 & 2 are from 00:00:00 to 23:59:59 hrs (15 min interval). When I execute the Calculation WB. The values

  • After installation my Photoshop Elements 8 doesn't find pictures or files after December 2007.

    I have installed Photoshop Elements 8. Earlier I had PSE 4. My new version can't find pictures with date after December 2007. What is wrong? All pictures are stored in the same file. Please help.