linux下nginx安装
程序员文章站
2022-04-26 13:06:32
...
因为nginx的安装需要依赖其他库,所以要先安装依赖库。以下是具体步奏
cd /usr/local/
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.36.tar.gz
tar -zxvf pcre-8.36.tar.gz
cd pcre-8.36
./configure
make
make install
注意:因为有些64位机器需要加入一下软连接nginx才能读取得到
ln -s /usr/local/lib/libpcre.so.1 /lib64/
2.安装zlib库
cd /usr/local/
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install
3.安装ssl
方法一:
yum -y install openssl openssl-devel
方法二:
cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
./config
make
make install
4.安装nginx
cd /usr/local/
wget http://nginx.org/download/nginx-1.6.2.tar.gz
tar -zxvf nginx-1.6.2.tar.gz
cd nginx-1.6.2
./configure --prefix=/usr/local/nginx-1.6.2 --with-http_ssl_module --with-http_gzip_static_module --with-openssl=/usr/local/ssl
make
make install
//建立一个软连接
ln -s /usr/local/nginx-1.6.2 nginx
注意:
--with-http_ssl_module 是为了配置https访问所需的模块
http://nginx.org/download/nginx-1.2.8.tar.gz
1.安装PCRE库cd /usr/local/
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.36.tar.gz
tar -zxvf pcre-8.36.tar.gz
cd pcre-8.36
./configure
make
make install
注意:因为有些64位机器需要加入一下软连接nginx才能读取得到
ln -s /usr/local/lib/libpcre.so.1 /lib64/
2.安装zlib库
cd /usr/local/
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install
3.安装ssl
方法一:
yum -y install openssl openssl-devel
方法二:
cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
./config
make
make install
4.安装nginx
cd /usr/local/
wget http://nginx.org/download/nginx-1.6.2.tar.gz
tar -zxvf nginx-1.6.2.tar.gz
cd nginx-1.6.2
./configure --prefix=/usr/local/nginx-1.6.2 --with-http_ssl_module --with-http_gzip_static_module --with-openssl=/usr/local/ssl
make
make install
//建立一个软连接
ln -s /usr/local/nginx-1.6.2 nginx
注意:
--with-http_ssl_module 是为了配置https访问所需的模块
--with-http_gzip_static_module 是静态压缩模块
启动nginx::
/usr/local/nginx/sbin/nginx
检查配置文件:
/usr/local/nginx/sbin/nginx -t
指定配置文件启动:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
重启:
/usr/local/nginx/sbin/nginx -s reload
以上就介绍了linux下nginx安装,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
下一篇: PHP常用函数推荐
推荐阅读
-
Windows7下PHP开发环境安装配置图文方法
-
Windows下mysql5.7.10安装配置方法图文教程
-
Windows server 2008 r2下MySQL5.7.17 winx64安装版配置方法图文教程
-
Ubuntu Server 16.04下mysql8.0安装配置图文教程
-
Linux下修改MySQL数据表中字段属性
-
win7-vs2012下安装.net frame work 的过程图文详解
-
基于Fedora14下自带jdk1.6版本 安装jdk1.7不识别的解决方法
-
PHPStudy下如何为Apache安装SSL证书的方法步骤
-
举例讲解Linux系统下Python调用系统Shell的方法
-
解析windows下使用命令的方式安装mysql5.7的方法