Delete Wordpress site

I’ve done a dumb thing and lost my password to the Wordpress admin panel. When I remove and re-install Wordpress it still has the same configuration. Is there a way to delete the current Wordpress configuration short of re-imaging my FBX?

Running FBX 23.1 on a Pioneer with an Olimex SSD.

Try this (this will wipe your WordPress data, plugins and configuration):

  1. Uninstall WordPress from FreedomBox UI.
  2. Login via SSH and run:
    sudo su -
    apt remove --purge wordpress
    rm -rf /etc/wordpress /var/lib/wordpress
    echo 'drop database wordpress_fbx;' | mysql -u root
    
1 Like

Awesome @sunil , thanks!