安装Nginx之前首先需要先安装一下pcre和openssl。
yum -y install pcre* yum -y install open*
之后需要查看一下是否安装了httpd相关的软件包,如果存在请卸载。
接下来准备nginx-1.6.0.tar.gz软件包。
完成以上操作后就可以开始源码安装Nginx了(*^^*)
首先切换到桌面(因为我把软件包放到了桌面上了)
cd cd 桌面
这里教一下大家怎么切换中英文输入法,Windows+空格。
解压这个软件到/usr/src(通常解压软件包都放到/usr/src里)
tar -zxf nginx-1.6.2.tar.gz -C /usr/src/
去到解压后的目录
cd /usr/src/nginx-1.6.2/
执行configure文件
./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre
运行后你会发现报错,(
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
)不要慌,说明第一步安装pcre*和open*和没装上,重新安装一下就好了,安装命令第一步有。
如果是跟着我一步一步来的那么运行configure后会出现以下结果,如图所示;同时也恭喜你环境配置成功!!!
成功后进行编译和安装
make && make install
&=shift+7 == 和
完成后如图示
接下来根据安装选项创建程序用户nginx
useradd -M -s /sbin/nologin nginx
为了使命令可以执行,建立相应软连接
ln -s /usr/local/nginx/sbin/nginx /usr/sbin
建立后修改配置文件
vim /usr/local/nginx/conf/nginx.conf
修改内容根据自己的需求来更改,我就不多做说明了。
接下来 nginx -t 检验是否安装成功。
如果跟图片一样,那么you are so good !!!恭喜你安装成功。
操作基本如上,但实际还有有修改配置文件的操作,这个主要还是要根据个人的需要。我这有一波操作步骤,有谁需要的,可以评论找我(#^.^#)如果有哪里不懂的,也可以评论找我,在我力所能及的情况下,我会倾囊相助的(~ ̄ ̄)~——来自一位刚接触Linux不久的少年
共同学习,写下你的评论
评论加载中...
作者其他优质文章