mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-13 08:28:21 +00:00
8 lines
365 B
Bash
Executable File
8 lines
365 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Remove Apache2 & mysql services if exist
|
|
echo "Uninstall existing Webserver (Apache) and MySQL server..."
|
|
killall apache2 && killall mysql
|
|
apt-get --purge remove -y apache2 apache2-doc apache2-utils apache2.2-common apache2.2-bin apache2-mpm-prefork apache2-doc apache2-mpm-worker mysql-client mysql-server mysql-common
|
|
apt-get autoremove -y
|