发布时间:2016-06-01 15:13:56
应用报错,磁盘空间不足。使用df -h查看,磁盘占用为100%。删除了几个G的文件,再用df -h查看,无变化。使用du -hs /,结果也就50%。从网上查到,删除被运行中的应用程序使用的文件,是不会释放磁盘空间的。于是,使用lsof|grep delete,查到有些文件被sshd/sftp-server占用。断开sftp客户端后,再lsof就没有delete.........【阅读全文】
发布时间:2016-05-23 18:21:07
在weblogic上部署应用,请求总是返回未认证。http请求header中包含http basic认证头,是应用程序用的。请求:Authorization: Basic dGVzdDp0ZXN0应答:HTTP/1.1 401 UnauthorizedWWW-Authenticate: Basic realm="WebLogic Server"原因是,weblogic默认会对包含http basic认证头的请求进行验证(weblogic自己的验.........【阅读全文】
发布时间:2016-05-19 15:48:23
CentOS7开始,从/etc/init.d脚本改为了systemctl管理服务。本文记录了把tomcat7加入systemd管理的步骤。首先,需要为tomcat配置pid。bin/catalina.sh# Copy CATALINA_BASE from CATALINA_HOME if not already set[ -z "$CATALINA_BASE" ] && CATALINA_BASE="$CATALINA_HOME"# 设置.........【阅读全文】
发布时间:2016-05-13 20:37:04
# mysqlslap --no-defaults --login-path=m --create-schema=test --concurrency=1 --iterations=10000 --query=insertIntoTest.sqlBenchmarkAverage number of seconds to run all queries: 0.003 secondsMinimum number of seconds to run all queries: 0.001 seconds.........【阅读全文】