How to create an alert to inform me when weblogic services are down

how to create an alert to inform me when weblogic services are down
Thank you

Hi,
This can be done using Oracle Enterprise Manager grid control. Also you can do it using wlst scripting. Please find below url for details regarding this.
http://middlewaremagic.com/weblogic/?p=5838
If this helps you please mark.
Thanks,
Kishore

Similar Messages

  • How to configured mail Alerts in OEM 12c for WebLogic Servers up/down status?

    Hi,
    I am new in Oracle Enterprise Manager so please tell me How to configured mail Alerts in OEM 12c for WebLogic Servers up/down status?
    Thanks,
    Sagar Pawar.

    Hi Sagar Pawar ,
    First you need to set the email notification :
    Kindly review :
    12c Cloud Control: Steps to Configure Incident Rules to Send Notifications or
    Manage Events / Incidents / Problems (Doc ID 1368036.1)
    12c Cloud Control: Steps to Configure Email Notification Method (Doc ID 1368262.1)
    Regards
    Ansari

  • How to create Oracle Alert without metioning the email address in To Field

    Hi,
    I just wanna know that how to create Oracle Alert without metioning the email address in To Field.
    Please help thanks.

    If you don't enter anything in the email field, the alert email won't go out.
    If you just want to test or if you plan to use the history, you can put a non-existant email there.
    The alert will fire anyway.
    Hope this helps,
    Sandeep Gandhi

  • How to Create  and use of Coherence servers in weblogic serevr 11g (10.3.6)?

    how to Create  and use of Coherence servers in weblogic serevr 11g (10.3.6)?

    See the below discussion
    How to create and use Webservice controls using WSDL in weblogic portal10.3
    Thanks,
    Venkat Sarvabatla

  • How to get the health , performance information and about the services run on devices that have connected to the system center?

    Hi All,
    I want to know how to get the health , performance information and about the services run on devices that have connected to the system center to my c# application. Also I need to know about the information of databases that have connected to system center.
    I will appreciate your feedback
    Thank you

    Hi,
    You can configure service monitor for the required service on the server
    refer below link for how to configure service monitoring
    http://www.bictt.com/blogs/bictt.php/2011/03/17/scom-monitoring-a-service-part3
    You can use SCOM SDK to connect to the scom server using c# and get required information
    http://msdn.microsoft.com/en-us/library/hh329086.aspx
    you can find the database in below registry path on management server
    HKLM:\SOFTWARE\Microsoft\Microsoft Operations Manager\3.0\Setup\DatabaseName
    Regards
    sridhar v

  • How can find the location of my iPad when location services is off?

    How can find the location of my iPad when location services is off?

    If you're wanting to know if you can locate your iPad though iCloud, without Find my device enabled and without power, you won't be able to locate it.

  • How do you make it not so sensitivity. when turned off set down it comes back on or when working out shirt brushes ipod and it changes music

    how do you make it not so sensitivity. when turned off set down it comes back on or when working out shirt brushes ipod and it changes music

    You didn't say which model of iPod Nano that you have, but generally there should be a lock setting, that can be turned on or off, to prevent accidental changes in settings. And, there is also a setting to turn on or off a feature called, "Shake to Shuffle." It allows you to change songs by just shaking the iPod.

  • How to create event alert for particular column get updated

    Hi every one.... plz help me
    How to create oracle event alert when particular column is update. plz help me.... Acutually i need email alert when ever list price for an item column in pricing table get updated+... plz. Its urgent.

    Oracle Event alert is based on update of specific table and not on specific column in table.
    However you can create a trgigger on table which is based on updat of column. And in this trigger you can send a mail using plsql.
    HTH

  • How to create an alert at the list item of List box in vbs/c sharp

    Dear All,
    I need to know how can we create an alert, or a message on the execution of the last item in the List box.

    What do you mean by "on the execution of the last item in the list box"? Do you mean when that last item of a ListBox is selected? If so, you could use the following code:
    Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) _
    Handles ListBox1.SelectedIndexChanged
    Dim lb As ListBox = CType(sender, ListBox)
    If lb.SelectedIndex = lb.Items.Count - 1 Then
    MessageBox.Show("Last item is selected")
    End If
    End Sub

  • How to create an Alert Service using Oracle9i wireless?

    Hi All,
    I wanted to create an alert based service on oracle9i...but i am unable to figure out from where should i start doing..i am under basic confusion of how this whole system actually works..how to configure my service..can any body suggest me...
    thanks in advance
    krishna

    You can use the web enabled portal of ASWE. This can be found in one of the folders:
    oracle home/panama/server/portal/Login.jsp
    oracle home/panama/server/papz/
    please add an alias to your apache webserver so that you can run the Login file. Once your are logged in you can add alert addresses and alerts.
    Be aware that you need to configure an sms server if you would like to create alert services for mobiles. You can also add an email adress.
    Good luck
    Thomas

  • How to Create an Alert on a V$Lock Table

    Hi Gurus,
    Can anyone help me out on. how to create an event alert on locks table (V$LOCK). so that whenever a table is locked , i can send the email notificaiton to the user regarding the locking history.
    any approach is highly appreciable.

    Hi,
    as event alerts in eBS in fact are based on trigger concept and it's not allowed to
    create triggers on objects owned by SYS i don't think that this will be possible.
    Regards

  • How to create links and display information dynamically depending on search

    hi everybody
    I have a search textbox in which the user has to give the search string like date of birth. For the search string , records will be retrieved from the database. The number of recordds will vary. Only the names of the corresponding person has to be displayed. Each one will have a hyperlink and on clicking the hyperlink the other information like name,address should be displayed.
    I have displayed the names in JSP. How to create a link for each name and display the other details corresponding to same person? The number of records retrieved will vary depending on the date of birth. Thanks in advance.

    Hi,
    what i had done in my project was, getting the collection of results for the search query i.e By giving the date of birth, you will get the matching names as collection and iterate this collection like
    <%
    Collection nameCollection = (Collection) request.getParameter("NameCollection");
    Iterator ite = nameCollection.iterator();
    String name = "";
    for (int i = nameCollection.size(); i > 0; i--)
    name = iterator.next();
    %>
    <A HREF = "http://MyWebSite/destination.jsp?name = <%name%> "><%name%> </a>
    <%}%>
    For the above code, in Href i am using name in two places. one is for display. i hope you dont have any problem in this
    Another one for getting the information about the particular name. use request.getParamter method in the destination Jsp and do one more DB call by using the input parameter.
    Note: This is working only unique Name. otherwise use HashMap for getting the userId and Name. By passing the userId in the backend we can get the information.
    I hope this will helpful to get out of the issue
    Regards
    Balakrishnan.R

  • How to create iview alerts?

    I have imported iview alert templates into the SAP enterprise portal. The page is showing no error. But how can I make the alerts work? I have tried to do publication into inbox of SAP users. But that does not seem to create an alert in the iview alert. What is this alert refering to?
    Is it related to KMC? I have not yet installed Knowledge Management Collaboration of integration kit.
    Thanks for any ideas!

    Hi Fei,
    the alerts are those that are being created in Crystal Reports. You would have to create a Crystal Report object with Alerts and schedule the report. If then the data triggers these alerts they will be surfaced in the iView
    ingo

  • How to create an Alert for customer birthday

    Hello,
    We need to create an alert on the context area - alerts area - when we meet a customer that have a birthday today.
    Does anybody know how to do it? steps to do it?
    thanks in advance
    Sara

    Hello Sara,
    You can change either the colour of the alert that is displayed in the first row (first alert) or the second row (second alert) or both.
    You will have to modify the stylesheet for this. Here are the instructions.
    (I assume want a red coloured alert)
    1. Open BSP Application CRMCMP_IC_FRAME in SE80.
    2. Open for Change MIMES/stylesheets/contextarea/<SKIN>/crmcmp_ic_frame_contextarea.css in Notepad (or any text editor)
    3. Search for the string '.firstalert' (without the single quotes)
    4. For red coloured top alert, change the above string to '.firstalert' (without the single quotes)
    5. Search for '.secondalert' and replace it with '.secondalert'.
    6. Save the file and quit notepad.
    7. Clear the web browser cache and the ICM Cache (tx. SMICM=>menu Goto=>HTTP Server Cache=>Invalidate=>Global In System)
    8. Start ICWebClient and send an alert.
    Regards,
    Kiruthika

  • How to create an alert in Oracle Applications

    Can anyone help me, I want to be able to create an alert (not email) that will pop up on the screen of Oracle Applications 11i
    to remind everyone to change the passwords in xx days. I know there are alerts that send email, but people hardly check their emails
    promptly in my organization so I wish to use forms to create an alert that will pop up on the screen.
    Thanks.

    I think there is some confusion here! The solution that has been outlined is the 'standard' way of achieving the result that a user has to change his/her password every xx days. BUT, this will only prompt them when they try to log in AFTER the xx days has expired.
    I think you are asking for a method of alerting the user xx days BEFORE the password is due to expire, like Windows for example.
    I am not an expert in technical changes to forms (e.g. forms personalisation), but I thought it might help if I clarified what I think you are asking. Others may have the actual answer!
    An alert would possibly achieve what you want, but consider this... if users don't read their emails, and they only log in occasionally, what use is alerting them on the system going to be? They will still only see the alert when they log in, and that may already be after the password has expired!
    If my interpretation is wrong, please update this thread so I don't confuse anybody.
    Regards
    Tim

Maybe you are looking for

  • RFC in ECC6

    Hi Gurus, Is it possible to call an RFC using .NET in SAP ECC6? If so can you teach us how? Thanks and Regards, Andre

  • Asset in PO

    I have created an asset PO with account assignment category as "A", then i released the PO in ME29N. Now when i'm doing GR it is asking for .... Red Errors Please enter Excise Invoice number and Excise Invoice Date Enter Chapter ID for the material W

  • ITunes gift card money disappeared?? Help!

    So I was trying to rent a movie off my desktop Mac computer which already had $15.00 gift card money on there. The money was next to my account name and everything! When I tried to rent the movie, a window popped up telling me to "authorize the compu

  • Error in GP CO(comp interface controller code) implementation

    Hi Frndz.. I have 3 quires on GP n itz configurations those 1)Am developing an GP callable Object , am following this doc https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0957cb6-5103-2a10-6d9d-a0a4d68c8bf1 In the Interface compon

  • Interactive Reporting export being truncated

    We have a number of queries posted that automatically download large text files. At random times, we will see the file is missing some of the data at the end of the query. Sometimes the data is stopped in the middle of a record. If I manually export