1 Star 0 Fork 37

yg178 / ltnmp

forked from 技安未来 / ltnmp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.sh 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
技安未来 提交于 2015-07-30 10:34 . 调整格式
#!/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)
# Check if user is 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 ""
echo " Automatic compilation(Tengine/nginx)+php+(Mariadb/Mysql)"
echo ""
echo " By:Andy http://www.moqifei.com"
echo ""
echo "-------------------------------------------------------------------------"
## 加载各个发行版,数据库,PHP,web服务器等脚本
. scripts/${ANDY}.sh
. scripts/mariadb.sh
. scripts/tengine.sh
. scripts/nginx.sh
. scripts/php.sh
. scripts/ionCube.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
1
https://gitee.com/hwsyy/ltnmp.git
git@gitee.com:hwsyy/ltnmp.git
hwsyy
ltnmp
ltnmp
master

搜索帮助