Jump to content

GIPL Untangle Service Not Available

From TetraWiki
Revision as of 08:04, 6 November 2015 by Biswajit (talk | contribs)



                                 GIPL Untangle Issue Service Not Available
 URL:- Https://203.77.200.94
 USER:- admin	
 PASS:- x-x-x

As you will Login You will get an Error : Service Not Available

Solution :-

Login Server via SSH:-

[root @ local] ~ # ssh -l root 203.77.200.94 -v
#Restart untangle-vm service
[root @ untangle] ~ # /etc/init.d/untangle-vm restart

Try Now you will be login sucessfully.

For more detail:- Check cronlist

[root @ untangle] ~ # crontab -l
*/5 * * * * /root/mail_alert.sh >/dev/null 2>&1
[root @ untangle] ~ #cat /root/mail_alert.sh
#/bin/sh
#QUEUE=`qmailctl stat |grep "messages in queue:" |cut -d" " -f4`
QUEUE=`tail -n20 /var/log/messages | grep "nf_queue: full at 1024 entries" | wc -l`
SUB="UNTANGLE_ISSUE_["$QUEUE"]"
if [ $QUEUE -gt 0 ]; then
echo $SUB | mail -s $SUB biswajit.tetra@gmail.com -aFrom:biswajit@gipl.com
sleep 10
/etc/init.d/untangle-vm restart
sleep 10
echo 65536 > /proc/sys/net/ipv4/neigh/default/gc_thresh1
cat /root/blank.txt >> /var/log/messages
fi