Linux Guide

Anyy body looking for a brief documentation on  RHEL can make use of the below files , which I made for my linux class

Introduction to Linux

LinuxGuide_v3

October 23, 2011 at 11:09 am Leave a comment

How to change the MTU Value in Windows

Due to some network related issues you may need to reset the MTU vaules in you systems.

* To Change the MTU Value

netsh interface ipv4 set subinterface “Local Area Connection” mtu=1300 store=persistent

Of course REBOOT needed.

* If do you what to verify this setting:
netsh int ip show int

October 2, 2011 at 11:06 am Leave a comment

Sendmail STARTTLS: read error=generic SSL error

I was having an issue with my sendmail server where I receives this error which will cause the sendmails logs grow drastically and fill the /var partition.

further it will stop the mail flow ( when /var partition is full)

So i wrote this bash script which does the following;

– look for this error in the maillog

– when it finds it will kill the sendmail process which is causing the  sendmail to log multiple     entries in the logfile and will restart the sendmail and syslog daemons.

anybody is welcome to give their comment on improvements or any drawbacks on this script good luck…….

#!/bin/bash
LAST=’last message’
SSL=”STARTTLS: read error=generic SSL error (0)”
S1=”0″

cp /var/log/maillog /home/muralee/log_check/maillog
grep “STARTTLS: read error=generic SSL error (0)”   /home/muralee/log_check/maillog |awk ‘/sendmail/ {print $5}’ | tr -d [digit:]”sendmail[]” > records.txt
#grep “STARTTLS: read error=generic SSL error (0)”   /home/muralee/maillog.1 |awk ‘/sendmail/ {print $5}’ | tr -d [digit:]”sendmail[]” > records.txt
results=$(wc -l records.txt | awk ‘/records/ {print $1}’)
if [[ $results -eq 0 ]];then
echo “Sendmail is Fine”
fi
if [[ $results -ne 0 ]]; then
pkill sendmail
/etc/init.d/sendmail restart
/etc/init.d/syslog restart
echo “Problem resolved”
cat /dev/null > records.txt

September 20, 2011 at 12:14 pm Leave a comment

Newer Posts


Archives

Categories

Follow Hope you like it.. on WordPress.com

Blog Stats

  • 94,109 hits