Skip to main content

Uninstall

Remove the Database

First, remove the database and the MythicalDash user:

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

Remove Directories

Next, delete the MythicalDash directory:

rm -rf /var/www/mythicaldash-v3

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/MythicalDashRemastered.conf
rm /etc/nginx/sites-enabled/MythicalDashRemastered.conf

Restart Nginx

Finally, restart Nginx:

systemctl restart nginx --now