By 16 Ottobre 2015 0 Comments

[Emergency] – Comandi per Verifiche Apache e Web Server

Trova i 10 file più grandi, ordinandoli per dimensione
find / -type f -print0 | xargs -0 du -h | sort -hr | head -10

Su access_log di apache.
tail -f access_log
tail -f access_log | grep “POST /wp-login.php”
tail -f access_log | grep “POST”

Con questa si vedono gli ip che fanno più connessioni:
netstat -atun | awk ‘{print $5}’ | cut -d: -f1 | sed -e ‘/^$/d’ |sort | uniq -c | sort -n

Come cercare i FIle su Linux
Come cercare Grandi Files e Directory

Linux, Emergency Linux, Emergenza Linux

Posted in: Emergency

About the Author:

shared on wplocker.com