admin 管理员组文章数量: 887007
windows下安装openresty
-
打开openresty的中文官网,下载网站为:http://openresty/cn/download.html 。具体如下图
-
启动nginx:cmd命令行,进入nginx根目录,执行start nginx
-
修改nginx配置文件nginx.conf 端口 listen 8888
-
执行 nginx -s reload 重新加载配置文件,访问路径即为http://localhost:8888
相关命令:
nginx -s stop 停止
nginx -s quit 退出
tasklist /fi “imagename eq nginx.exe” 查看进程
taskkill /pid 5488 /F 强制杀死指定pid的进程
nginx常用命令说明
在Windows平台安装好Openresty并且设置好path环境变量之后,就可以启动Openresty了。 Openresty的原始启动命令为Nginx,其参数大致有-v、-t、-p、-c、-s等,大致的使用说明如下
-
-v : 表示查看nginx版本
D:\Program Files\openresty-1.19.9.1-win64>nginx -v nginx version: openresty/1.19.9.1
-
-c:指定一个新的Nginx配置文件来替换默认的Nginx配置文件。
D:\Program Files\openresty-1.19.9.1-win64>nginx -p ./ -c nginx-debug.conf
-
-t:表示测试Nginx的配置文件。如果不能确定Nginx配置文件语法是否正确,你可以通过 Nginx命令-t参数来测试。此参数代表不运行配置文件,而仅仅只是测试配置文件。
D:\Program Files\openresty-1.19.9.1-win64> nginx -t -c nginx-debug.conf nginx: the configuration file ./nginx-debug.conf syntax is ok nginx: configuration file ./nginx-debug.conf test
-
-p:表示设置前缀路径
D:\Program Files\openresty-1.19.9.1-win64>nginx -p ./ -c nginx-debug.conf
上面的命令中," -p ./ “表示将当前目录” D:\Program Files\openresty-1.19.9.1-win64"作为前缀路径,也就是 说,nginx-debug.conf配置文件中所用到的相对路径都加上这个前缀。
-
-s:表示给Nginx进程发送信号,包含:stop(停止)、reload(重写加载)。
//重启Nginx进程,发送reload信号 D:\Program Files\openresty-1.19.9.1-win64> nginx -p ./ -c nginx-debug.conf -s reload //停止nginx进程,发送stop信号 D:\Program Files\openresty-1.19.9.1-win64> nginx -p ./ -c nginx-debug.conf -s stop
lua开发环境搭建
idea + emmy lua插件
- 下载lua sdk
下载路径:http://luabinaries.sourceforge/
-
配置lua sdk
-
创建hello world
创建HelloLua.lua文件,编写helloworld语句
print("hello world")
- 配置lua运行环境
run -> Edit Configurations; 修改 program 选择下载的sdk运行程序
-
右键lua文件->run
-
配置openresty运行环境新建
conf目录
、nginx.conf
和logs目录
- nginx.conf
worker_processes 2;
error_log logs/error.log info;
events {
worker_connections 1024;
}
http {
default_type application/octet-stream;
access_log logs/access.log;
lua_package_path 'src/?.lua;;';
server {
listen 10000;
server_name localhost;
default_type text/html;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location /test {
content_by_lua_file src/HelloLua.lua;
}
}
}
-
改写HelloLua.lua文件
local function main() ngx.say("welcome to openresty world!") end main()
-
新建bat目录,并创建openresty启动脚本
- openresty-start.bat
@echo off rem 启动标志 flag=0 表示之前已经启动 flag=1 表示现在立即启动 set flag=0 rem 设置 openresty/nginx的安装目录 set installPath=D:/Program Files/openresty-1.19.9.1-win64 rem 设置 Nginx 项目的工作目录 set projectPath=D:/ideawork/hellolua rem 设置 项目的配置文件 set PROJECT_CONF=nginx.conf echo installPath: %installPath% echo project prefix path: %projectPath% echo config file: %projectPath%/conf/%PROJECT_CONF% echo openresty starting..... rem 查找openresty/nginx进程信息,然后设置flag标志位 tasklist|find /i "nginx.exe" > nul if %errorlevel%==0 ( echo "openresty/nginx already running ! " rem exit /b ) else set flag=1 rem 如果需要,则启动 openresty/nginx rem -p指定前缀路径,-c指定nginx配置文件 if %flag%==1 ( start nginx.exe -p "%projectPath%" -c "%projectPath%/conf/%PROJECT_CONF%" ping localhost -n 2 > nul ) rem 输出openresty/nginx的进程信息 tasklist /fi "imagename eq nginx.exe" tasklist|find /i "nginx.exe" > nul if %errorlevel%==0 ( echo "openresty/nginx starting succeced!" )
-
openresty-restart.bat
@echo off call openresty-stop.bat call openresty-start.bat
-
openresty-status.bat
@echo off tasklist|find /i "nginx.exe" > nul if %errorlevel%==0 ( tasklist /fi "imagename eq nginx.exe" echo "openresty/nginx is running!" exit /b ) else echo "openresty/nginx is stoped!"
-
openresty-stop.bat
@echo off tasklist|find /i "nginx.exe" > nul if %errorlevel%==0 ( taskkill /f /t /im nginx.exe > nul echo "openresty/nginx stoped!" )else echo "openresty/nginx not running!"
-
配置openresty环境变量(支持脚本中可以找到nginx命令)
高级环境变量里配置path添加地址
-
安装Batch Scripts Supports插件(idea中运行bat文件)
-
右键openresty-start.bat运行脚本
-
浏览器访问localhost:10000/test,返回lua执行结果
本文标签: 环境 Windows openrestylua
版权声明:本文标题:windows下安装openresty_lua的开发环境 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1733747502h1619858.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论