centos7 安装nginx1.17.9

三世轮回 提交于 2020-03-11 12:07:47

官网:http://nginx.org/en/download.html

[root@localhost local]# mkdir nginx
[root@localhost local]# cd nginx
[root@localhost nginx]# wget http://nginx.org/download/nginx-1.17.9.tar.gz

[root@localhost nginx]# yum install gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel
[root@localhost nginx]# tar -zxvf nginx-1.17.9.tar.gz
[root@localhost nginx-1.17.9]# cd nginx-1.17.9/
[root@localhost nginx-1.17.9]# ./configure

[root@localhost nginx-1.17.9]# make && make install
[root@localhost nginx-1.17.9]# cd /lib/systemd/system/
[root@localhost system]# vim nginx.service

 

[root@localhost nginx-1.17.9]# cd /lib/systemd/system/
[root@localhost system]# vim nginx.service


[root@localhost system]# systemctl enable nginx.service
[root@localhost system]# systemctl status nginx.service

[重启]

[root@localhost system]# pkill -9 nginx
[root@localhost system]# systemctl start nginx
[root@localhost system]# systemctl status nginx.service

[测试] 访问IP:80

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!