centos7下安装nginx的方法

没有用tar包的方法,太麻烦,还需要找,还需要编译,还需要下乱七八糟的依赖模块。麻烦的一逼,看网上说的。就采用了在线安装的方法。很快。注意一下,这种方法安装是安装到系统默认的位置。我也不知道怎么换。留个坑,有空填,毕竟我也是linux菜逼。先用起来再说。

参考链接:https://blog.csdn.net/monologue_88/article/details/71520272

1.安装nginx

yum install yum-priorities -y
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install nginx
systemctl start nginx.service #启动nginx
systemctl stop nginx.service #停止
systemctl restart nginx.service #重启
systemctl enable nginx.service #设置开机启动

2.更改nginx端口号(根据自己需求)

cd /etc/nginx/conf.d/
vim default.conf
把listen 80改成listen 81
systemctl restart nginx.service #重启nginx 

3.访问http://ip:81即可看到nginx首页

亲测有效

上一篇:新建jsp报错“The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path”


下一篇:PHP学习笔记八【数组】