About UAN portal

Today going to explain about UAN portal, click here to open UAN portal site and understand step by step how to use. Homepage of UAN (Universal Account Number) portal After open above page do login with UAN and password  UAN portal home page will open. In the home page, you will get the summary about your UAN. […]

EPF balance passbook

Find member passbook In this post, i am going to explain where to get your EPF balance passbook and what is the steps. First, open epfindia website and follow the below steps or you can visit directly member passbook URL click here and follow from step 3. 1. Go to Our Services >> For Employees 2. Inside […]

Find IFSC code

How to find bank IFSC codeYou can find ifsc code of any bank in india by visiting this site https://www.ifsccodebank.com/  Steps to get an IFSC code After open this above site follow below steps 1. Select bank name from dropdown 2. Select state from dropdown 3. Select district from dropdown 4. Select city from dropdown 5. […]

Shell script example | cpu usage monitoring

#!/bin/sh memuse=$(ps -p $(pidof java) -o %mem | awk ‘{if(NR>1)print}’); thresholdVal=50; if [ $memuse >  $thresholdVal ];  then     message=”Memory usage for jboss service on application server exceeded threshold.nCurrent use is $memuse %.”     echo -e $message | mail -s “Alert : Memory monitoring UHMB” “prahlad20@gmail.com”; fi cpuuse=$(ps -p $(pidof java) -o %cpu […]

FTP

What is FTP? FTP stands for File Transfer Protocol. The protocol specifications were written by Abhay Bhushan and published as Request for Comments (RFC) 114 in April 1971. The File Transfer Protocol (FTP) is the standard network protocol used for the transfer of computer files between a client and server on a computer network. FTP is built on a […]