欢迎来到代码驿站!

Nginx

当前位置:首页 > 服务器 > Nginx

linux下 nginx监控问题

时间:2022-03-31 08:33:54|栏目:Nginx|点击:

nginx安装

保证虚拟机能上网:

1、root用户登录

2、查看nginx安装信息:yum info nginx

3、如果找不到nginx信息,则执行如下:

rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

4、再查看nginx的安装信息

5、有咯信息,则安装nginx命令:yum install nginx

6、查看http://192.168.1.7 如果出现nginx的页面就ok咯

nginx.conf配置文件详情

user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid    /var/run/nginx.pid;

events {
  worker_connections 1024;
}

http {
  include    /etc/nginx/mime.types;
  default_type application/octet-stream;
  log_format main '$remote_addr - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';
log_format liuhao  '$remote_addr^A$msec^A$http_host^A$request_uri';
  access_log /var/log/nginx/access.log main;
  sendfile    on;
  #tcp_nopush   on;
  keepalive_timeout 65;
  #gzip on;
 #  include /etc/nginx/conf.d/*.conf;
server {
  listen    80;
  server_name localhost;
  #access_log /var/log/nginx/host.access.log main;
location ~ .jpg {
    root  /data/www/web;
    index index.html index.htm;
 access_log /var/log/nginx/gp1918.log liuhao;
  }
  location ~ / {
    root  /usr/share/nginx/html;
    index index.html index.htm;
 access_log /var/log/nginx/access.log main;
  }
}
}

在/etc/nginx下的nginx.conf是自定义配置文件 直接配置以上内容

在nginx/conf.d下的默认配置文件 不用修改

替换完后 重启NGINX服务 service nginx restart

分别开启两个窗口 进行监控

tail -f /var/log/nginx/access.log
tail -f /var/log/nigx/gp1918.log

gp1918.log.log 需要自己创建

mkdir /data/www/web/test.jpg; 需要自己创建
在此目录下 创建一个jpg文件 或者直接放一个图片

在网页输入自己的 ip/test.jpg

最后看监控

另外一个监控是 当你访问ip时 才有

总结

上一篇:nginx安装完成无法解析php解决方法

栏    目:Nginx

下一篇:基于http.server搭建局域网服务器过程解析

本文标题:linux下 nginx监控问题

本文地址:http://www.codeinn.net/misctech/197751.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有