nginx安装(在SUSE11SP1下)
零、说明
1、下载所需要的包,如附件所示
2、下载的包都上传到/root/nginx目录下
3、所有的安装到/usr/local下
一、安装pcre
1、解压tar zxvf pcre-8.35.tar.gz
2、运行配置:./configure --prefix=/usr/local/pcre-8.35 --libdir=/usr/local/lib/pcre
--includedir=/usr/local/include/pcre
3、编译:make
4、make install
二、安装openssl
1、解压tar zxvf openssl-1.0.0h.tar.gz
2、运行配置:./config --prefix=/usr/local/openssh
3、编译:make
4、make install
三、安装zlib
1、rpm -ivh zlib-devel-1.2.3-106.34.x86_64.rpm
四、安装nginx
./configure --prefix=/usr/local/nginx --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --with-http_dav_module --with-http_flv_module --with-http_realip_module --with-http_gzip_static_module --with-http_stub_status_module --with-mail --with-openssl=/root/nginx/openssl-1.0.0h --with-mail_ssl_module --with-debug --http-client-body-temp-path=/var/tmp/nginx/client --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre=/root/nginx/pcre-8.35/
注意--prefix是待安装的目录
--with-pcre=/root/nginx/pcre-8.35/是指第一步解压出来的文件夹
--with-openssl=/root/nginx/openssl-1.0.0h是指第二步解压出来的文件夹
五、启动nginx
/usr/local/nginx/sbin/nginx
当不指定配置文件时,默认配置文件为conf/nginx.conf
修改配置文件,重新载入,可以使用
/usr/local/nginx/sbin/nginx -s reload
- 点赞
- 收藏
- 关注作者
评论(0)