NGINX编译安装及配置
程序员文章站
2022-04-22 20:49:55
...
一、编译安装
./configure
--prefix=/usr
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx_1_6/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/var/run/nginx/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=nginx
--group=nginx
--with-http_ssl_module
--with-http_flv_module
--with-http_stub_status_module
--with-http_gzip_static_module
--http-client-body-temp-path=/var/tmp/nginx/client/
--http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi
--http-scgi-temp-path=/var/tmp/nginx/scgi
--with-pcre --with-file-aio
--prefix=/usr
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx_1_6/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/var/run/nginx/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=nginx
--group=nginx
--with-http_ssl_module
--with-http_flv_module
--with-http_stub_status_module
--with-http_gzip_static_module
--http-client-body-temp-path=/var/tmp/nginx/client/
--http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi
--http-scgi-temp-path=/var/tmp/nginx/scgi
--with-pcre --with-file-aio
编译过程中,会出现找不到类库的问题,先装好类库,再重复执行就好了
二、测试NGINX环境
执行以下语句
$ sudo /etc/init.d/nginx configtest
看到以下提示就说明已经可以具备了启动所有的环境
Testing nginx configuration: nginx.
我遇到的错误是这样的
在启动nginx之前还需要添加nginx用户组,否则会提示
[emerg]: getpwnam(“nginx”) failed |
添加用户组
sudo adduser --system--no-create-home--disabled-password--group nginx |
三、启动NGINX
启动NGINX
sudo /etc/init.d/nginx start
看到以下提示说明启动成功
Starting nginx: nginx.
以上就介绍了NGINX编译安装及配置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
推荐阅读
-
Tomcat安装配置及Eclipse配置详解
-
影音先锋xfplay下载安装及配置图文教程
-
centos7 无线网卡驱动的安装及无线网络的配置详解
-
Android开发应用第一步 安装及配置模拟器Genymotion
-
Vue基于vuex、axios拦截器实现loading效果及axios的安装配置
-
MySQL 5.7.13 源码编译安装配置方法图文教程
-
SharePoint 2007图文开发教程(1) 简介,安装,配置及创建Web应用程序
-
影音先锋xfplay下载安装及配置图文教程
-
centos编译安装mysql 5.6及安装多个mysql实例详解
-
CentOS安装mysql5.7 及简单配置教程详解
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论