PHP连接Nginx服务器并解析Nginx日志的方法(2)

建议采用第二种方式启动FastCGI进程。
/usr/local/php/sbin/php-fpm还有其他参数,具体为start|stop|quit|restart|reload|logrotate。
每个启动参数的含义如下:

q start,启动PHP的FastCGI进程。

q stop,强制终止PHP的FastCGI进程。

q quit,平滑终止PHP的FastCGI进程。

q restart,重启PHP的FastCGI进程。

q reload,重新加载PHP的php.ini。

q logrotate,重新启用log文件。

reload是个很重要的参数,它可以在PHP的FastCGI进程不中断的情况下重新加载改动过的php.ini,因此通过php-fpm可以平滑变更FastCGI模式下的PHP设置。

[root@server79 etc]# /etc/init.d/php-fpm start

配置nginx的主配置文件,打开与php的接口

[root@server79 conf]# pwd /usr/local/lnmp/nginx/conf [root@server79 conf]# vim nginx.conf user nginx; # location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; //本地9000端口 fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include fastcgi.conf; } [root@server79 conf]# nginx -t^C [root@server79 conf]# nginx -s reload^C [root@server79 html]# pwd /usr/local/lnmp/nginx/html [root@server79 html]# cat index.php <?php phpinfo()?>

测试:浏览器中输入192.168.0.179/index.php,出现php页面


PHP解析Nginx日志
nginx日志格式

access_log日志格式

log_format main '$server_name$remote_addr$remote_user[$time_local]"$request"' '$status$body_bytes_sent"$http_referer"' '"$http_user_agent""$http_x_forwarded_for"';


日志参数

server_name          : 虚拟主机的主机名称 
    remote_addr          : 远程客户端的ip地址 
    remote_user          : 远程客户端用户名称 
    time_local           : 访问的时间与时区 
    status           : 记录请求返回的http状态码 
    body_bytes_sent      : 发送给客户端的文件主体内容的大小 
    http_referer             : 从哪个页面链接访问过来  
    http_user_agent      : 客户端浏览器信息 
    http_x_forwarded_for     : 客户端的真实ip 


日志分割符
使用特殊的不可打印字符^A(ctrl+v,ctrl+a)作为日志分割符


根据关键字过滤文件内容

需求
根据http的请求里是否有“weibo”这个关键字提取文件的内容

php代码

/** * Description:按行读取文件内容进行过滤匹配 * * @return array */ function readFileContent ($filename) { $weibo_content = array(); $fh = @fopen($filename, 'r'); if ($fh) { while (! feof($fh)) { $row = fgets($fh, 4096); $row_arr = explode("", $row); if (isset($row_arr[3]) && preg_match('/weibo/', $row_arr[3])) { $weibo_content[] = $row_arr; } } } fclose($fh); return $weibo_content; }

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/84aa53d6dfbfb477e06e0b0385676656.html