if (CharMatcher.anyOf("_").matchesAnyOf(rolename)) { log.error("rolename cannot contains '_':" + rolename); throw new SQLException(new ErrorVO...
分类:
其他好文 时间:
2015-01-12 12:40:41
阅读次数:
328
总体而言,nginx的配置比起apache来是要简洁很多,而言容易理解得多的。我们先看一个简化版的配置文件nginx.conf:#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.lo...
分类:
其他好文 时间:
2015-01-12 00:16:56
阅读次数:
253
#user nobody;worker_processes 1;error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;pid logs/nginx.pid;events ...
分类:
其他好文 时间:
2015-01-06 21:26:29
阅读次数:
198
nginx.confuser www www;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pi...
分类:
其他好文 时间:
2015-01-05 23:21:18
阅读次数:
207
查看日志:/home/nbu/xu/hadoop/logs/
vi hadoop-nbu-datanode-hadoop211.log
ERROR org.apache.hadoop.hdfs.server.datanode.DataNode: java.io.IOException: Incompatible namespaceIDs in /home/nbu/xu/app/had...
分类:
其他好文 时间:
2014-12-09 15:44:05
阅读次数:
137
图片上传请求由Node处理,图片访问请求由Nginx处理。1、Nginx配置#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log lo...
分类:
Web程序 时间:
2014-11-25 18:13:30
阅读次数:
225
加入头文件
#include <android/log.h>
函数
__android_log_print(ANDROID_LOG_INFO,LOG_TAG,TITLE)
第一个参数ANDROID_LOG_INFO(还有ANDROID_LOG_ERROR等),表示什么类型
的输出,上面的函数相当于android的j...
分类:
移动开发 时间:
2014-11-20 20:31:01
阅读次数:
146
#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/ngin...
分类:
其他好文 时间:
2014-10-23 09:25:13
阅读次数:
117
1 #user nobody; 2 worker_processes 1; 3 4 error_log logs/error.log; 5 error_log logs/error.log notice; 6 error_log logs/error.log info;...
分类:
其他好文 时间:
2014-10-22 20:02:16
阅读次数:
270
首先配置下nginx,确保可以不使用index.php来访问server{ listen 8082; server_name yii2.dev; access_log logs/yii2.access.log; error_log logs/yii2.error.l...
分类:
Web程序 时间:
2014-10-17 15:20:03
阅读次数:
786