上QQ阅读APP看本书,新人免费读10天
设备和账号都新为新人
1.7 启停服务
启动和停止OpenResty需要以root身份,或者使用sudo。
直接运行bin/openresty就可以启动OpenResty:
/usr/local/openresty/bin/openresty #启动OpenResty服务
OpenResty默认开启了localhost:80服务,使用wget或者curl这样的工具就可以验证OpenResty是否正常工作:
curl -vo /dev/null http://localhost/index.html #curl命令发送HTTP请求
如果OpenResty正在运行,那么curl的部分输出可能如下:
* Connected to localhost (127.0.0.1) port 80 (#0) #连接到localhost:80 > GET /index.html HTTP/1.1 #获取文件index.html > User-Agent: curl/7.35.0 #curl的版本号 < HTTP/1.1200 OK #响应码200,工作正常 < Server: openresty/1.13.6.2 #服务器是OpenResty < Content-Type: text/html #响应内容是普通文本 < Content-Length: 558 #HTTP正文长度是558字节
参数“-s stop”可以停止OpenResty(注意同样需要以root身份或sudo):
/usr/local/openresty/bin/openresty -s stop #停止OpenResty服务
更多的OpenResty运行命令可以参见5.2节。