安装Nginx

  1. # 查看相关信息
  1. yum info nginx
  2.  
  3. yum info httpd

  1. # 移除 httpd,也就是 Apache
  1. yum remove httpd -y

  1. # 安装 nginx
  1. yum install nginx -y

  1. #设置 nginx 自启动
  1. chkconfig nginx on

  1. # 查看服务自启动情况
  1. chkconfig
  1. # 启动nginx服务
  1. service nginx start

  1. # 查看端口监听状态
  1. netstat -ntl
  1. # 此时你可以访问试试了
  2. # 例如: http:/IP
  3. # 如果访问不了,请 ping 一下试试
  4. # 或者查看 firewalld 防火墙状态
  1. 启动: systemctl start firewalld
  2. 查看状态: systemctl status firewalld
  3. 停止: systemctl disable firewalld
  4. 禁用: systemctl stop firewalld

centos7用的firewalld

firewalld默认已经安装并启用了,如果需要nginx可以访问需要执行以下命令:

  1. firewall-cmd --permanent --add-service=http
  2. firewall-cmd --permanent --zone=trusted --add-port=/tcp
  1. PS:如果你是用的阿里云
    请到安全组里面添加一个规则 设置可访问80端口 要不然是怎么都不会OK

配置Nginx反向代理

/etc/nginx/nginx.conf

  1. user nginx;
  2. worker_processes ;
  3.  
  4. error_log /var/log/nginx/error.log;
  5.  
  6. pid /var/run/nginx.pid;
  7.  
  8. events {
  9. use epoll;
  10. worker_connections ;
  11. }
  12.  
  13. http {
  14. include /etc/nginx/mime.types;
  15. default_type application/octet-stream;
  16.  
  17. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  18. '$status $body_bytes_sent "$http_referer" '
  19. '"$http_user_agent" "$http_x_forwarded_for"';
  20.  
  21. access_log /var/log/nginx/access.log main;
  22.  
  23. sendfile on;
  24. #tcp_nopush on;
  25.  
  26. #keepalive_timeout ;
  27. keepalive_timeout ;
  28.  
  29. gzip on;
  30.  
  31. # Load config files from the /etc/nginx/conf.d directory
  32. # The default server is in conf.d/default.conf
  33. include /etc/nginx/conf.d/*.conf;
  34.  
  35. include upstream.conf;
  36. include cncounter.com.conf;
  37.  
  38. }

做负载的配置: /etc/nginx/upstream.conf

  1. upstream www.cncounter.com {
  2. server 127.0.0.1:;
  3. }

站点配置文件: /etc/nginx/cncounter.com.conf

  1. server
  2. {
  3. listen ;
  4. server_name www.cncounter.com;
  5. index index.jsp;
  6. root /usr/local/cncounter_webapp/cncounter/;
  7. location ~ ^/NginxStatus/ {
  8. stub_status on;
  9. access_log off;
  10. }
  11.  
  12. location / {
  13. root /usr/local/cncounter_webapp/cncounter/;
  14. proxy_redirect off ;
  15. proxy_set_header Host $host;
  16. proxy_set_header X-Real-IP $remote_addr;
  17. proxy_set_header REMOTE-HOST $remote_addr;
  18. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  19. client_max_body_size 50m;
  20. client_body_buffer_size 256k;
  21. proxy_connect_timeout ;
  22. proxy_send_timeout ;
  23. proxy_read_timeout ;
  24. proxy_buffer_size 256k;
  25. proxy_buffers 256k;
  26. proxy_busy_buffers_size 256k;
  27. proxy_temp_file_write_size 256k;
  28. proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
  29. proxy_max_temp_file_size 128m;
  30. proxy_pass http://www.cncounter.com;
  31. }
  32. }

重启服务

  1. service nginx stop
  2.  
  3. service nginx start
  1.  

CentOS7.3下yum练手安装Nginx的更多相关文章

  1. CentOS7.3下yum练手安装Nginx,支持php5.4

    yum install php php-devel 安装的是5.4 那么安装完毕了,怎么设置nginx和php 解析 1 添加nginx 默认主页index.php  vim .../etc/ngin ...

  2. Centos7.3下mysql5.7.18安装并修改初始密码的方法

    Centos7.3下mysql5.7.18安装并修改初始密码的方法 原文链接:http://www.jb51.net/article/116032.htm 作者:Javen205 字体:[增加 减小] ...

  3. 原创:centos7.1下 ZooKeeper 集群安装配置+Python实战范例

    centos7.1下 ZooKeeper 集群安装配置+Python实战范例 下载:http://apache.fayea.com/zookeeper/zookeeper-3.4.9/zookeepe ...

  4. centos7.5下yum 安装mariadb数据库

    前言 mariadb 和mysql就像亲兄弟的关系,各种语法.驱动啥的,在mysql上能上的,在mariadb上基本都可以直接使用.更多的细节在此不多说. 1.删除旧版本 centos7下默认安装有m ...

  5. CentOS7 linux下yum安装mysql5.7

    文章参考(https://www.cnblogs.com/jorzy/p/8455519.html) 1.创建存放安装包的位置,并且进入该目录 命令mkdir /share 命令cd /share 2 ...

  6. CentOS7.3下yum安装MariaDB10.3.12并指定utf8字符集

    添加MariaDB的yum源,指定安装的版本,然后使用 yum 工具进行安装 参考MariaDB官方网站对应安装方法和步骤 https://downloads.mariadb.org/mariadb/ ...

  7. centos7.7下docker与k8s安装(DevOps三)

    1.系统配置 centos7.7 docker 1.13.1 centos7下安装docker:https://www.cnblogs.com/pu20065226/p/10536744.html 2 ...

  8. centos6.5 64练手安装memcached,PHP调试

    思路  先安装 memcached  然后安装php的基于扩展libmemcache ,然后安装php memcache扩展包,然后把扩展添加到php.ini 1 yum安装 简单方便 yum ins ...

  9. Linux系统 Centos7/Centos6.8 yum命令在线安装 MySQL5.6

    Linux系统 Centos7 yum命令在线安装 MySQL5.6 标签: centosmysqlyum 2015-11-18 17:21 707人阅读 评论(0) 收藏 举报  分类: Linux ...

随机推荐

  1. solr 6.2.1环境搭建

    一:Solr简介 Solr是一个独立的企业级搜索应用服务器,它对外提供类似于Web-service的API接口.用户可以通过http请求,向搜索引擎服务器提交一定格式的XML文件,生成索引:也可以通过 ...

  2. 【转】每天一个linux命令(7):mv命令

    原文网址:http://www.cnblogs.com/peida/archive/2012/10/27/2743022.html mv命令是move的缩写,可以用来移动文件或者将文件改名(move  ...

  3. Django Admin 时间格式化

    http://961911.blog.51cto.com/951911/1557218 修改settings.py,添加一下内容: USE_L10N = False DATETIME_FORMAT = ...

  4. NOI2002银河英雄传说——带权并查集

    题目:https://www.luogu.org/problemnew/show/P1196 关键点在于存下每个点的位置. 自己糊涂的地方:位置是相对于谁的位置? 因为每次给一个原来是fa的点赋位置时 ...

  5. DKhadoop大数据系统架构设计方案

    大数据作为当下最为热门的事件之一,其实已经不算是很新鲜的事情了.如果是三五年前在讨论大数据,那可能会给人一种很新鲜的感觉.大数据作为当下最为重要的一项战略资源,已经是越来越得到国家和企业的高度重视,我 ...

  6. PHP 小技巧之如何避免参数多次传递?

    开发中经常遇到函数参数传递的问题:比如 A调用B,B调用C,C调用D, A->B->C->D 而D方法可能需要一个参数,这个参数只能在A中获取(比如A是控制器方法),这个参数这样一级 ...

  7. 【unittest】unittest单元模块做assert

    我在Windows上开发Python用的版本是2.7,在Ubuntu上开发的版本是2.6,而在Python的unittest模块中,有几个方法是在2.7才有的,它们是: Method Checks t ...

  8. VS2010程序调试

    http://blog.csdn.net/kingzone_2008/article/details/8133048 调试初识及实例.

  9. Postgresql 创建账户,修改密码

    sudo su postgres psql \password postgres输入密码\q 本机调试的时候,最好在装完以后添加一个pgsql的管理员帐号,否则phppgadmin不让登陆 创建用户 ...

  10. Linux下分析磁盘镜像

    我们知道Windows下可以使用WinHex分析磁盘镜像:Linux下可以使用losetup工具.假如我们有一个磁盘镜像disk.img: ## 首先你的系统要支持loop device ## 一般发 ...