首页 > 代码库 > nginx源码编译安装
nginx源码编译安装
安装编译所需的包:
[root@xaiofan ~]# yum install -y gcc gcc-c++ autoconf automake
安装nginx使用某些功能需要的包:
[root@xaiofan ~]# yum install -y zlib zlib-devel openssl openssl-devel pcre-devel
创建用户:
[root@xaiofan ~]# useradd -u 8000 -s /sbin/nologin nginx
安装:
[root@xaiofan ~]# cd /soft/
[root@xaiofan soft]# ls
nginx-1.8.0.tar.gz
[root@xaiofan soft]# tar xf nginx-1.8.0.tar.gz
[root@xaiofan soft]# cd nginx-1.8.0
[root@xaiofan nginx-1.8.0]# ./configure --prefix=/usr/local/nginx --with-http_dav_module --with-http_stub_status_module --with-http_addition_module --with-http_sub_module --with-http_flv_module --with-http_mp4_module --with-http_ssl_module
[root@xaiofan nginx-1.8.0]# make&&make install
启动nginx:
nginx源码编译安装
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。