CentOS7中使用yum安装Nginx的方法

CentOS7中使用yum安装Nginx的方法,第1张

1、添加源

Nginx官网提供了Centos的源地清判址。执行命令添加源答高改:

2、安装Nginx

通过yum search nginx看看是否已经添加源成功。如果成功则执行念如下列命令安装Nginx。

3、启动Nginx并设置开机自动运行

结束----就这么简单

安装环境为:最小化安装的centos7,关闭seliunx。

最小化安装centos:

关闭selinux

sed –i ‘s/SELINUX=enforcing/SELINUX=disabled/g’ /etc/selinux/config

开始安装nginx1.7.8

创樱枣培建群组

groupadd www

创建一个用户,不允许登陆和不创主目录

useradd -s /sbin/nologin -g www -M www

#下载最新版nginx

wget -C

tar zxvf nginx-1.7.8.tar.gz

#编译基本能运行的nginx

./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module

make

make install

如果有错误提示:

./configure: error: C compiler cc is not found

解脊唯决方法:

yum install gcc gcc-c++

如果岩蚂有错误提示:

./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.

解决方法:

yum install pcre-devel

如果有错误提示:

./configure: error: SSL modules require the OpenSSL library.

您好,1.先从nginx官网下载最新的版本http://nginx.org/download/nginx-1.7.8.tar.gz2.解压nginx-1.7.8.tar.gz,然后执行下面桥尘 *** 铅消粗作即可./configure--prefix=/槐镇usr/local/nginxmakemakeinstall然后按照如下步骤安装nginx之前需要先安装pcre


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12515155.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存