How to Manually Remove SMP Installation?
SMP installation can be removed manually by removing SMP packages, database schema and database user.
Step-by-step guide
SMP installation can be removed manually by executing the shell script below.
remove.sh
#!/bin/sh sudo mysql -e "DROP SCHEMA harmony_smp; DROP USER harmony_smp@localhost" sudo apt-get --purge autoremove harmony-smp --yes
Related articles