How can I correlate an Java instance number with a server id?

I have 6 Web App Server running ABAP and the JAVA stacks. I can log into the Central Instance server and run /usr/sap/<SID>DVEBMSG00/j2ee/configtool/configtool.sh and bring up the GUI interface to "see" all the instances and their variables. I don't see an easy way to trace back the Java INSTANCE to the physical server's hostname.
Is there a central repository to correlate a Web App Server Java instance number to the actual hostid/hostname of the target server? I realize I can log into each Web App Server and look at the /usr/sap/<SID>D00/j2ee/cluster/instance.properties and find the Instance number, but I was wondering if this information was held in the SAP Central instance or SAP Database somewhere.

Hi Timothy,
The instance ID used for the JAVA cluster is generated at installation time, and -amongst other things- takes into account the time it was generated. We installed two instances in parallel (on different hosts) and ended up with almost the same instance ID.
Because this can be very confusing, we asked SAP if this was changable - in theory it is only an ID which could be changed as long as it is updated on all places the identifier is stored - but SAP indicated that that is not possible, nor supported. We ended up with a diagram of the system architecture with all the identifiers on our desk.
Note that in the config tool - all instances are displayed with their system instance number. If you were to install a new system it might be usefull to install all instances with different instance numbers so you and distinguish more easily between them.
Hope this helps,
Cheers,
Walter

Similar Messages

  • How can i dial up a phone number with iPad?

    How can i dial up a phone number with iPad?

    Smartgroschen is for free calls and text chatting. You can also use chat with video clips, pictures and your current position on the map. Smartgroschen is an instant messenger that allows you to connect with any Smartgroschen-user worldwide for free.At start you get 0,50 euro.

  • How can I set range value in number in sql server

    Hello,
    I am using sql server 2012. I  want to display range value in int column. Suppose I have a table which contains
     columns called ID and dueDays. In dueDays there is data from 1 to 255 and slab range is 
    [7,15,30,60,150,250].
    Now I want to display range as per duedays, suppose from 1 to 7 , it should display 7.
    1-7   =
     7
    8-15  = 
    15
    16-60  = 60
    61-150  =150
    151-   151-250  =250
    >250 = >250
    Here is code snippet for create table and insert record.
    Create Table Tmp
    ID int ,
    DueDays int
    GO
    DECLARE @I INT = 1
    WHILE @I <=255
    BEGIN
    INSERT INTO TMP VALUES (@I,@I)
    SET @I=@I +1
    END
    Please also see attached image of required result.
    Prem Shah

    hello Jingyan,
    Thanks for reply but it doen't work in all case suppose range value is not exists in tmp then it is not working.
    delete following record and check expected result is wrong .
    delete from tmp where id in (3,7,15,30,60,150,250)
    Prem Shah
    Here is updated version:
    Create Table Tmp ( ID int , DueDays int)
    GO
    DECLARE @I INT = 1
    WHILE @I <=255
    BEGIN
    INSERT INTO TMP VALUES (@I,@I)
    SET @I=@I +1
    END
    delete from tmp where id in (3,7,15,30,60,150,250)
    --select * From Tmp
    declare @range varchar(100)='3,7,15,30,60,150,250'
    ;with mySplit as (
    SELECT distinct S.a.value('.', 'VARCHAR(100)') AS splitVal
    FROM
    (SELECT CAST (N'<H><r>' + REPLACE(@range, ',', '</r><r>')+ '</r></H>' AS XML) AS [vals] ) d
    CROSS APPLY d.[vals].nodes('/H/r') S(a)
    ,mycte as (
    SELECT a.id, iSNULL(a.id,splitVal) id2, splitVal FROM tmp a
    full outer JOIN mySplit as s ON Cast(splitVal as int)=a.DueDays)
    --select * from mycte
    Select id, ISNULL(rng ,255) rangeValues from mycte m
    outer APPLY (SELECT TOP 1 splitVal FROM mycte
    WHERE id2 >= m.id2 AND splitVal IS NOT NULL
    ORDER BY id2 ) d( rng)
    WHERE id is not null
    Order by id
    drop table tmp

  • How do I communicate a Java Card applet with a server?

    I'm new to Java and Java Card and currently developing a smart card system. I'm not sure what to use on my applet or server, JCSystem or SecureConnection or something else?
    If I'm writing a server application, then how do I install it so that I can simulate it with cjre?
    Thanks in advance.
    p/s: Connection is using TSL.

    The flow is like this:
    Java Card --> POS terminal -> Server
    Yes. I'm using JC3.
    Here's what I've achieved so far using SocketConnection
    SocketConnection sc = (SocketConnection) Connector.open("socket://localhost:50007");
    InputStream is = sc.openInputStream();
    OutputStream os = sc.openOutputStream();
    os.write("Hello world!".getBytes());
    is.read(buffer);
    os.close();
    is.close();
    sc.close(); Edited by: andirady on Dec 4, 2012 11:59 PM

  • How can we calculate no. of instances in a java program ?

    Hi,
    I want to know that
    How can we calculate no. of instances in a java program ?
    Actually I just want to calculate number of live instances in a program at any time...
    Thanx in Advance
    Vijay

    Been asked a few times in this forum.
    Try having a search.
    One way, in brief, is to instrument your classes so that constructors update a per-type counter, and enqueue a PhantomReference for the instance.
    When you pop from an associated ReferenceQueue, decrement the counter for the no longer reachable type.
    Once you have this, you can query instance counts per type, or globably etc.
    We maintain a model which can be remotely queried - and display results over time using JGraph. Gives a fairly non-intrusive way to spot and narrow down the cause of memory leaks in a large application.

  • How Can I Use Multiple Weblogic Instances in a Single OS

    Hello Everyone,
    Actually I have to install Some different applications. Few of them need weblogic 10.3.6 and others need 10.3.4. The OS am using is Oracle  Enterprise Linux 5.
    Now I am able to install 2 separate(One of 10.3.4 and 10.3.6) instances with two different users,In two different directories.
    I have installed the weblogic 10.3.6 version with a user webadmin and installed node manager with port 5556. This is working fine.
    The main problem here is :
    In the second instance (10.3.4 ) installed with a a different user and gave the port number to NodeManager as 1600 and its not getting started. Its throwing error and also after some errors in the terminal am able to see that its reverting to port number 5556 only.
    What might be the issue?
    I have to install 2 different versions of weblogic in a single Server. But am failing with NodeManager. What Can I do to have multiple weblogic instances with multiple versions in a single server ?
    Can anyone suggest a resolution for this please ?
    Thanks in advance.

    Pl do not spam these forums with multiple posts - How Can I Use Multiple Weblogic Instances in a Single OS

  • I need to install photoshop cs4 extended from a disk to a new computer because my old computer had a hard drive crash. There is no serial number on the back of the case.  How can I obtain a usable serial number?

    I have to install Photoshop CS4 extended on a new computer from a disk because my old computer had a hard drive crash.  There is no serial number on the back of the case.  How can I obtain a usable serial number?

    Find your serial number quickly
    You can activate software without following up and registering it... at least that was the case in the past.  The serial number is normally located on the disc case or a box inside the main box.  If you did not purchase the disc from Adobe then it is possible you would have dealt with a redemption code, in which case it would have been up to you to keep a record of the serial number, especially if you did not follow up and register the software.

  • I Don't have access to the previous computer on which i installed the photoshop, the m bord is broken and i have a new computer, how can i reinstall on my new comp' with my serial number?

    I Don't have access to the previous computer on which i installed the photoshop, the m bord is broken and i have a new computer, how can i reinstall on my new comp' with my serial number?

    You are allowed to have two machines with activated installations, so if you only had one installation, you still have the option to install on a second without doing anything further than that.  If you originally downloaded the purchase thru Adobe then you might find a download link available in your Adobe account online.  You can also download thru the following page if you can find your version:
    Download and Installation Help -
    https://helpx.adobe.com/download-install.html
    You can have the first installation deactivated to free up the activation and have it available for another machine again as well.  YOu need to contact Adobe Support thru chat for that.  For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • How can I use Seeburger java functions on SAP XI's user defined functions?

    Hi All,
    As my title implies; how can I use Seeburger java functions on SAP XI's user defined functions?  I've tried searching over the net in tutorials regarding this topic but I failed to find one; can someone provide me information regarding my question? thanks very much.
    best regards,
    Mike

    Hi Mike !
    You should check your documentation about which java classes you need to reference in the "import" section of your UDF. And also deploy the java classes into the java stack or include them as a imported archive in integration repository...it should be stated in the seeburger documentation.
    What kind of functions are you trying to use?
    Regards,
    Matias.

  • How can I share a *.java source file across multiple projects in NetBeans?

    I'm sure this simple and a pretty common operation but how can I share a *.java source file across multiple projects in NetBeans? Right now I keep cut, coping and pasting the same source file between multiple projects to re-use the same code. But I could I make this source file a library file or something like that so that I could access it from any project. I assume this would be a generic operation but I mentioned NetBeans for clarity. Thanks.

    fiebigc wrote:
    I know I mentioned NetBeans but I'm most interested in the generic method for creating a library of source files that I can call into whatever program I am developing. I've done such a thing in C using header files and such but I'm trying to get a direction on how this is accomplished in Java. I'm sorry if I could edit the title I would. If anyone wants to be specific about NetBeans I welcome that too.
    Edited by: fiebigc on Jun 20, 2008 5:57 PM
    >I know I mentioned NetBeans but I'm most interested in the generic method for creating a library of source files that I can call into whatever program I am developing. I've done such a thing in C using header files and such but I'm trying to get a direction on how this is accomplished in Java. I'm sorry if I could edit the title I would. If anyone wants to be specific about NetBeans I welcome that too.
    Edited by: fiebigc on Jun 20, 2008 5:57 PM
    Create a class library.
    Write your code, compile it to .class files, put those class files in a .jar file and include the jar file in the classpath whenever you want to compile a project against it.

  • HT3529 How can I remove my old phone number from my APPLE ID.

    How can I stop my old phone number recieve my iMessage of my apple ID.

    Turn off imessage in settings/messages, turn off Facetime in settings/facetime, delete the cloud account in settings/icloud and log out of your Apple ID in settings/itunes and app store.
    Delete the phone from your profile in https://supportprofile.apple.com if you registered your phone there

  • TS3367 How can I change my facetime phone number on my ipad? my apple id number is correct, but it is still showing up wrong in facetime.

    How can I change my facetime phone number on my ipad? my apple id number is correct, but it is still showing up wrong in facetime.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • How can i create a new instance on unix

    Hi,
    How can i create a new instance(instance only) on UNIX and how can i mount my database with this new instance.

    udayjampani wrote:
    Hi,
    How can i create a new instance(instance only) on UNIX and how can i mount my database with this new instance.1) Define Instance in your way!!?
    If you simply create a pfile and startup nomount with it, then -in theory- you have an instance running ( this method is used e.g. for restoring a rman backup )
    2) You can't. Database files are bound to a certain instance. What you can do is recreate an instance with e.g. a different name, using the scripts generated by a 'alter database backup controlfile to trace;' command
    Cheers
    FJFranken

  • How can I create a java.awt.Image from ...

    Hi all,
    How can I create a java.awt.Image from a drawing on a JPanel?
    Thanks.

    JPanel p;
    BufferedImage image =
        new BufferedImage(p.getWidth(), p.getHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = image.createGraphics();
    p.paint(g);
    g.dispose();

  • How can I find out the apn number of the battery without having it?

    I dont have the battery of my iphone 5 anymore but how can i find out the apn number of the battery? I would like to change it but i need to know the apn number to choose the right battery.

    Apple does not provide any user-serviceable parts (other than accessories or sometimes a SIM card tray).
    Therefore, there are no legitimate iPhone batteries available for sale anywhere.
    Anything you find will either be salvaged, counterfeit, or stolen.

Maybe you are looking for

  • Doubts with WD ABAP

    Hi carmen ,      The coding you have written above can be generated through code wizard easily. Just you need to click the code wizard button . just see the below link :- [http://help.sap.com/saphelp_tm70/helpdata/en/3b/29933f09a5fb47e10000000a114084

  • File naming issue/workflow help needed...

    I shoot weddings and am continually frustrated with A2's file naming. Any suggestions or help would be greatly appreciated as it's killing my workflow. THE GOOD: I import the images with the file name I want and the metadata I want. I then edit out,

  • Send one mail for multiple list item update

    i have 3 lists storing customer details which are displayed in a page. i need to send mail whenever there is customer details update(any or all 3 lists). should send only one mail per customer details update(not per list item update).Please advise ho

  • After updating Adobe reader, MS explorer comes up when I try to open fire fox.

    After installing the laterest Adober reader upgrade, I can only get MS explorer to come up when I try to open fire fox. I can no longer open the fire fix start page.

  • Report rendering in Flash and SVG format

    Hi everybody, two questions: it's possible report rendering 1) in Adobe Flash (SWF) format? 2) and in SVG format? Thank you.