MARS call when system is down

Hello - I want to set MARS up to monitor my firewall and email server to make sure they're up. If either of these devices appear down to MARS I want MARS to notify me via its modem and analog phone line. I see where you can set up a pager or SMS. I'm using a Verizon Wireless cell phone and I can't find a way to receive a page. SMS won't work if the email server is down or can't get to the Internet. Has anyone else tried anything similar to this? Maybe there is a better way. I appreciate any ideas! Thanks
Update - I'm using version 4.3.6

ISPs usually offer a SMS gateway solution. Usually it has multiple methods to generate/send a SMS msg e.g. email, web URL, manual, scripting API etc.
You could have the MARS send an email as an action for your rule. This address would be the SMS gateway address provided by the ISP. You might also need to tune the Unknown Reporting Device rule if you wish changing its duration/count etc.
Regards
Farrukh

Similar Messages

  • ASE instance not available *** ERROR:ASE instance possibly left running when system went down(system crash?). Notify Database Administrator

    Hi Gurus,
    I made some changes in rz10 for client copy like:
    icm/host_name_full [email protected]
    login/accept_sso2_ticket 1
    login/create_sso2_ticket 2
    icm/server_port_1
    PROT=HTTPS,PORT=443$$,PROCTIMEOUT=600,TIMEOUT=600
    icm/server_port_0
    PROT=HTTP,PORT=80$$,PROCTIMEOUT=600,TIMEOUT=600
    login/no_automatic_user_sapstar 0
    After to make changes effective, i stopsap & startsap.
    But unfortunately db is not coming up. I checked startdb.log it showing
    error as " ASE instance not available
    *** ERROR:ASE instance possibly left running when system
    went down(system crash?).
    Notify Database Administrator."
    Please help us to resolve this issue, i have also added startdb.log for
    your reference.
    Regards,
    Piyush

    Hi Piyush,
    Did you solved this issue.
    We are facing the same issue and only this thread is there in SCN for this issue.
    If you solved this issue,Kindly share the solution.
    Thanks and Regards,
    Mathan A

  • CCMS not sending e-mail when system is down

    I have installed solution manager 4.0 and configured it as a CEN to handle all CCMS alerts from our SAP systems (ECC5.0, BW, etc), these systems all have CCMS agents install and configured. The configurations work no problem. We get automatically notifications on a lots of events -- such as shortdumps, responses time, system log errors, etc. However, we never get e-mail notifications on following two situations:
    1. System down -- when one system is down, we can see it availability is going to 0% on solution manager but we did not get e-mail, I am using MTE class "Availability_SysPercent_ABAP",  it should send e-mail when it below 60%. But it never did even it's 0%. Also tried several other MTEs, but none of them work.  Is this because when system is down, CCMS not work any more or something else?
    2. Job cancel -- I am not what MTE class to use in order to send e-mail when some jobs are cancelled.
    Any help are greatly appreciated.
    Yujun Ran

    I don't know if this is correct but my Execution is "Any server" and it works.
    I assume you copied the same method for your central AR method. The person earlier who mentioned clients may have something. I don't use the CCMS_OnAlert_Email_V2 method so I'm not sure but I think the parameters need to have a user in 000 with an e-mail address in the user master in order to send. I don't think this is any different for the Central AR method which works for you so probably not the problem but double-check. I use the CCMS_Send_Alert_to_ALM_V2 method so my config will be a little different.
    Is SAP_CCMS_MONI_BATCH_DP scheduled in CEN? Mine is in the working client but again, not sure if it matters.
    Does the AR method you have assigned show up in RZ20>>Change mode>>View>>Method allocation?
    Is the send job in SAPCONNECT scheduled, I believe it behaves differently with local and central AR's.
    Message was edited by:
            David Hill

  • DB Adapter call when DB is Down -- No BPEL Instance created

    I have a simple DB Adapter BPEL Process. Works well. Now I shutdown then database. Problem is when I initiate BPEL Process via the BPEL Dashboard, I get the following message:
    Cannot find the specified instance
    If the instance has recently been initiated, the invocation data may not have been delivered to the engine yet. Refresh your browser window or try again in a few seconds.
    I find no trace of this BPEL process, “Flow, Audit and Debug” all show the same message for ever!!!
    Any comments would be appreciated.
    Thanks.

    Hi
    When you initiate the process, the DB Adapter looks for the relevant dehydration store which logs the deployed bpel processes.
    So, you need to have your db up, and also, mention the exact error messages being logged after turning the debug on for activation, messaging loggers in BPEL Admin.
    Cheers
    Anirudh Pucha

  • Maintaining transaction sequence when End system is down

    Dear All,
    <b>Maintaining transaction sequence when systems are down.</b>
    Scenario:
    SAP(IDocs)--> XI --> DB
    DB is up & running, so messages (msg1, msg2) sent by XI have been processed successfully by DB.
    At a particular instance, DB is down and the messages (msg3, msg4) failed at receiver Adapter. With SP15, we got the feature of restarting these messages after a specific period of time. (Let’s say after every 1hour).
    After 5 minutes the DB is up and messages (msg5, msg6) sent by XI have been successfully processed by DB.
    After 1 hour, the receiver adapter restarts the failed messages (msg3, msg4) and they get processed successfully.
    Now the order in which messages have been processed on the DB:
    Msg1, Msg2, Msg5, Msg6, Msg3,Msg4
    As messages have not been processed in the sequence they have come from the source system, this would lead to DB inconsistencies.
    Kindly suggest how we can overcome this in XI. I don't want to use another Message Oriented Middlware(MOM) like MSMQ, MQSI for this.
    Regards,
    Siva M

    Hi Siva,
    Please can you go through this blog which might help you resolve this issue
    /people/vasanthakumar.balasubramani2/blog/2005/12/21/complete-reference-for-idoc-queuing-and-monitoring
    Regards
    Vijaya

  • What method will be called when an javabean terminates?

    Hi,
    I am using a java bean in my jsp application with scope "application". I know that this java bean will be terminated only when the server stops or shuts down.
    I need to cleanup something manually when the server shuts down. Can anyone tell me what method will be called, or that I can override, to clean up?
    Please advise.
    Damien

    Hi,
    I tried to implement the ServletContextListener, the ServletContextAttributeListener and the finalize methods, but I find that all of them are not called when I shut down the server manually.
    I am using an Apache Tomcat 4.0 server. I implement the methods as follows:
    public class RTPMainServer implements ServletContextListener, ServletContextAttributeListener
    public void contextDestroyed(ServletContextEvent scb)
    System.out.println("Server shutdown");
    System.out.println(scb.getServletContext());
    sourceSwitch.Cleanup();
    public void contextInitialized (ServletContextEvent scb)
    System.out.println("Server initialized");
    public void attributeAdded (ServletContextAttributeEvent scab)
    System.out.println("Mainserver added");
    public void attributeRemoved (ServletContextAttributeEvent scab)
    System.out.println("MainServer removed");
    public void attributeReplaced (ServletContextAttributeEvent scab)
    System.out.println("Attribute replaced");
    protected void finalize()
    System.out.println("Mainserver garbage collected");
    Can anyone help? Thanks
    Damien

  • PSE 10 system slows down when adding files to catalog

    I recently switched from PSE 3 to PSE10 and had issues converting the catalog.  I never did resolve those so I decided to start with creating a new catalog in PSE 10.  My first session of adding photos worked fine.  When I restarted the task the next day, I was asked in participating in making the product better by sharing information about my use with Adobe.  I agreed to participate and very quickly noticed that my computer slowed considerably when adding photos from my hard drive.  The process still worked but I experienced a dramatic increase in the time it took for photos to be added (e.g. the cursor spins for a couple of minutes while the task is working).  I went under my account preferences and opted out of the product participation program but the problem has persisted.  I rebooted the computer to see if that would help but it has not.  I have turned off all media analysis and both optimized and repaired my catalog and while this has provided some improvement, there are still instances where the system slows down.  Now it seems that every other folder's worth of pictures (does not matter how many photos) I add causes this delay.
    I appreciate any help anyone can provide in determining why this slow down keeps occuring. 
    FYI, I am running a new Windows 7, 64-bit system with 8GB DDR-3-1066MHz, and 2 TB hard drive.

    Have you also edited the Preferences (Performance) to increase the amount of RAM that PSE can use?
    Do you have many background processes running?  Having a single HDD means that everything running on your computer has to wait in the queue for disk access.
    How many photos are you importing?
    What file types are the photos?
    How large are the photos?
    Ken

  • What are the effects on BW when R/3 system is down?

    Hi BW Experts,
    What are the effects on BW system, when R/3 systems are down for maintenance?
    And what care we need to take towards BW during the down time?
    Thanks in advance.
    Regards
    Sunil.

    Hi Sunil,
    when R/3 system is down the BW daily loads & weekly loads will fail.
    the best solution is you can reschedule the job when R/3 is Up.
    You can cancel the running jobs by going through
    SM37 -- > select that particular job --> JOB (in menu bar) --> select released --> schedule option.
    Mama 10 points evvu mama
    Regards,
    Lakshman Kumar Ghattamaneni

  • I just installed the new mountain lion software on my iMac.  I was currently running Snow Leopard.  My problem is with my mouse.  Now when I scroll down the page it moves in the opposite direction. I checked system S.P. - Natural for scroll feature.

    I just installed the new mountain lion software on my iMac.  I was currently running Snow Leopard.  My problem is with my mouse.  Now when I scroll down the page it moves in the opposite direction. In system preferences I tried checking and unchecking Natural for scroll feature. Movement from side to side works fine.  Has anyone experienced this problem?

    I think this new scrolling behaviour was introduced with Lion. You do get used to it pretty quickly (well I did). Are you sure that deselecting Natural Scrolling in Mouse Prefs doesn't re-instate the previous behaviour, it does here.

  • Raising an Alert ,when the Legacy system is down

    Hi,
      I want to raise an Alert or some thing when my Source Legacy system is down.
    My scenario is  File -to - IDOC .  I'm getting all the XML files from the FTP server. so, My source system is FTP srever . Due to network problem or some other problem  my FTP server is  getting down very frequently. Now i want to send this information to respected persons in a automated way.
    Is there any option that know  the Legacy server status , How can we  know that FTP server is down .
    Please suggest me some solution for this type of prblems.
    Regards
    Jain

    Hi
    You can use BPM and check whether the system is up or nt (using the Connection FM STFC_CONNECTION )
    In case of system errors and application errors you can use alerts.
    System error: Runtime errors, mapping errors , application system is down, Adapter engine is down etc....
    application error: If you are checking some validations , if they fails you can throw alerts.
    For application errors you use BPM.
    You can raise alerts if mapping, receiver determination etc.. fails in the integartion engine. You need to configure alert rules for this. You can go to RWB->Alert Configuration->Where did the error occur? choose integration engine and you can see different error categories and error codes which can be configured using alert rules. Refer this michal's weblog for configuring the same..
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Currently alerts for Adapter framework errors are not supported.
    You can also raise an alerts from BPM for any mapping failures, send step system errors/application errors using fault messages (through exception branch).
    Refer this weblog for configuring an alert in the BPM
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    hope this helps..
    Regards
    Abhishek
    Edited by: Abhishek Agrahari on Jan 30, 2009 7:54 AM

  • Hey, My macbook is giving me a flashing question mark on startup. When I hold down the command key to get to system preferences it asks me for a firmware password, that I did not set! Any ideas on how to bipass this?

    Hey, My mac book is giving me a flashing question mark on start up. When I hold down the command key to get to system preferences in order to help it find the system software it asks me for a firmware password, that I did not set! I also do not have the start up DVD/disk anymore. Any ideas on how to bypass this?

    Contact Apple or an authorized Apple service provider.
    (116347)

  • IMac from 2009, 4 GB RAM. System shuts down when I use safari or make much moves on the trackpath.

    I've got an iMac from 2009, 4 GB RAM. System shuts down when I use safari or make much moves on the trackpath. Use Mavericks, installed Mavericks again on clean system. Problem still exist. What now?

    The 2009 iMaccan take 8 GB ram, while it should run ok with 4 it might be a rather inexpensive test to put in 8 and see if that clears up the problems.  Mavericks is going to use almost 2 GB itself so, unless you are opening a lot of applications, you should get by with 4 GB.  But I would go for 8 and see how it does.

  • Hi there, I just signed up and put in all my information and when I got to the end it said we can't process your request at this time. Does that mean it didn't work or that the system is down right now?

    Hello
    I just signed up to start downloading music on my ipod and when I got to the end it said can't process now. Does that mean that the system is down or will I need to do this all over again?> Thank you

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.

  • Since last week my date & time have not worked on my 5c. The date & time are constantly wrong. I've shut down, doesn't work. Set it automatically, doesn't work. I don't get texts or calls when it's sleeping. Any suggestions?

    Since last week my date & time have not worked on my 5c. The date & time are constantly wrong. I've shut down, doesn't work. Set it automatically, doesn't work. I don't get texts or calls when it's sleeping. Any suggestions?

    try a reset.
    Hold the home & power buttons down simultaneously until you see the Apple logo appear.
    Note: no data will be lost.

  • Retry logic for TCPIP eway, when backend system is down

    I am a newbie in JCAPS. My requirement is to read a text file and then send it contents through a socket connection to backend system. The stream retrieved back from backend system (via socket connection) is to be stored in Oracle DB.
    My Approach:
    I am using Batch eway to read file and then send the contents to a JCAPS queue. I then have a JCD which reads this Queue and establishes connection with socket, the read contents are then written to Oracle.
    I have 2 questions:
    1. Is this approach correct? Do you recommend any optimized/better way (considering the requirement)?
    2. If the backened system is down, wont the messages in queue be lost? How can we make sure that messages are delivered whenever backend system comes up?
    Thanks,

    Rajan,
    You need to pick up a local file and shove it into an oracle database??
    For a reliable system, I would recommend a JCAPS project that consists of:
    2 JCDs, one doing the batch file get and the other doing the Oracle insert
    1 JMS queue between the two JCDs (if your database connection goes down, or if something else goes wrong, your messages will be safe in this JMS queue)
    I can point you towards some tutorials from Sun if you need help on this.
    --Adam                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Nokia Lumia 800 won't update!!!!!!!!!!!!!!!!!!!!!!...

    Yes, I know there are already several topics on this but I'm pretty desperate now. I receive a Nokia Lumia 800 in December for christmas (I know it's not the latest but my family doens't have all that much money). Since christmas day I have been tryi

  • I need a script IDM (internet download manager) for Firefox Version 6

    I installed Firefox 6, very perfect, but when I unload a file, the script that it was using for Firefox 5 is not compatible. That someone might obtain? '''Thank you very much'''

  • Stacked image hidden from search

    Today I was missing an image from the catalogue. I knew it had to be there but I couldn't see it. I tried to import it again, but the import dialogue indicated that the image had already been imported. Yet, I couldn't see it in the folder where it sh

  • Mail outage

    on 17th March apparently there was a problem for some   mail addresses : as shown on apple support system status under icloud: Mail -  2:00 PM - 3:15 PM  - 0.05% of users were affected Users may have experienced delays sending and receiving messages

  • Aurora will not boot

    I hope this is the place to post. When I try to load Aurora, I get the following message: XML Parsing Error:undefined entity Location:chrome://browser/content/browser Line Number 540, Column 9: In red italic text is says: <button default="none" _ _ _