How to check Linux HDD S.M.A.R.T. with PRTG sensor

How to check Linux HDD S.M.A.R.T. with PRTG sensor

CentOS HDD S.M.A.R.T. shell script.

 Create path 

/var/prtg/scripts

 Install smartmontools

yum install smartmontools

 Start the service

service smartd start
chkconfig smartd on

 Create shell script

touch hddsmart.sh

 And paste the following

#!/bin/bash
serviceIsRunning=false
var1=$(smartctl -H /dev/sda |grep result |sed 's/..............................$
var2=$(echo $data)
if [ "$var1" == PASSED ]
then
serviceIsRunning=true
echo "0:200:PASSED"
fi
if [ $serviceIsRunning == false ]
then
echo "2:404:FAILED"
fi

 Save and Exit

 Make it executable

chmod +x hddsmart.sh

Go to PRTG : 

Add Sensor- SSH Script
Choose script - hddsmart.sh

Save

 

! Make sure your PRTG Server has access to Asterisk Server, if not, add root username and password
to the credentials in the BASIC DEVICE SETTINGS

Screenshot from 2016-05-31 18-10-05

How to monitor Linux CPU temperature with PRTG sensor

How to monitor Linux CPU temperature with PRTG sensor

CentOS CPU Temerature shell script.

 Create path 

/var/prtg/scripts

 Install lm_sensors

yum install lm_sensors

 Create shell script

touch temperature.sh

 And paste the following

#!/bin/bash
data=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
echo "0:"$data":OK!"

 Save and Exit

 Make it executable

chmod +x temperature.sh
modprobe coretemp

Go to PRTG : 

Add Sensor- SSH Script
Choose script - temperature.sh
Unit String- Celsius

Save

Here’s the result :

Screenshot from 2016-06-07 11-36-46

! Make sure your PRTG Server has access to Asterisk Server, if not, add root username and password
to the credentials in the BASIC DEVICE SETTINGS

Screenshot from 2016-05-31 18-10-05

How to Install Linux, Apache, MySQL, PHP (LAMP) stack on CentOS 6

How to Install Linux, Apache, MySQL, PHP (LAMP) stack on CentOS 6

sudo yum install httpd
sudo /usr/bin/mysql_secure_installation
 
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
Remove anonymous users? [Y/n] y                                            
 ... Success!
Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
... Success!

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!
sudo yum install php php-mysql
sudo chkconfig httpd on sudo chkconfig mysqld on
sudo service httpd restart
yum install mysql mysql-server -y
service mysqld start 
How to monitor Asterisk trunks with PRTG

How to monitor Asterisk trunks with PRTG

Create shell script

touch trunk.sh

Add the content to the script

#!/bin/bash
serviceIsRunning=false
var1=$(/usr/sbin/asterisk -rx "sip show peers" |grep trunk_name |awk '{print $6}'| sed 2,2d)
var2=$(echo $data | awk '{print $2}')
if [ "$var1" == OK ]
then
serviceIsRunning=true
echo "0:200:running"
fi
if [ $serviceIsRunning == false ]
then
echo "2:404:UNREACHABLE"
fi

Save the script and make it executable

chmod +x trunk.sh

Try to run it

./trunk.sh

Go to the PRTG, and add the SSH Script sensor to the device

In the „Script” field choose trunk.sh and SAVE

! Make sure your PRTG Server has access to Asterisk Server, if not, add root username and password
to the credentials in the BASIC DEVICE SETTINGS

Screenshot from 2016-05-31 18-10-05