码迷,mamicode.com
首页 >  
搜索关键字:log_file    ( 603个结果
DOS命令生成文件列表
DOS命令窗口,生成文件列表命令格式:dir xmlFiles /b >list.txtdir 文件列表相关命令xmlFiles 待生成文件所在文件夹,在dos命令窗口根目录下,省略前缀。别的文件D://,写下具体文件夹地址。/b 生成简略、不带文件地址列表。/b /s 生成简略,带文件地址列表。>...
分类:其他好文   时间:2014-09-22 22:59:53    阅读次数:147
mysql 慢查询日志分析
mysql慢查询:慢查询相关的变量slow_query_log:该参数控制着慢查询的状态,1表示开启状态,0表示关闭状态slow_query_log_file:慢查询日志路径long_query_time:最大查询阀值,查询的时间超过这个值就视为慢查询并且将其记录到慢查询日志中,慢查询日志路径通过slow_query_log_f..
分类:数据库   时间:2014-09-19 19:32:46    阅读次数:290
php开启慢日志
默认是以本机的安装路径cd /usr/local/php/etc/vim php-fpm.conf; The log file for slow requests; Default Value: not set; Note: slowlog is mandatory if request_slowl...
分类:Web程序   时间:2014-09-19 13:35:55    阅读次数:298
MySQL慢查询日志分割
mysql> set global slow_query_log=0;Query OK, 0 rows affected (0.00 sec)mysql> set global slow_query_log_file='/data/mysql_33096/mysqllog/slow_query_20...
分类:数据库   时间:2014-09-15 15:33:39    阅读次数:255
logstash 配置
今天重新调整了下配置文件,之前的apache_errorlog未匹配到clientip。1.首先修改shipper.confinput{ file{ type=>"apache-accesslog" path=>"/var/log/httpd/access_log" } file{ type=>"apache-errorlog" path=>"/var/log/httpd/error_log" } } filter{ if[type..
分类:其他好文   时间:2014-09-12 17:24:04    阅读次数:786
MySQL中ib_logfile和ibdata1参数大小被修改后
1. 环境说明 RHEL 6.4 x86_64 + MySQL 5.5.37和MySQL 5.6.19 2. 案例:redo log文件(ib_logfile)大小参数被修改:innodb_log_file_size innodb_log_file_size = 256M  -- 修改为200M 版本是5.5的,启动失败,会出现如下错误: InnoDB: Error: log f...
分类:数据库   时间:2014-09-12 01:16:32    阅读次数:290
logstash 收集windows日志--解决日志不能重命名问题
logstash在windows中收集日志的时候,会导致写日志的程序不能进行日志的切割(windows提示,文件被占用)从github上下载useJavatoOpenFilehttps://github.com/edwinf/ruby-filewatch/tree/useJavatoOpenFilewgethttps://github.com/jordansissel/ruby-filewatch/archive/master..
分类:Windows程序   时间:2014-09-03 18:27:57    阅读次数:3214
通过Integer类实现二进制和16进制之间的互相转换,8进制同理
public static String bin2Hex(String binStr) { int deci = Integer.valueOf(binStr,2); return Integer.toHexString(deci); } public static String hex2Bin(String hexStr) { int deci = Integer.value...
分类:其他好文   时间:2014-09-02 17:47:45    阅读次数:422
ORACLE AWR报告之 log file sync等待事件优化的总结【转自ITPUB】
来自白大师(白鳝)对log file sync等待事件优化的总结,供各位puber们学习参考: 一、  log file sync平均等待事件时间超过7ms,如果等待时间过长,说明log write每次写入的时间过长,如果能够优化redo日志文件...
分类:数据库   时间:2014-08-27 20:38:58    阅读次数:390
PHPMYADMIN出错--Cannot start session without errors
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
分类:Web程序   时间:2014-08-26 13:12:36    阅读次数:263
603条   上一页 1 ... 50 51 52 53 54 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!