sshd config screen

How to fix SSH dropping after a password change

When using IPA for managing user authentication you can come across this issue of SSH dropping just after a password change. It can be resolved by changing options in /etc/ssh/sshd_config. You need to be ROOT to make this change and restart SSHD service to take…

vi screen 1

How to Show Line Numbers in Vi / Vim editor

Showing Line numbers in Vi /Vim Text editor would be very helpful when it comes to troubleshooting code errors in a file. This works on almost all Linux/UNIX distributions. Once you are in the edit file mode, Type while in edit mode “:set nu” OR…

nagios-logo

Enable Secure HTTPS for Nagios Core

Its possible to enable SSL over http for Nagiso Core (Red Hat/CentOS). The Nagios WEB UI can be made secure by enabling https instead of plain http in Nagios. After you are done installing Nagios Core in Linux, you need to enable OpenSSL in Apache. First we need to…

raspberry_pi

Setup ssmtp in Raspbian – RasberryPi

SSMTP is a email service for Raspbian and is used for sending out emails internally in a network and externally.Its a very simple install and will get you up and running in no time. This process would need a Root account and make sure you update Raspbian to the latest…

raspberry_pi

Setup DNS Server in Raspbian -RasberryPi

This article will show you how to Setup and configure DNS Server on Raspbian. Its called as Bind9 on RasberryPi and is used for resolving IP address to domain name and vice-versa. Make sure that you are logged in as ROOT user and update the OS to the latest. For…

redhat_Linux

Setup DHCP Server in Linux

Its easy to setup DHCP server in Linux with full control over the IP’s and what IP’s are assigned to client hosts. We would be using DHCP package via YUM for this setup. DHCP is used for dynamic assinging of IP addresses for the clients in a network. First…

redhat_Linux

Setup and Configure DNS Server in Linux

This guide will help you in setting up a DNS server for resolving IP address to domain names and vice-versa. We will be using “named (bind)” as its the DNS version for Linux. First we need to install named Packages.   # yum -y install bind*…

redhat_Linux

Install Postfix (email server) in Linux

This article shows you how to install and configure a simple mail server called Postfix. It can be used to send emails or act as a email relay server for internal network wherein only one Server is allowed access to Internet and then all clients hosts will redirect…