Faruque Ahmed : MCP, MCSA, MCSE, MCTS, MCIT, CCNA, OCA, OCP, GCP
-------------------------
The steps pasted below will explain it deeply.
Step 1 : Log into server as root user.
Step 2 : Next, you need to findout the UID (User ID) of that user.
You can check the UID information from /etc/passwd file or from the CLI by using the command “id.”
grep -i username /etc/passwd
Example:
# grep -i nobody /etc/passwd nobody:x:99:99:Nobody:/:/sbin/nologin
id -u username
Example:
# id -u nobody 99
Step 3 : Open the CSF conf file “/etc/csf/csf.uidignore” with your favorite text editor.
Step 4 : Add the UID in that file.
Step 5 : Restart CSF and LFD.
csf -r
# /etc/init.d/lfd restart
-----