nginx安装 linux
Posted wxk515
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx安装 linux相关的知识,希望对你有一定的参考价值。
1、安装依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
2、创建一个文件夹
cd /usr/local
mkdir nginx
cd nginx
3、下载tar包
wget http://nginx.org/download/nginx-1.13.7.tar.gz tar -xvf nginx-1.13.7.tar.g
4、执行命令
./configure
make
make install
5、启动ngnix
cd /usr/local/nginx/sbin ./nginx //启动nginx
6、查看是否安装成功
curl 127.0.0.1:80
7、安装成功
8、配置nginx开机自启动
vim /etc/rc.d/rc.local
以上是关于nginx安装 linux的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段