DOS命令窗口,生成文件列表命令格式:dir xmlFiles /b >list.txtdir 文件列表相关命令xmlFiles 待生成文件所在文件夹,在dos命令窗口根目录下,省略前缀。别的文件D://,写下具体文件夹地址。/b 生成简略、不带文件地址列表。/b /s 生成简略,带文件地址列表。>...
分类:
其他好文 时间:
2014-09-22 22:59:53
阅读次数:
147
mysql慢查询:慢查询相关的变量slow_query_log:该参数控制着慢查询的状态,1表示开启状态,0表示关闭状态slow_query_log_file:慢查询日志路径long_query_time:最大查询阀值,查询的时间超过这个值就视为慢查询并且将其记录到慢查询日志中,慢查询日志路径通过slow_query_log_f..
分类:
数据库 时间:
2014-09-19 19:32:46
阅读次数:
290
默认是以本机的安装路径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> 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
今天重新调整了下配置文件,之前的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
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中收集日志的时候,会导致写日志的程序不能进行日志的切割(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
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
来自白大师(白鳝)对log file sync等待事件优化的总结,供各位puber们学习参考: 一、 log file sync平均等待事件时间超过7ms,如果等待时间过长,说明log write每次写入的时间过长,如果能够优化redo日志文件...
分类:
数据库 时间:
2014-08-27 20:38:58
阅读次数:
390
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