码迷,mamicode.com
首页 > 其他好文 > 详细

suse 安装nginx

时间:2017-07-01 18:24:57      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:eve   ati   get   blank   包名   oca   服务   lib   figure   

 nginx 需要的依赖包

gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel

如果上述包都没有安装,需先安装。如你的服务器是阿里云服务器的话,直接执行zypper install 包名 ,挨个安装。

否则就wget 到服务器之后,自己安装。

进入正题

安装nginx

1,下载nginx 

http://nginx.org/download/

2, 解压 

tar -zxvf nginx-1.12.0.tar.gz

2,配置  --with-pcre 指定在编译中使用的动态库   --prefix 安装位置

./configure --prefix=/usr/local/nginx --prefix=/usr/local/nginx --with-pcre --with-http_stub_status_module --with-http_ssl_module

3,编译,安装

make

make install

4.测试是否安装成功

切换到/usr/local/nginx目录,执行 ./nginx -t,提示如下信息,说明安装成功

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

 

suse 安装nginx

标签:eve   ati   get   blank   包名   oca   服务   lib   figure   

原文地址:http://www.cnblogs.com/yangxuming/p/7102914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!