Inspired by thoughts, Achieved by strength Blog

0

Live Resource usage for a User

How to find Live Resource usage for a User: If Cloud linux is be enabled in the server, then you can use the following command to find resource usage:  # lveinfo –period=1W -u Output:#...

0

Reset WordPress admin password

Reset WordPress admin password using database:  1. Find the database name in “wp-config.php” for the corresponding WP domain. 2. cd /var/lib/mysql 3. Take backup   mysqldump databasename > databasename.sql 4. Enter into MySQL prompt.   mysql...

2

Find custom SSH port number

 Art of Port Scanning  — namp We can find custom SSH port number using  nmap: command:  nmap -P0 -T4 -sV -p- “IP address”            -PO[protocol list]:  IP Protocol Ping           -T: Set timing template (higher...

0

Modules install with Apache to avoid DDOS attacks.

Modules install with Apache to avoid DDOS attacks: To mitigate DDoS attacks, you can install : Mod_securityMod_dosevasiveMod_limitipconnDoS-Deflate ***************1) “Mod_security” : “Mod_security” is a module which helps us to protect our server from exploits that...