Skip to main content

Uninstall MythicalDash

Remove the Database

First, remove the database and the MythicalDash user:

mariadb -u root -p
DROP DATABASE mythicaldash;
DROP USER 'mythicaldash'@'127.0.0.1';
exit

Remove Directories

Next, delete the MythicalDash directory:

rm -rf /var/www/mythicaldash

Remove Crontab

Edit the crontab to remove MythicalDash jobs:

sudo crontab -e

Remove Nginx Config

Delete the Nginx configuration files:

rm /etc/nginx/sites-available/MythicalDash.conf
rm /etc/nginx/sites-enabled/MythicalDash.conf

Restart Nginx

Finally, restart Nginx:

systemctl restart nginx --now