1.) Effacer les fichiers web :
rm -Rf /var/www/html
2.) Effacer la BD :
mysql -uroot -p
you will be prompted for the password and after entering it you’ll be at a mysql client prompt
DROP DATABASE wordpress;
then you can close the mysql client with
exit;