检查sharepointlog,发现以下错误:ThereisnoWebnamed"/test/test".并且开发人员在查询所有网站时,查询到这个网站就报错在网站中无法打开该网站,也无法看到该网站,使用工具SPCAMLEDITOR可以看到该网站存在。但属性基本上都是报错进入mossserver使用命令查看:C:\>stsadm-..
分类:
Web程序 时间:
2017-03-21 20:05:25
阅读次数:
172
Nginx作为Web服务器时,其配置文件参数如下:#usernobody; #默认的运行用户worker_processes1; #工作进程数,建议和CPU核心数一致,默认为1#error_loglogs/error.log;#error_loglogs/error.lognotice;#error_loglogs/error.loginfo;#pidlogs/nginx.pid;events{worker_..
分类:
Web程序 时间:
2017-03-16 22:43:41
阅读次数:
175
Nginx不但是轻量级的Web服务器,还是一款出色的反向代理服务器软件,其配置文件如下:#usernobody;worker_processes1; #工作进程数#error_loglogs/error.log;#error_loglogs/error.lognotice;#error_loglogs/error.loginfo;#pidlogs/nginx.pid;events{worker_connections10..
分类:
其他好文 时间:
2017-03-16 22:22:18
阅读次数:
198
数据库yuminstallmariadb-server-ysystemctlstartmariadbnetstat-antlpe|grepmysqldvim/etc/my.cnf---------------------#instructionsinhttp://fedoraproject.org/wiki/Systemdskip-networking=1[mysqld_safe]log-error=/var/log/mariadb/mariadb.logpid-file=/var/run/mariad..
分类:
数据库 时间:
2017-03-10 19:36:01
阅读次数:
155
错误日志类型类型1:upstreamtimedout类型2:connect()failed类型3:noliveupstreams类型4:upstreamprematurelyclosedconnection类型5:104:Connectionresetbypeer类型6:clientintendedtosendtoolargebody类型7:upstreamsentnovalidHTTP/1.0header详细说明类型错误日志原因解决办法..
分类:
其他好文 时间:
2017-03-03 19:46:58
阅读次数:
356
简单使用beanshell的内容,进行测试内容的判断 这里通过断言内容,修改if的条件,达到发送警报邮件的功能 beanshell 代码如下: SampleResult 等效于 prev log.error(vars.get("ReqStatus")); int count=Integer.pars ...
分类:
系统相关 时间:
2017-03-01 14:14:52
阅读次数:
523
#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; ev ...
分类:
其他好文 时间:
2017-02-23 11:53:54
阅读次数:
202
Mysql的日志种类查询日志:general_log慢查询日志:log_slow_querles错误日志:log_error,log_warnings二进制日志:binlog中继日志:relay_log事务日志:innodb_log查询日志记录查询语句,日志存储位置:文件:file表:table(mysql.general_log)general_log={ON|OFF}general..
分类:
数据库 时间:
2017-02-22 23:15:13
阅读次数:
286
如果nginx的server里没配置access.log,nginx会默认将server的访问日志记录到access.log, 关闭方法: 在nginx.conf配置文件中, 在全局配置中添加 error_log off; 在http块中添加:access_log off; 然后在server中单独 ...
分类:
数据库 时间:
2017-02-07 12:28:56
阅读次数:
159
promise TemplateService.uploadTempate(fieKey).then(function(result){sef.memKay = result.data},function(error){console.log(error)}) 只要有then,它就是一个promis ...
分类:
其他好文 时间:
2017-02-06 23:54:23
阅读次数:
356