1 redis简单的配置文件
[root@192.168.56.159 7007]cat redis.conf
daemonize yes
pidfile /var/run/redis7007.pid
port 7007
tcp-backlog 511
timeout 0
tcp-keepalive 0
loglevel notice
logfile "/tmp/redis7007.log"...
分类:
其他好文 时间:
2016-05-12 21:34:26
阅读次数:
178
#ifndef _HJ_STL_BST_H_
#define _HJ_STL_BST_H_
/*
* Author:hujian
* Time:2016/5/8
* discription:this file is about binary search tree.
*
* NOTICE:you should not use hjstl_vector in anywhere.
* beca...
分类:
编程语言 时间:
2016-05-12 14:52:03
阅读次数:
240
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information re...
分类:
其他好文 时间:
2016-05-12 11:46:20
阅读次数:
198
Tab选项卡切换
基本代码
HTML代码:
div id="notice" class="notice">
div id="notice-tit" class="notice-tit">
ul>
li>a href="#">公告a>li>
li>a hre...
分类:
其他好文 时间:
2016-05-07 08:37:02
阅读次数:
227
Html代码 #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. ...
分类:
其他好文 时间:
2016-05-05 12:47:31
阅读次数:
206
今天打开公司的监控系统怎么都访问不了,登陆系统tail-Fn/usr/loacl/apache/logs/error.log发现大量的[notice]childpid8759exitsignalSegmentationfault(11)报错free-m查看free只剩下157估计是内存不够了,在网上找解决方案都不成。后来找到一个说是把缓存清下就试了下果然不报..
分类:
其他好文 时间:
2016-05-02 00:46:03
阅读次数:
175
#定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]error_log /var/ ...
分类:
其他好文 时间:
2016-04-27 12:55:02
阅读次数:
210
首先,这个不是错误,是warning。所以如果服务器不能改,每个变量使用前应当先定义。 方法1:服务器配置修改 修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE 方法2:对变量进行初始化,规范书写(比较烦琐,因为有大量的变量)。但还没有找到好定义方法 ...
分类:
Web程序 时间:
2016-04-27 00:22:15
阅读次数:
234
错误处理: 1.语法错误 2.运行时的错误 3.逻辑错误 错误报告: 错误E_ERROR 警告E_WARNING 注意E_NOTICE 开发阶段:开发时输出所有的错误报告,有利于我们进行调试 运行阶段:不要让程序输出任何一种错误报告 将错误报告写入日志中 一.指定错误报告error_reportin ...
分类:
Web程序 时间:
2016-04-25 19:42:01
阅读次数:
150
摘自:http://sushener.spaces.live.com/blog/cns!BB54050A5CFAFCDD!435.entry PHP5一个很让人恼火的一点就是BC(向后兼容)不是很理想。比如说,很多的PHP4的脚本都可能会出现下面的错误提示:Notice: Only variable ...
分类:
Web程序 时间:
2016-04-24 14:16:39
阅读次数:
385