Thank you all for your help :)<br>could you please show me how to call this script from the lvs.conf file ?<br>Thanks<br><br><div><span class="gmail_quote">On 5/15/07, <b class="gmail_sendername">Herta Van den Eynde</b> <
<a href="mailto:herta.vandeneynde@gmail.com">herta.vandeneynde@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On 15/05/07, Linux Nic <<a href="mailto:linux_nic@smjkdgs.edu.my">linux_nic@smjkdgs.edu.my</a>> wrote:<br>> Hi all,<br>><br>>     May I know is there any script to monitor HTTPS service ? Currently<br>> me only able to monitor HTTP using the default monitoring script.
<br>><br>> Thanks.<br><br>If you're referring to the piranha check script, here's one we used:<br><br>#!/bin/bash<br>TEST=`/usr/bin/lynx -head -dump https://$1 2>/dev/null | grep -c<br>"HTTP/1.1 200 OK" `
<br>if [ "$TEST" == "1" ]<br>then<br>  echo "OK"<br>else<br>  echo "FAIL"<br>fi<br><br>Kind regards,<br><br>Herta<br><br>_______________________________________________<br>Piranha-list mailing list
<br><a href="mailto:Piranha-list@redhat.com">Piranha-list@redhat.com</a><br><a href="https://www.redhat.com/mailman/listinfo/piranha-list">https://www.redhat.com/mailman/listinfo/piranha-list</a><br></blockquote></div><br>