Nagios Plugin : check ssl certificate expiry date

Nagios Plugin : check ssl certificate expiry date

We have created a Nagios plugin called check_ssl_cert_expiry . The nagios plugin will send the alert (warning/critical) before SSL Certificate expiry date. We have tested this plugin to check HTTPS website URL. It is working very well. Why we require check_ssl_cert_expiry nagios plugin To know how many days are left before date of expiration of…

Upgrading MySQL 5.1 to 5.6 service failed to start
|

Upgrading MySQL 5.1 to 5.6 service failed to start

Recently we got the system which has MySQL server version 5.1 was running. It was good chance for me to reproduce the issue and show practical answer on question asked on stackoverflow. Operating System: CentOS 6.5Arch : x86_54 Symptom MySQL service failed to start after upgrading from MySQL 5.1 to 5.6 version. Given below is…

check_ELBinstance : Nagios Plugin to check instances attached with ELB

check_ELBinstance : Nagios Plugin to check instances attached with ELB

Recently I created a new nagios plugin which check the no. of instances attached in ELB (Elastic Load Balancer) . Here we are talking about ELB in AWS (Amazon Web Service) Cloud. Elastic Load Balancing automatically distributes incoming application traffic across multiple Amazon EC2 instances in the cloud. Details of check_ELBinstance nagios plugin Requirement :…

Install Openssh server on Ubuntu Desktop / Server
|

Install Openssh server on Ubuntu Desktop / Server

FAQ : How to connect to Ubuntu Desktop / Server by using ssh. I just installed Ubuntu 14.04 LTS Desktop edition and have not found ssh service running in system. Answer : OpenSSH is a FREE version of the SSH connectivity tools. It provides the encrypted communication between computers by using ssh protocol. History of…

Install MariaDB Server 10.0 on Ubuntu 14.04 LTS ( Trusty Tahr )
|

Install MariaDB Server 10.0 on Ubuntu 14.04 LTS ( Trusty Tahr )

The post will explain, how to install MariaDB Server 10.0 on Ubuntu 14.04 LTS (Trusty Tahr) . MariaDB which is now a days very popular. It is fork of MySQL and best alternate of MySQL. Red Hat has already announced the MariaDB as default Database in Verion RHEL 7.0. I surely suggest you to know…

tr command to convert lines to space , tab and vertical tab

tr command to convert lines to space , tab and vertical tab

In this post , we are explaining how to use tr command to convert lines or rows to space , tab , vertical tab and vertical tab. In our last post we have explained converting lines to space by using sed command. This time we will use tr command, which translate, squeeze, and/or delete characters…