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. like: uan number, name, date of birth and verification status with aadhaar, pan, bank account etc.


  • How to get UAN card?

You can get your UAN card by click on UAN card link


  • How to change the password?

In the home page click on account setting


After click account setting the password change window will open. In this page, three fields are there. first, you need to fill your current password then enter your new password (Input strong password with at least 6-8 character) and confirm your new password after that click on update button the password will change successfully.

  • How to check contact detail and update those details?

In the menu button click on manage menu button then click on contact details


The contact page will open, on the change contact details page you can your registered mobile number and email id. There is one checkbox for change mobile and change mail id, when you click on this check box the update fields will show and you change your mobile number as well as email id easily after that click on get authorization pin, you will get the ping on the registered mobile number after verifying it the detail will update successfully. 

  • Know about add KYC detail and its status

Navigate to Manage menu and click on KYC 

The KYC page will open. you can add any KYC detail and click on save

Scroll down the page and you get to know the status of your KYC.

  • Know about profile detail
Goto view menu and click profile sub-menu


The profile page will look like below screenshot. in the page, you will see all detail in this site also you change your mobile /email id from the given link. 

  • Know about service history

Navigate to view menu and click on service history

The next page will open service detail page. Here it will show your pf member id detail and its history (eg: establishment name /id, DOJ EPF, DOE EPF etc)


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 services click on Member Passbook

3. In the new tab or window, the member passbook login page will open
4. In the member passbook login page enter UAN number as username, password and fill the captcha then press login button.
After successful login on the next page, you will see your all account’s passbook.

Find IFSC code

How to find bank IFSC code

You 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. Select branch name from dropdown


6. Then press search button and you will the bank detail with IFSC code


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 | awk ‘{if(NR>1)print}’);
if [ $cpuuse > $thresholdVal ];
then
    message=”CPU usage for jboss service on application server exceeded threshold.nCurrent use is $cpuuse %.”;
    echo -e $message | mail -s “Alert : CPU monitoring UHMB” “prahlad20@gmail.com”;
fi

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 client-server model architecture and uses separate control and data connections between the client and the server.

FTP command and usage


Command

Usage

ls List files on the remote server
get file Download file
mget file* Download multiple files. You can use wildcards (*) to download all files with specific filename pattern. For example mget *.log to will download all files with extension .log
put file Upload file
mput file* Upload multiple files. You can use wildcards (*) the same way they’re used with mget
cd Navigate to a path on the remote server. Example: cd /tmp/uploads
lcd Navigate to a path on the local server (your machine). Example: lcd /home/myuser
bin Choose binary mode for file transfer
ascii Choose ascii mode for file transfer
bye Exits the current session