Nginx服务配置 (一) 起步
【摘要】
Nginx作为后起之秀,市场占有程度暂时没有Apache高。但是未来替代Apache是趋势,目前Nginx需要就是等待时间来证明它的稳定性。
优点:支持高并发、对内存耗费低、开源软件成本低....缺点:资料少
目的:本文主要是在Centos7.x环境下安装并运行nginx服务
准备
Linux系统...
Nginx作为后起之秀,市场占有程度暂时没有Apache高。但是未来替代Apache是趋势,目前Nginx需要就是等待时间来证明它的稳定性。
- 优点:支持高并发、对内存耗费低、开源软件成本低....
- 缺点:资料少
目的:本文主要是在Centos7.x环境下安装并运行nginx服务
准备
Linux系统环境 CentOS7.5 64bit
-
[root@VM_16_8_centos nginx]# uname -a
-
Linux VM_16_8_centos 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
起步
1.安装gcc编译器等工具
[root@VM_16_8_centos ~]# yum -y install gcc gcc-c++ autoconf automake
2.安装依赖
[root@VM_16_8_centos ~]# yum install -y zlib zlib-devel openssl openssl-devel pcre pcre-devel
3.下载安装
[root@VM_16_8_centos ~]# yum install -y nginx
4.启动服务程序 查看服务状态 将服务加入开机启动项
-
[root@VM_16_8_centos ~]# systemctl start nginx
-
[root@VM_16_8_centos ~]# systemctl status nginx
-
[root@VM_16_8_centos ~]# systemctl enable nginx
-
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
5.重启nginx
[root@VM_16_8_centos ~]# systemctl restart nginx
6.停止nginx
[root@VM_16_8_centos ~]# systemctl stop nginx
效果
启动nginx服务后,可以用浏览器访问ip地址
文章来源: blog.csdn.net,作者:hinzer,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/feit2417/article/details/84982264
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)