码迷,mamicode.com
首页 >  
搜索关键字:logs    ( 26271个结果
Memcached Java Client with sample program--reference
In my previous post, I listed down most commontelnet commands for memcachedwith sample execution terminal logs. Today I want to discuss about the Memc...
分类:编程语言   时间:2014-06-28 17:26:15    阅读次数:323
最简单的统计appche站点IP访问量的shell脚本
经常需要根据IP地址统计apache站点访问量,最基本的脚本.根据IP访问量降序排列:#!/bin/bash #Script_name:access_count acc_log=/usr/local/apache2/logs/access_log /bin/awk‘{print$1}‘$acc_log|sort|uniq-c|sort-nr执行效果:[root@zabbix~]#shaccess_count 94989192.168.1..
分类:移动开发   时间:2014-06-16 18:18:50    阅读次数:332
org.apache.catalina.core.StandardContext startInternal SEVERE: Error listenerStart
今天将项目部署到Centos 6.3 x64上面的tomcat 7.0.54,访问链接出现了404错误。后来查看了/usr/local/apache-tomcat-7.0.54/logs/catalina.out 文件,出现了Error listenerStart 。org.apache.cat.....
分类:其他好文   时间:2014-06-14 23:44:17    阅读次数:740
未能为数据库 '*'中得对象'*'分配空间,因文件组'PRIMARY'已满
服务器使用mssqlserver2005,最近经常出现无法新增信息错误,查看日志,发现严重错误提示,内容大致为:无法为数据库 'weixin_main' 中的对象 'dbo.wx_logs'.'PK_wx_logs_id' 分配空间,因为 'PRIMARY' 文件组已满。请删除不需要的文件、删除文件...
分类:数据库   时间:2014-06-14 19:14:21    阅读次数:685
linux命令说明
启动linux进入到tomcat安装目录 /apache-tomcat-6.0.26/bin下运行 #./startup.sh start 停止tomcat时运行命令: #./shutdown.sh start 远程查看tomcat的控制台 进入tomcat/logs/文件夹下 键入指令:tail ...
分类:系统相关   时间:2014-06-12 17:33:25    阅读次数:334
Nginx之——其他配置
1、日志切割Nginx的日志切割有两种方式:第一种是编写shell脚本,思路是:先把需要切割的日志重命名,然后使用kill-USR1`catPID`命令生成新的日志文件。第二种是使用系统自带的logrotate工具来实现。在/etc/logrotate.d/下新建一个配置文件,内容如下:/tol/app/nginx/logs/*.lo..
分类:其他好文   时间:2014-06-10 22:47:43    阅读次数:405
5 Ways to Use Log Data to Analyze System Performance--reference
Recently we looked across some of the most common behaviors that our community of 25,000 users looked for in their logs with a particular focus on web...
分类:其他好文   时间:2014-06-08 22:19:29    阅读次数:438
Nginx之——配置文件解析
主配置文件(nginx.conf):usernginxnginx; #运行用户worker_processes8; #启动进程数,一般等于CPU的总核数或两倍,太多会占用CPU增高。error_log/tol/app/nginx/logs/nginx_error.logcrit; #定义错误日志文件及级别,有[debug|info|notice|warn|error|crit]pid/tol/app/nginx/lo..
分类:其他好文   时间:2014-06-08 02:31:34    阅读次数:320
Linux系统挂载NTFS文件系统(转载)
转自:http://hermesbox.blogbus.com/logs/47386987.html 今天尝试并成功的将一块500G的移动硬盘挂载到了RHEL5的系统上,甚感欣慰。想到也许以后自己或其他同学们会有类似经历,于是尽量细致的记录于此。 无论是一块安装了Windows/Linux双系统的硬...
分类:系统相关   时间:2014-06-08 01:43:05    阅读次数:407
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!