本文共 1247 字,大约阅读时间需要 4 分钟。
Ubuntu下Nginx安装
1、选的目录
本人选定的时根目录下的/home目录
2、安装依赖
以下所有的操作都在/home目录下进行
安装openssl,版本自己选
#下载
wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz
#解压
tar zxvf openssl-1.1.0e.tar.gz
#进目录
cd openssl-1.1.0e/
#执行配置
./config
#安装
make & make install
安装zlib
wget https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz
tar zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11/
./configure
make & make install
安装pcre
wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz
tar zxvf pcre-8.40.tar.gz
cd pcre-8.40/
./configure
make & make install
执行完上述操作,依赖就安装好了
3、安装nginx
下载nginx,在http://nginx.org/en/download.html上可以获取
cd /home
wget http://nginx.org/download/nginx-1.11.10.tar.gz
tar zxvf nginx-1.11.10.tar.gz
进入了nginx包的安装目录
然后创建一个nginx的安装目录,本人创建在/home下
cd /home
mkdir nginx
再返回安装包目录,并执行配置命令
cd /home/nginx-1.11.10/
#执行下面命令进行配置(注意观察下面的目录,就是刚才的依赖包目录和创建的nginx待安装目录)
./configure \
--sbin-path=/home/nginx/nginx \--conf-path=/home/nginx/nginx.conf \--pid-path=/home/nginx/nginx.pid \--with-http_ssl_module \--with-pcre=/home/pcre-8.40 \--with-zlib=/home/zlib-1.2.11 \--with-openssl=/home/openssl-1.1.0e
#安装
make $ make install
执行完毕就好了
4、测试下
进入安装目录,并允许下面命令查看
cd /home/nginx
./nginx
结果截图:
搞定!!!!
下面关于Nginx的文章您也可能喜欢,不妨参考下:
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里
转载地址:http://gqvqa.baihongyu.com/