-
Stop and disable the Artemis service
Bashsudo systemctl stop artemis sudo systemctl disable artemis sudo rm /etc/systemd/system/artemis.service sudo systemctl daemon-reload -
Remove Artemis instance and installation directories.
Bashsudo rm -rf /var/lib/artemis-instance sudo rm -rf /opt/artemis -
Remove environment configurations.
Bashsudo rm -rf /etc/artemis -
Remove logs file.
Bash#### Remove the installation log file that was created during setup sudo rm /var/log/artemis-setup.log #### Clear the systemd journal logs for the artemis service sudo journalctl --vacuum-time=1s -u artemis -
Remove the Artemis system user.
Bashsudo userdel artemis -
Clear Systemd State for Artemis
Bashsudo systemctl reset-failed artemis -
To verify artemis is removed.
Bashsudo systemctl status artemis #### Expected Output: ##### Unit artemis.service could not be found.