Finding out if a particular WL Server in a cluster is alive ?

Is there a way to find out from my code , if a particular WebLogic Server
          part of a cluster is alive ?
          

Yes. In a startup class (or init for a servlet that is set to autoload)
          register the server name or address as a clusterable key in JNDI. That key
          will be there as long as the server is alive.
          Cameron Purdy
          Tangosol, Inc.
          http://www.tangosol.com
          +1.617.623.5782
          WebLogic Consulting Available
          "JSB" <[email protected]> wrote in message
          news:[email protected]..
          > Is there a way to find out from my code , if a particular WebLogic Server
          > part of a cluster is alive ?
          

Similar Messages

  • TS4002 I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed but when searching I can't find same being used. How do I find out where that particular email adress is use

    I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed When searching I can't find same being used anywhere. How do I find out where that particular email adress is used so I can delete it there and use it for my new apple-id?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    Also
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.

  • How to find out whether a particular changed by some user

    Hi gurus,
                I am just trying to figure it out how to find out whether a particular user has changed a particular table or not. In other words table changes history. If any of you know about it please let me know.
    Thankyou
    Jason

    Jason,
      Ajay mentioned changes to Table not for Data. If you are looking for Changes to Table Data... you need to check System Log SM21. check for that perticular period.
    Nagesh Ganisetti.
    Assign points if it helps.

  • How to find out the info regarding Solaris, server hang or shutdown.

    Hi
    As I am handling the Solaris 9 Server remotely.
    As in last week the server has stopped to respond suddenly, we have tried to ping, ssh which was not working. As ultimately we have asked the Data Centre Team to hard reboot the same, to resolve the issue.
    In the same ref I would like to know how we come to know the reason, what caused to reboot the same, i.e . any log file, etc..
    I have check /var/adm/messages, but not found any detail for the same.
    Thanks
    Rajan
    I

    No core files?
    No hope for an answer.
    As you learned in the other Internet forum.
    http://www.linuxquestions.org/questions/solaris-opensolaris-20/how-to-find-out-the-info-regarding-solaris-server-hang-or-shutdown.-621500/
    To get such corefiles analyzed,
    you would need to use your service contract and log a support case with Sun.
    They have the special software tools to do that.

  • How to find out what version of DB Server was installed (32bit or 64)?

    Hello
    Maybe somebody would know if there is any way
    to find out what version of DB Server was installed (32bit or 64)?
    I need this information when downloading patches from oracle metalink.
    PN

    connect as sysdba using sqlplus and you'll get similar banner:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    This shows you are running 64 bit version.
    OR
    query the v$version (select * from v$version) you'll get the same as above.

  • HT1977 How would I find out why a particular app, In-A-Visit, was removed from app Store?

    How would I find out why a particular app, In-A-Visit, was removed from app Store?

    Ask the app developer. Maybe they will tell you why... Apple will not disclose the reason to you unless you are the developer. It's entirely possible that the developer removed it.

  • Find out products installed on Oracle server

    Hi
    Can someone tell me how to find out whether Transparent Gateway, Change Management Pack, Advanced Security and Programmer is installed in server or not. It is not available by querying v$option view

    The inventory is kept in an XML-based data set, totally outside of the database. It is not visible to the database. Nor should it be part of the database ... that would lead to a Catch-22
    The 'deinstall' access is simply an access to the inventory which then allows additional functionality.
    OPatch gives us the patch inventory. OUI gives us the whole inventory.
    Why Oracle did it that way? ... your guess is as good as mine.

  • How can i find out how much bandwidth my server has?

    I have a mac pro running os x leopard server and im using this for my companies server. How can i find put how much bandwidth the server has?
    Thanks Sam x

    What you are asking really doesnt mean much. Well, it actually means too many different things:
    either Available network bandwidth: The internet, or local area connection (where are your clients?)
    or Available network bandwidth: How much data will your ISP allow you to transmit as part of your plan?
    Can you be more specific?

  • HT201472 Is there any way how to find out where a particular device was when it last went online if longer than 24 hours ago?

    One Mac Book Air was stoilen frm me, I can still see it on Find my Iphone and can see that it has been renamed. The computer was offline for longer than 24 hours, so I am wondering if there is any way how I can find out it's last online location?

    No, you cannot find out where the computer has been. Find My Mac only shows you were the computer is right now if it is online.
    I strongly recommend you change all your internet passwords immediately, notify the police (do not try to recover your MBA yourself), and your insurance company so you can get reimbursed and buy a new Mac. Once you have done all this go back to Find My Mac and click the "Erase" button.

  • How to find out available CPU and memory in hyper-v cluster

    Hi,
    Is there any way to find out how much vCPU(in total) and Memory (in total)has been used by VMs' in windows 2012 hyper-v cluster? And how many vCPU and Memory available to deploy new VMs'?
    Thanks,
    Umesh.S.K

    Hi Umesh.S.K,
    Please try this (I added something ):
    foreach ( $node in ( Get-ClusterNode ))
    $processors = gwmi -ComputerName $node -ns root\virtualization\v2 MSvm_Processor
    $NumLogicalCPUs = @($processors | Where-Object{ $_.ElementName.toLower().Contains( "logical processor") }).count
    $NumVirtualCPUs = @($processors | Where-Object{ $_.ElementName.toLower() -eq "processor" }).count
    $nodememory = (Get-WmiObject -ComputerName $node Win32_PerfRawData_PerfOS_Memory).AvailableMBytes
    $sum=0
    get-vm -computername $node | foreach { $sum = $_.memoryassigned + $sum}
    $xx = $sum/1000000000
    write-host "on Host $node VMs occupied Memory $xx GB"
    write-host " Host $node : AvailableMemory $nodememory MB "
    Write-host "Host $node : CPU utilization $NumVirtualCPUs of $NumLogicalCPUs"
    Best Regards
    Elton Ji
    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.

  • How to find out logs related to which server, If i have 2 WFE's in the farm. How to configure logs path?

    Hi,
    I got this doubt, when searching logs on the servers. I have 2 WFE's in my farm, I got an error from enduser. So in which WFE server i need to check the logs.
    How to configure logs path. Is it is possible to specify logs path on our own instead of 14 hive folder.
    Badri

    That is a really bad idea, especially with idle disconnects and other unreliability of CIFS.
    You should instead check out the command
    Merge-SPLogFiles which will allow you to combine ULS logs from multiple servers into a single file.
    You can certainly specify your own path, but the path must be available on all servers. For example, if you specified D:\Logs, D:\Logs must exist on all SharePoint servers within the farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to find out application status on a server?

    Hi,
    How can i find whether the application is running or not on specific system and port in core java?
    //Gupta.

    By using the JDK's jConsole tool. YOu can connect to any JVM and display all the threads, memory consumption, etc. Just inspect the running threads and show if something blocks.

  • How to find out the accounts for a particular IBUs?

    Hi,
    I want to find out accounts for particular accounts.
    Regards,
    Jaya

    Hi,
    If you know the sales order numbers then u need to go VBAK table and take VDATU(requested delivery date) for the 2 sales order and find out the difference between these 2 dates by using the function modules.
    -Prasanth

  • How to find out ASE backup server?

    As backup server is a separate service. how to find out if ASE engine has backup server or not?
    Or how to get into backup server and find out what ASE this backup server is working for?

    Just to add a little to Gek's reply, addressing your second question:
    Or how to get into backup server and find out what ASE this backup server is working for?
    That you can't really do.  A backupserver can be used by multiple ASE servers and doesn't maintain any permanent registry of servers it is used by.  From a connection to ASE, you can do a SYB_BACKUP....sp_who remote procedure call to get some information on current activity on the backupserver, but the information is pretty limited.
    1> SYB_BACKUP...sp_who
    2> go
    spid        status     loginame                       hostname     blk cmd
               1 sleeping   NULL                           NULL         0   CONNECT HANDLER
               2 sleeping   NULL                           NULL         0   DEFERRED HANDLER
               3 runnable   NULL                           NULL         0   SCHEDULER
               4 runnable   NULL                           REL157SP1xx* 0   SITE HANDLER
               6 running    sa                             bret-sun2    0   NULL
    (5 rows affected)
    My ASE's name is REL157SP1xx_bret_sun2, so you aren't even getting the full name of the ASE backupserver is currently working with.  I had just booted the backupserver, so the Site Handler was started to handle the RPC call, it doesn't even mean that server had ever dumped a database.
    While you can connect to the backpserver directly with a client, the backupserver does not have a command language processor, so any commands you send directly to backupserver (as opposed to rpc calls) will only get the response "no language handler installed", like this:
    bret-sun2% isql -Usa -P -Srel1572nb_bret_sun2_back
    1> select @@version
    2> go
    No language handler installed.
    That is why the (polite) way of shutting down a backupserver is to issue
    "shutdown SYB_BACKUP" from a client logged into an ASE.  (the impolite
    way is to use an OS kill command against the backpserver process).
    -bret

  • How to find out if a client is in use or not in any ABAP instance?

    Hi,
    I would like find out if a particular client like 100 or 800 or 200 etc is being used by some one or not in an ABAP system, if the client is not in use for a long time then we are planning to remove the client from Sandbox. Is there any TCODE which gives this information, can you please let me know?
    Thanks.
    Jennifer

    Hey Jennifer,
    try AL08 then. It provides a list of users/clients listed per server of the landscape, this gives you an excellent overview.
    SM04 will show you users logged on that particular client and its respectives t-codes (you will need to log on each client to view this data)
    Best regards,
    Tomas Black

Maybe you are looking for

  • Gallery to webpage (not mobileme)

    I could have sworn that I asked a question similar to this and saved the answer but it was prior to Apple changing the style of these support communities and I can't find it now (I went thru all my stuff and history).  Maybe it wasn't my quesstion bu

  • After sync Outlook does not start anymore

    PC, WIN 7, 64 Bit, Outlook 2010 After installing icloud and synchronizing outlook will not work anymore. Message: Outlook has a Problem and cannot start. Analyzing Problem has no result. I will be informed if there is a solution is said. Repairing Ou

  • Cannot find message resources under key org.apache.struts.action.MESSAGE ?

    Hi All, I am getting the following error.. while running a simple application in struts. Cannot find message resources under key org.apache.struts.action.MESSAGE ? As I have searched in google but could not find the concreate example so please help a

  • Adobe CS6 Master Collection for Mac licensing

    I installed Adobe CS6 Master Collection for Mac, licensed it and updated it on twenty iMacs.  This a University computer lab with many users.  Sometimes Adobe software starts in trial mode as if the license key hasn't been entered.  What could be the

  • HELP! Converted my videos to play on ipod & popup keep saying it wont work

    I am so upset because I spent three days converting all my videos to work on my ipod and the pop-up say that "Blank" video in your Library cant be played. I have no idea how to get it to work. Please give me some answers. Thank you