forked from teddysun/lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.sh
95 lines (89 loc) · 3.42 KB
/
uninstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env bash
# Copyright (C) 2013 - 2020 Teddysun <[email protected]>
#
# This file is part of the LAMP script.
#
# LAMP is a powerful bash script for the installation of
# Apache + PHP + MySQL/MariaDB/Percona and so on.
# You can install Apache + PHP + MySQL/MariaDB/Percona in an very easy way.
# Just need to input numbers to choose what you want to install before installation.
# And all things will be done in a few minutes.
#
# System Required: CentOS 6+ / Fedora28+ / Debian 8+ / Ubuntu 14+
# Description: Uninstall LAMP(Linux + Apache + MySQL/MariaDB/Percona + PHP )
# Website: https://lamp.sh
# Github: https://github.com/teddysun/lamp
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
cur_dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
include(){
local include=$1
if [[ -s ${cur_dir}/include/${include}.sh ]]; then
. ${cur_dir}/include/${include}.sh
else
echo "Error:${cur_dir}/include/${include}.sh not found, shell can not be executed."
exit 1
fi
}
uninstall_lamp(){
_info "uninstalling Apache"
if [ -f /etc/init.d/httpd ] && [ $(ps -ef | grep -v grep | grep -c "httpd") -gt 0 ]; then
/etc/init.d/httpd stop > /dev/null 2>&1
fi
rm -f /etc/init.d/httpd
rm -rf ${apache_location} /usr/sbin/httpd /var/log/httpd /etc/logrotate.d/httpd /var/spool/mail/apache
_info "Success"
echo
_info "uninstalling MySQL or MariaDB or Percona Server"
if [ -f /etc/init.d/mysqld ] && [ $(ps -ef | grep -v grep | grep -c "mysqld") -gt 0 ]; then
/etc/init.d/mysqld stop > /dev/null 2>&1
fi
rm -f /etc/init.d/mysqld
rm -rf ${mysql_location} ${mariadb_location} ${percona_location} /usr/bin/mysqldump /usr/bin/mysql /etc/my.cnf /etc/ld.so.conf.d/mysql.conf
_info "Success"
echo
_info "uninstalling PHP"
rm -rf ${php_location} /usr/bin/php /usr/bin/php-config /usr/bin/phpize /etc/php.ini
_info "Success"
echo
_info "uninstalling others software"
[ -f /etc/init.d/memcached ] && /etc/init.d/memcached stop > /dev/null 2>&1
rm -f /etc/init.d/memcached
rm -fr ${depends_prefix}/memcached /usr/bin/memcached
[ -f /etc/init.d/redis-server ] && /etc/init.d/redis-server stop > /dev/null 2>&1
rm -f /etc/init.d/redis-server
rm -rf ${depends_prefix}/redis
rm -rf /usr/local/lib/libcharset* /usr/local/lib/libiconv* /usr/local/lib/charset.alias /usr/local/lib/preloadable_libiconv.so
rm -rf ${depends_prefix}/imap
rm -rf ${depends_prefix}/pcre
rm -rf ${openssl_location} /etc/ld.so.conf.d/openssl.conf
rm -rf /usr/lib/libnghttp2.*
rm -rf /usr/local/lib/libmcrypt.*
rm -rf /usr/local/lib/libmhash.*
rm -rf /usr/local/bin/iconv
rm -rf /usr/local/bin/re2c
rm -rf /usr/local/bin/mcrypt
rm -rf /usr/local/bin/mdecrypt
rm -rf /etc/ld.so.conf.d/locallib.conf
rm -rf ${web_root_dir}/phpmyadmin
rm -rf ${web_root_dir}/kod
rm -rf ${web_root_dir}/xcache /tmp/{pcov,phpcore}
_info "Success"
echo
_info "Successfully uninstall LAMP"
}
include config
include public
load_config
rootness
while true
do
read -p "Are you sure uninstall LAMP? (Default: n) (y/n)" uninstall
[ -z ${uninstall} ] && uninstall="n"
uninstall=$(upcase_to_lowcase ${uninstall})
case ${uninstall} in
y) uninstall_lamp ; break;;
n) _info "Uninstall cancelled, nothing to do" ; break;;
*) _warn "Input error, Please only input y or n";;
esac
done