<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Email alert when server services goes down in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638445#M234012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sergey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please provide detail solution. We are looking for alert at failure or service. We do have exchange email setup on the server. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jun 2014 09:50:02 GMT</pubDate>
    <dc:creator>Troy1</dc:creator>
    <dc:date>2014-06-17T09:50:02Z</dc:date>
    <item>
      <title>Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638441#M234008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please provide step by step process on how to configure QlikView version 11 to alert a QV Admin when one of QlikView services goes down. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there such as way, is it possible.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Is there a third party app that does the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2014 21:06:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638441#M234008</guid>
      <dc:creator>Troy1</dc:creator>
      <dc:date>2014-06-03T21:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638442#M234009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone with this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2014 21:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638442#M234009</guid>
      <dc:creator>Troy1</dc:creator>
      <dc:date>2014-06-16T21:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638443#M234010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can simply get the list of running qlikview services with&lt;/P&gt;&lt;P&gt;NET START | FIND "Qlikview"&lt;/P&gt;&lt;P&gt;You can do it separately for each service by schedule (every 5 minutes?) and sent a message with command line with vbs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;Dim objMail&lt;BR /&gt;&lt;BR /&gt;Set objMail = CreateObject("CDO.Message")&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;objMail.From = "Me &amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Me@Server.com"&gt;Me@Server.com&lt;/A&gt;&lt;SPAN&gt;&amp;gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objMail.To = "You &amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:You@AnotherServer.com"&gt;You@AnotherServer.com&lt;/A&gt;&lt;SPAN&gt;&amp;gt;"&lt;/SPAN&gt;&lt;BR /&gt;objMail.Subject = "That's a mail"&lt;BR /&gt;objMail.Textbody = "Hello World"&lt;BR /&gt;objMail.AddAttachment "C:\someFile.ext"&lt;BR /&gt;&lt;BR /&gt;---8&amp;lt;----- You don't need this part if you have an active Outlook [Express] account -----&lt;BR /&gt;' Use an SMTP server&lt;BR /&gt;objMail.Configuration.Fields.Item _&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN&gt;") = 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;' Name or IP of Remote SMTP Server&lt;BR /&gt;objMail.Configuration.Fields.Item _&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN&gt;") = _&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; "smtp.server.com"&lt;BR /&gt;&lt;BR /&gt;' Server port (typically 25)&lt;BR /&gt;objMail.Configuration.Fields.Item _&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN&gt;") = 25&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;objMail.Configuration.Fields.Update&lt;BR /&gt;----- End of SMTP usage -----&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;objMail.Send&lt;BR /&gt;&lt;BR /&gt;Set objMail=Nothing&lt;BR /&gt;Wscript.Quit&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 01:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638443#M234010</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2014-06-17T01:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638444#M234011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use Servers Alive &lt;A href="http://www.woodstone.nu/salive/" title="http://www.woodstone.nu/salive/"&gt;http://www.woodstone.nu/salive/&lt;/A&gt; to monitor services and send email when down. There are a number of other third party tools that do the same thing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 05:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638444#M234011</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-06-17T05:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638445#M234012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sergey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please provide detail solution. We are looking for alert at failure or service. We do have exchange email setup on the server. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 09:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638445#M234012</guid>
      <dc:creator>Troy1</dc:creator>
      <dc:date>2014-06-17T09:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638446#M234013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also looking for this solution.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 09:42:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/638446#M234013</guid>
      <dc:creator />
      <dc:date>2015-02-13T09:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Email alert when server services goes down</title>
      <link>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/1551618#M440333</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rob.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7162i47F6B706B0FEDAC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Rob.png" alt="Rob.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking for solutions that can monitor Qlik services and set alerts in real time if they go down.&lt;/P&gt;&lt;P&gt;Since the solution provided above are paid, I thought maybe you have another interesting techniques or free tools that can handle this ?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:15:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Email-alert-when-server-services-goes-down/m-p/1551618#M440333</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2019-03-04T10:15:56Z</dc:date>
    </item>
  </channel>
</rss>

