-
Notifications
You must be signed in to change notification settings - Fork 30
/
install.sh
55 lines (44 loc) · 1.41 KB
/
install.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
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
## ltnmp一键安装包
## 安装Tengine/Nginx,PHP,Maraidb/Mysql.
## by 技安(Andy) (http://www.moqifei.com)
## 检测是否是root账户权限
if [ $(id -u) != "0" ]; then
echo "Error: You must be root to run this script, please use root to install ltnmp"
exit 1
fi
## 当前路径
current_dir=$(pwd)
## 加载初始化脚本
. scripts/bootstrap.sh
. scripts/version.sh
## 检测系统参数
run
if [ "${DISTRO}" = "unknow" ]; then
echo "Unable to get the release version of the operating system, or the system release version is not supported"
exit 1
fi
clear
echo "-------------------------------------------------------------------------"
echo ""
echo " ltnmp v${ltnmp_version} for ${DISTRO} Linux Server"
echo " Automatic compilation(Tengine/nginx)+php+(Mariadb/Mysql)"
echo " By:Andy http://www.moqifei.com"
echo ""
echo "-------------------------------------------------------------------------"
## 加载各个发行版,数据库,PHP,web服务器等脚本
. scripts/${ANDY}.sh
. scripts/mariadb.sh
. scripts/mysql.sh
. scripts/tengine.sh
. scripts/nginx.sh
. scripts/php.sh
. scripts/phpmyadmin.sh
. scripts/end.sh
## 开始安装,并保存日志
if [ -s /root/ltnmp-install.log ] ; then
mv -f /root/ltnmp-install.log /root/ltnmp-install.log.ltnmp
fi
install 2>&1 | tee -a /root/ltnmp-install.log