系统版本
lsb_release -a
LSB Version: core-11.1.0ubuntu2-noarch:security-11.1.0ubuntu2-noarch
Distributor ID: Ubuntu
Description: Ubuntu 20.04.4 LTS
Release: 20.04
Codename: focal
环境配置
apt-get update -y
apt-get install -y libpcre3-dev libssl-dev perl make build-essential curl zlib1g-dev
配置OpenResty
下载
cd /opt
curl -LO https://openresty.org/download/openresty-1.19.3.2.tar.gz
tar zxf openresty-1.19.3.2.tar.gz
安装
./configure --with-http_gzip_static_module --with-http_v2_module --with-http_stub_status_module
make && make install
配置system控制
创建service文件
在 /usr/lib/systemd/system
目录下创建一个 openresty.service
文件,文件内容如下:
# Stop dance for OpenResty
# =========================
#
# ExecStop sends SIGSTOP (graceful stop) to OpenResty's nginx process.
# If, after 5s (--retry QUIT/5) nginx is still running, systemd takes control
# and sends SIGTERM (fast shutdown) to the main process.
# After another 5s (TimeoutStopSec=5), and if nginx is alive, systemd sends
# SIGKILL to all the remaining processes in the process group (KillMode=mixed).
#
# nginx signals reference doc:
# http://nginx.org/en/docs/control.html
#
[Unit]
Description=The OpenResty Application Platform
After=syslog.target network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target
[Service]
Type=forking
PIDFile=/usr/local/openresty/nginx/logs/nginx.pid
ExecStartPre=/usr/local/openresty/nginx/sbin/nginx -t -q -g 'daemon on; master_process on;'
ExecStart=/usr/local/openresty/nginx/sbin/nginx -g 'daemon on; master_process on;'
ExecReload=/usr/local/openresty/nginx/sbin/nginx -g 'daemon on; master_process on;' -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /usr/local/openresty/nginx/logs/nginx.pid
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=multi-user.target
启动
# 设置自启动
systemctl enable openresty
# 启动 OpenResty
systemctl start openresty
# 查看状态
systemctl status openresty
● openresty.service - The OpenResty Application Platform
Loaded: loaded (/lib/systemd/system/openresty.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2022-08-26 15:42:53 CST; 16min ago
Process: 20277 ExecStartPre=/usr/local/openresty/nginx/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 20288 ExecStart=/usr/local/openresty/nginx/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Main PID: 20289 (nginx)
Tasks: 6 (limit: 9156)
Memory: 113.5M
CGroup: /system.slice/openresty.service
├─20289 nginx: master process /usr/local/openresty/nginx/sbin/nginx -g daemon on; master_process on;
├─20290 nginx: worker process
├─20291 nginx: worker process
├─20292 nginx: worker process
├─20293 nginx: worker process
��─20294 nginx: cache manager process
Aug 26 15:42:53 steamproxy-openresty systemd[1]: Starting The OpenResty Application Platform...
Aug 26 15:42:53 steamproxy-openresty systemd[1]: Started The OpenResty Application Platform.