

openwrt 编译安装 nginx 1.14.0 并编写 init.d 启动脚本
source link: https://hellodk.cn/post/477
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

openwrt 编译安装 nginx 1.14.0 并编写 init.d 启动脚本
2021年04月22日 update
于是想到应该是由于 nginx 版本升级(1.14.0
到 1.16.1
)导致了这个配置不能生效了(应该是和文件传输相关,需要更多的配置项,这个可以留到后面再研究缺少什么配置)
当时通过 pt.to 无法添加种子开启下载任务,当时没有找出来原因,重新编译安装了nginx解决。
现在发现问题不在于nginx版本或者缺少什么文件传输相关的配置,而在于nginx运行时使用的 user 和 group 😂️
/etc/nginx/nginx.conf
默认指定的user是这样子的 user nobody nogroup;
nobody 没有权限往磁盘上的路径写数据(要保存 torrent 种子),将这句改成 user root root;
重新启动 nginx 即可
但很奇怪的是,最近一次重新刷的固件,一开始是可以直接通过 pt.to 添加下载任务的,当时的nginx配置应该也就是 user nobody nogroup 呀…… emmm 不过现在问题找到了,bingo
下面是原文
一开始我的 openwrt 机器上安装的 nginx 版本是 1.16.1
上面的是 t400 上的 nginx 版本
1.14.0
(系统 Ubuntu 16.04 LTS),下面的是软路由 openwrt 上的
一、安装 1.14.0 的 nginx
为什么要重新安装 1.14.0 版本的呢?这就来说明
openwrt 上运行了 qbittorrent
,ip 和端口号是 10.10.10.1:8080
通过这个 ip ➕️ port 完全可以访问,但是由于安装了 nginx,为了便利性,所以配置了一个反向代理,借助 dnsmasq
自定义域名 pt.to
指向了该 url
nginx 读取的 配置文件 pt.conf
server {
listen 80;
server_name pt.to;
location / {
proxy_pass http://127.0.0.1:8080;
index index.html index.php;
这个配置导致 qbittorrent 无法添加种子,无法完成下载,pt plugin plus
也无法通过 pt.to
这个域名添加下载任务了。这个配置在 t400 上完全正常。在我最近给软路由重刷固件以前也是正常的
于是想到应该是由于 nginx 版本升级(1.14.0
到 1.16.1
)导致了这个配置不能生效了(应该是和文件传输相关,需要更多的配置项,这个可以留到后面再研究缺少什么配置)
后面开始卸载 opkg 通过软件源安装的 nginx
卸载 1.16.1 版本的 nginx 并编译安装 1.14.0 版本的 nginx
卸载 1.16.1 nginx,需要强制移除依赖,所以添加了 --force-removal-of-dependent-packages
参数
opkg remove nginx nginx-ssl \
nginx-ssl-util \
nginx-util \
--force-removal-of-dependent-packages
开始编译安装 1.14.0
1. 下载源文件
首先 cd 到一个空间足够的目录,然后下载源文件。在 nginx.org
官网下载
wget http://nginx.org/download/nginx-1.14.0.tar.gz
然后解压缩
tar -zxvf nginx-1.14.0.tar.gz
2. 进行编译的配置
切换工作目录到解压缩产生的 nginx 程序包文件夹, cd nginx-1.14.0
编译时所需依赖是最麻烦的。这里不像 ubuntu 或者 centos 等 Linux 发行版,在网上自行编译 nginx 或者其他程序会有很多的博客、教程可参考,但是 openwrt 可参考的资料不够多,这里你恐怕要踩坑了
opkg install 安装好必要的依赖库,比如 make
、gcc
、pcre
、libpcre
、libpcrecpp
、openssl
、luasec
、luci-ssl-openssl
、libopenssl
、openssl-util
、zlib
、zlib-dev
,如果你安装时候遇到依赖问题,那么慢慢排查,搜索,安装吧。有些依赖包在 ubuntu 的软件源中的名字和 openwrt 下的不一样,名称不一样,很多依赖包都这样
./configure --user=root --group=root \
--prefix=/usr/local/nginx \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--without-http_rewrite_module \
--without-http_gzip_module
最终我的配置参数是这样的 😂️
配置摘要信息。PCRE OpenSSL zlib 的库都没有用上,但的确都安装上了。OpenSSL 的库还踩坑了,不知道是不是 openwrt 下的 openssl 的库有问题 还是我装的版本有问题(也可能和使用的源有关系,更有可能需要自己编译某个版本的
libopenssl
的 library)
3. 编译和安装 nginx
make && make install
不出意外的话,恭喜你已经成功安装好了 nginx 1.14.0 版本
执行
/usr/local/nginx/sbin/nginx -v
查看版本
标准配置文件位于 /usr/local/nginx/conf/nginx.conf
在上述 配置文件的 http
模块中添加 include /usr/local/nginx/conf/vhost/*.conf;
语句,在 /usr/local/nginx/conf/
下新建 vhost
文件夹,把 pt.conf
拷贝到 /usr/local/nginx/conf/vhost/
中
编辑 /etc/profile
把 nginx 可执行文件的路径 添加到系统 PATH
变量中,执行 which nginx
环境变量也配置好了
这个时候可以通过 nginx
命令启动了
启动后访问
router.to
启动后访问
pt.to
经过测试,可以添加下载任务了,👏🏻
二、编写 init.d 启动脚本
编写脚本,vim /etc/init.d/nginx
填上以下内容,脚本本人亲测可用
#!/bin/bash /etc/rc.common
# author: hellodk
# Copyright (C) 2021
START=99
STOP=5
NGINX="/usr/local/nginx/sbin/nginx"
nginxProcessCount=`ps aux |grep "/usr/local/nginx/sbin/nginx" |grep -v grep |wc -l`
start() {
echo "nginx starting"
sleep 2
$NGINX -c /usr/local/nginx/conf/nginx.conf
# commands to launch application
stop() {
$NGINX -s stop
echo "nginx stopped"
# commands to kill application
restart() {
if [ $nginxProcessCount -gt 0 ]; then
sleep 2
echo "no nginx master process running now, let's start nginx directly"
start
给这个文件添加 755 的权限 chmod 755 /etc/init.d/nginx
然后便可以通过 init.d 脚本启停 nginx 了
执行 /etc/init.d/nginx enable
让 rc.d 来管理 使 nginx 服务能够开机自启
检查 /etc/rc.d/
目录下是否有 nginx 即可
# ll /etc/rc.d |grep nginx
lrwxrwxrwx 1 root root 15 Apr 13 11:23 K5nginx -> ../init.d/nginx*
lrwxrwxrwx 1 root root 15 Apr 13 11:23 S99nginx -> ../init.d/nginx*
经测试开机自启没有问题。
启动和停止的一些操作记录
本文的分享结束
Recommend
-
8
编译出适合自己的NginxNginx的安装方式安装Nginx有两种方法,除了编译以外,还可以直接用操作系统上自带的一些工具,比如yum、apt-get但是直接安装Nginx的二进制文件会有个问题,因为Nginx的二进制文件会把模块直接编译进来。Nginx的...
-
8
我家里的路由器是矿渣newifi3, 刷了OpenWrt系统,可玩性还是非常强的。而且路由器作为24小时在线的设备,很适合作为网络设备的控制中心,比如使用WOL唤醒其他设备。
-
9
本节主要说明:configure编译脚本,nginx.conf配置文件,nginx命令与main()函数主流程。configure不同的参数决定了编译出的nginx拥有哪些功能,nginx.conf配置文件决定了这些功能具...
-
7
Cloudflare DDNS 脚本,适配 OpenWrt,自带的不好用 — Dosk 技术站 crontab 设置 */5 * * * * /root/cloudflare_ddns #!/bin...
-
9
Nginx With gRPC编译安装 发表于...
-
7
为apt方式安装的nginx重新编译增加WebDAV2019-05-05 • Otstar Lin • 本文最后更新于 268 天前,文中所描述的信息可能已发生改变由于机房装了还原卡,重启就会恢复磁盘,作为 VSCode 的重度使用者实在受...
-
28
一键脚本安装V2Ray+WebSocket+TLS+Nginx救活被墙VPS 之前介绍了手动配置V2Ray+WebSocket+TLS+Nginx的教程(V2Ray+WebSocket+TLS+Nginx配置与使用教程),配置比较繁琐,这里分享一个一键脚本实现V2Ray 基于 Nginx 的 vmess+ws+tls。
-
8
1. 源码包准备官网下载最新的redis 源码包 : http://download.redis.io/releases/官方网站安装方法: https://redis.io/download
-
12
您可能需要比存储库中的版本更新的 Nginx 版本。截至今日(2019 年 4 月 30 日),最新版本为 1.16.0。Nginx 开发人员维护一个最新版本的 yum 存储库。我建议使用存储库,因为它更容易使 Nginx 保持最新。Ngi...
-
3
AlmaLinux 编译安装nginx-quic 网络上的教程众说纷纭,大部分停留在使用quiche补丁的方式,这里给出一份使用nginx官方quic版本的方式,编译过程要简单很多 安装编译工具 dnf install gcc gcc-c++ git...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK