init
This commit is contained in:
commit
1f3888628f
136
README.md
Normal file
136
README.md
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
ONMP
|
||||||
|
===
|
||||||
|
|
||||||
|
适用于安装了Entware固件的onmp一键安装命令
|
||||||
|
|
||||||
|
目前已经在Padavan、LEDE、梅林上测试成功
|
||||||
|
|
||||||
|
`php-fpm` 和 `mysqld` 启动失败的可以开启swap
|
||||||
|
|
||||||
|
```
|
||||||
|
$ onmp open
|
||||||
|
# 选择7
|
||||||
|
```
|
||||||
|
|
||||||
|
## 说明
|
||||||
|
|
||||||
|
ONMP: Opkg + Nginx + MySQL + PHP
|
||||||
|
|
||||||
|
这是一个用Linux Shell编写的脚本,可以为使用opkg包管理的路由器快速搭建Nginx/MySQL/PHP环境,并且内置了一些好用的网站程序一键免配置快速安装
|
||||||
|
|
||||||
|
```
|
||||||
|
ONMP内置了以下程序的一键安装:
|
||||||
|
(1) phpMyAdmin(数据库管理工具)
|
||||||
|
(2) WordPress(使用最广泛的CMS)
|
||||||
|
(3) Owncloud(经典的私有云)
|
||||||
|
(4) Nextcloud(Owncloud团队的新作,美观强大的个人云盘)
|
||||||
|
(5) h5ai(优秀的文件目录)
|
||||||
|
(6) Lychee(一个很好看,易于使用的Web相册)
|
||||||
|
(7) Kodexplorer(可道云aka芒果云在线文档管理器)
|
||||||
|
(8) Typecho (流畅的轻量级开源博客程序)
|
||||||
|
(9) Z-Blog (体积小,速度快的PHP博客程序)
|
||||||
|
(10) DzzOffice (开源办公平台)
|
||||||
|
```
|
||||||
|
|
||||||
|
所有的软件包均通过 opkg 安装,一切配置均在脚本中可见,请放心使用
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
[wiki](https://github.com/xzhih/ONMP/wiki)
|
||||||
|
|
||||||
|
[底噪博客](https://zhih.me)
|
||||||
|
|
||||||
|
## 安装教程
|
||||||
|
|
||||||
|
### 1. 安装 Entware
|
||||||
|
|
||||||
|
Entware-ng 是一个适用于嵌入式系统的软件包库,使用 opkg 包管理系统进行管理,现在在官方的源上已经有超过 2000 个软件包了,可以说是非常的丰富
|
||||||
|
|
||||||
|
不同的固件,安装方式都不一样,请认准安装方式(自己是什么固件总该懂得吧😂)
|
||||||
|
|
||||||
|
[在 LEDE 上使用 Entware](https://github.com/xzhih/ONMP/wiki/在-LEDE-上安装-Entware)
|
||||||
|
|
||||||
|
[在梅林上使用 Entware](https://github.com/xzhih/ONMP/wiki/在梅林上安装-Entware)
|
||||||
|
|
||||||
|
[在 Padavan 上使用 entware](https://github.com/xzhih/ONMP/wiki/在-Padavan-上安装-Entware)
|
||||||
|
|
||||||
|
### 2. 安装onmp
|
||||||
|
|
||||||
|
一键命令,复制->粘贴->回车
|
||||||
|
使用ONMP时,小米路由器Monlor Tools工具箱请勿安装插件HttpFile和KodExplorer
|
||||||
|
|
||||||
|
```
|
||||||
|
$ sh -c "$(curl -kfsSl https://raw.githubusercontent.com/monlor/ONMP/master/oneclick.sh)"
|
||||||
|
```
|
||||||
|
|
||||||
|
一长串的复制如果出错,可以按照以下给出的命令,一步步进行安装
|
||||||
|
|
||||||
|
```
|
||||||
|
# 进入 entware 挂载目录
|
||||||
|
cd /opt && opkg install wget unzip
|
||||||
|
|
||||||
|
# 下载软件包
|
||||||
|
wget --no-check-certificate -O /opt/onmp.zip https://github.com/monlor/ONMP/archive/master.zip
|
||||||
|
|
||||||
|
# 解压
|
||||||
|
unzip /opt/onmp.zip
|
||||||
|
cd /opt/ONMP-master
|
||||||
|
|
||||||
|
# 设置权限
|
||||||
|
chmod +x ./onmp.sh
|
||||||
|
|
||||||
|
# 运行
|
||||||
|
./onmp.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
要是正常运行到脚本,会出现下面的情景,选1安装即可
|
||||||
|
|
||||||
|
![安装](https://i.loli.net/2018/03/03/5a99ac096c6a1.png)
|
||||||
|
|
||||||
|
正常安装中要是出现错误,会有错误信息,根据提示操作,目前得到的大多数反馈都是网络问题,因为 entware 的源在国外,而且他们的管理者说之前受到了来自亚洲的DDOS,所以对这边限流了,速度较慢。遇到这种情况,可以去看看剧,没准回来的时候就好了😄
|
||||||
|
|
||||||
|
安装成功得到的结果是这样的
|
||||||
|
|
||||||
|
![安装成功](https://i.loli.net/2018/03/03/5a99aeda756ac.png)
|
||||||
|
|
||||||
|
如果你也是和上图一样,那么恭喜你,成功的安装上了 ONMP,你可以尽情的玩耍了
|
||||||
|
|
||||||
|
## 更新脚本
|
||||||
|
|
||||||
|
同样是安装的那条命令,选择 2 即可更新。
|
||||||
|
|
||||||
|
## ONMP 详细使用教程
|
||||||
|
|
||||||
|
**基本命令:**
|
||||||
|
|
||||||
|
```
|
||||||
|
管理:onmp open
|
||||||
|
启动、停止、重启:onmp start|stop|restart
|
||||||
|
查看网站列表:onmp list
|
||||||
|
```
|
||||||
|
|
||||||
|
**主要软件包的管理命令:**
|
||||||
|
|
||||||
|
```
|
||||||
|
Nginx 管理命令
|
||||||
|
onmp nginx start|restart|stop
|
||||||
|
|
||||||
|
MySQL 管理命令
|
||||||
|
onmp mysql start|restart|stop
|
||||||
|
|
||||||
|
PHP 管理命令
|
||||||
|
onmp php start|restart|stop
|
||||||
|
|
||||||
|
Redis 管理命令
|
||||||
|
onmp redis start|restart|stop
|
||||||
|
```
|
||||||
|
|
||||||
|
**设置数据库密码:**
|
||||||
|
|
||||||
|
输入 `onmp open` 后选择3,会提示 `Enter password:` ,这个时候要输入当前数据库的密码,比如我初始设置的数据库密码是123456,回车后要是密码正确,会提示输入你要设置的新密码,回车后会提示再次输入确认。也就是,一次旧密码,两次新密码。
|
||||||
|
|
||||||
|
这个位置很简单,但是很多人都说改不了密码,其实是没看提示,没输入旧密码,所以我写清楚一些。
|
||||||
|
|
||||||
|
## 其他
|
||||||
|
|
||||||
|
探针来自 https://github.com/WuSiYu/PHP-Probe
|
108
lede-ent.sh
Normal file
108
lede-ent.sh
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# sh -c "$(curl -ksSL http://192.168.4.126:4000/lede-ent.sh)"
|
||||||
|
export PATH=/opt/bin:/opt/sbin:/sbin:/bin:/usr/sbin:/usr/bin$PATH
|
||||||
|
|
||||||
|
cat << EOF
|
||||||
|
___ ___ ___ ___
|
||||||
|
/ /\ /__/\ /__/\ / /\
|
||||||
|
/ /::\ \ \:\ | |::\ / /::\
|
||||||
|
/ /:/\:\ \ \:\ | |:|:\ / /:/\:\
|
||||||
|
/ /:/ \:\ _____\__\:\ __|__|:|\:\ / /:/~/:/
|
||||||
|
/__/:/ \__\:\ /__/::::::::\ /__/::::| \:\ /__/:/ /:/
|
||||||
|
\ \:\ / /:/ \ \:\~~\~~\/ \ \:\~~\__\/ \ \:\/:/
|
||||||
|
\ \:\ /:/ \ \:\ ~~~ \ \:\ \ \::/
|
||||||
|
\ \:\/:/ \ \:\ \ \:\ \ \:\
|
||||||
|
\ \::/ \ \:\ \ \:\ \ \:\
|
||||||
|
\__\/ \__\/ \__\/ \__\/
|
||||||
|
|
||||||
|
=======================================================
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cd /tmp || exit
|
||||||
|
|
||||||
|
case $(uname -m) in
|
||||||
|
*armv5*)
|
||||||
|
INST_URL="http://bin.entware.net/armv5sf-k3.2/installer/generic.sh"
|
||||||
|
;;
|
||||||
|
*armv7l*)
|
||||||
|
INST_URL="http://bin.entware.net/armv7sf-k3.2/installer/generic.sh"
|
||||||
|
;;
|
||||||
|
*aarch64*)
|
||||||
|
INST_URL="http://bin.entware.net/aarch64-k3.10/installer/generic.sh"
|
||||||
|
;;
|
||||||
|
*mips*)
|
||||||
|
INST_URL="http://bin.entware.net/mipselsf-k3.4/installer/generic.sh"
|
||||||
|
;;
|
||||||
|
x86_64)
|
||||||
|
INST_URL="http://bin.entware.net/x64-k3.2/installer/generic.sh"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "不好意思,你的平台似乎无法安装 Entware"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo -e "以下是你的磁盘信息\n"
|
||||||
|
df -h
|
||||||
|
echo -e "\n"
|
||||||
|
|
||||||
|
i=1
|
||||||
|
for mounted in $(mount | grep -E "ext4" | grep -v "overlay" | cut -d" " -f3) ; do
|
||||||
|
echo "[$i] --> $mounted"
|
||||||
|
eval mounts$i="$mounted"
|
||||||
|
i=$((i + 1))
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $i = "1" ] ; then
|
||||||
|
echo -e "找不到 Ext4 分区,正在退出..."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "\n找到以上 Ext4 分区"
|
||||||
|
echo -en "输入分区序号或输入 0 退出 [0-$((i - 1))]: "
|
||||||
|
read -r partitionNumber
|
||||||
|
if [ "$partitionNumber" = "0" ] ; then
|
||||||
|
echo -e "$INFO" 退出...
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [ "$partitionNumber" -gt $((i - 1)) ] ; then
|
||||||
|
echo -e "分区编号错误,正在退出..."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
eval entPartition=\$mounts"$partitionNumber"
|
||||||
|
echo -e "已选择 $entPartition \n"
|
||||||
|
|
||||||
|
entFolder="$entPartition/opt"
|
||||||
|
|
||||||
|
if [ -d "$entFolder" ] ; then
|
||||||
|
echo -e "在这个分区上发现了旧的 Entware 文件,正在备份..."
|
||||||
|
mv "$entFolder" "$entFolder-old_$(date +%F_%H-%M)"
|
||||||
|
echo -e "已经备份到 $entFolder-old_$(date +%F_%H-%M) \n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir "$entFolder"
|
||||||
|
|
||||||
|
if [ -d /opt ] ; then
|
||||||
|
rm -rf /opt
|
||||||
|
fi
|
||||||
|
|
||||||
|
ln -sf "$entFolder" /opt
|
||||||
|
echo -e "新的软连接已创建\n"
|
||||||
|
echo -e "现在开始安装 Entware..."
|
||||||
|
|
||||||
|
wget -qO - $INST_URL | sh
|
||||||
|
|
||||||
|
startup="/etc/rc.d/entware-startup.sh"
|
||||||
|
|
||||||
|
echo "ln -sf "$entFolder" /opt" > $startup
|
||||||
|
echo "/opt/etc/init.d/rc.unslung start" >> $startup
|
||||||
|
chmod 777 /etc/rc.d/entware-startup.sh
|
||||||
|
|
||||||
|
sed -e "/^.\ \/opt\/etc\/profile/d" -i /etc/profile
|
||||||
|
echo ". /opt/etc/profile" >> /etc/profile
|
||||||
|
source /etc/profile
|
||||||
|
|
||||||
|
if [[ "$(which opkg)" == "/opt/bin/opkg" ]]; then
|
||||||
|
echo -e "\n安装成功,重启查看是否生效\n"
|
||||||
|
fi
|
77
oneclick.sh
Normal file
77
oneclick.sh
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# 一键安装onmp
|
||||||
|
# @Author: xzhih
|
||||||
|
# @Date: 2018-03-19 04:44:09
|
||||||
|
# @Last Modified by: xzhih
|
||||||
|
# @Last Modified time: 2018-10-08 01:51:35
|
||||||
|
# sh -c "$(curl -kfsSL http://192.168.4.126:4000/oneclick.sh)"
|
||||||
|
|
||||||
|
cat << EOF
|
||||||
|
___ ___ ___ ___
|
||||||
|
/ /\ /__/\ /__/\ / /\
|
||||||
|
/ /::\ \ \:\ | |::\ / /::\
|
||||||
|
/ /:/\:\ \ \:\ | |:|:\ / /:/\:\
|
||||||
|
/ /:/ \:\ _____\__\:\ __|__|:|\:\ / /:/~/:/
|
||||||
|
/__/:/ \__\:\ /__/::::::::\ /__/::::| \:\ /__/:/ /:/
|
||||||
|
\ \:\ / /:/ \ \:\~~\~~\/ \ \:\~~\__\/ \ \:\/:/
|
||||||
|
\ \:\ /:/ \ \:\ ~~~ \ \:\ \ \::/
|
||||||
|
\ \:\/:/ \ \:\ \ \:\ \ \:\
|
||||||
|
\ \::/ \ \:\ \ \:\ \ \:\
|
||||||
|
\__\/ \__\/ \__\/ \__\/
|
||||||
|
|
||||||
|
=======================================================
|
||||||
|
|
||||||
|
ONMP 是一个 web 环境快速安装脚本,适用于安装了
|
||||||
|
Entware 的路由器,目前已经在 Padavan、
|
||||||
|
LEDE(openwrt)、梅林上测试成功。
|
||||||
|
|
||||||
|
项目地址:https://github.com/xzhih/ONMP
|
||||||
|
|
||||||
|
更多使用教程:https://zhih.me
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
Install()
|
||||||
|
{
|
||||||
|
rm -rf /opt/bin/onmp /opt/onmp
|
||||||
|
mkdir -p /opt/onmp
|
||||||
|
|
||||||
|
# 获取onmp脚本
|
||||||
|
curl -kfsSL https://raw.githubusercontent.com/monlor/ONMP/master/onmp.sh > /opt/onmp/onmp.sh
|
||||||
|
# curl -kfsSL http://192.168.4.237:4000/onmp.sh > /opt/onmp/onmp.sh
|
||||||
|
chmod +x /opt/onmp/onmp.sh
|
||||||
|
|
||||||
|
# 获取php探针文件
|
||||||
|
curl -kfsSL https://raw.githubusercontent.com/WuSiYu/PHP-Probe/master/tz.php > /opt/onmp/tz.php
|
||||||
|
|
||||||
|
/opt/onmp/onmp.sh
|
||||||
|
}
|
||||||
|
|
||||||
|
Updata()
|
||||||
|
{
|
||||||
|
rm -rf /opt/onmp/onmp.sh
|
||||||
|
curl -kfsSL https://raw.githubusercontent.com/monlor/ONMP/master/onmp.sh > /opt/onmp/onmp.sh
|
||||||
|
# curl -kfsSL http://192.168.4.237:4000/onmp.sh > /opt/onmp/onmp.sh
|
||||||
|
chmod +x /opt/onmp/onmp.sh
|
||||||
|
/opt/onmp/onmp.sh renewsh > /dev/null 2>&1
|
||||||
|
echo "升级完成"
|
||||||
|
}
|
||||||
|
|
||||||
|
start()
|
||||||
|
{
|
||||||
|
#
|
||||||
|
cat << EOF
|
||||||
|
(1) 开始安装
|
||||||
|
(2) 升级脚本
|
||||||
|
EOF
|
||||||
|
|
||||||
|
read -p "请输入:" input
|
||||||
|
case $input in
|
||||||
|
1 ) Install;;
|
||||||
|
2) Updata;;
|
||||||
|
*) exit;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
start
|
Loading…
Reference in New Issue
Block a user