nginx访问日志,错误日志参数说明
Nginx , 日志 / 2016年5月26日

访问日志[Access.log] '$remote_addr $remote_user [$time_local] "$request" $http_host' '$status $upstream_status $body_bytes_sent "$http_referer"' '"$http_user_agent" $ssl_protocol $ssl_cipher $upstream_add...

CentOS Gerrit 安装
CentOS , Linux / 2016年5月26日

Gerrit安装: 下载安装包,访问http://code.google.com/p/gerrit,本文下载的是gerrit-2.4.war 创建数据库 (本文以MySQL为例) # mysql -u root -p mysql> CREATE USER 'gerrit2'@'localhost' IDENTIFIED BY 'gerrit2'; mysql> CREATE DATAB...

PHP时间戳函数总结一览
PHP / 2016年5月26日

一,PHP时间戳函数获取指定日期的unix时间戳 strtotime(”2009-1-22″) 示例如下: echo strtotime(”2009-1-22″) 结果:1232553600 说明:返回2009年1月22日0点0分0秒时间戳 二,PHP时间戳函数获取英文文本日期时间 示例如下: 便于比较,使用date将当时间戳与指定时间戳转换成系统时间 (1)打印明天此时的时间戳strtotime...

清理/var/spool/clientmqueue目录下文件
Linux / 2016年5月26日

问题现象: linux操作系统中的/var/spool/clientmqueue/目录下存在大量文件。 原因分析:系统中有用户开启了cron,而cron中执行的程序有输出内容,输出内容会以邮件形式发给cron的用户,而sendmail没有启动所以就产生了这些文件; 解决办法: 1、 将crontab里面的命令后面加上> /dev/null 2>&1 2、知识点: 2>:重...

MySQL my.cnf参数配置优化详解
Linux , Mysql / 2016年5月26日

Mysql 参数配置案例 PS:本配置文件针对Dell R710,双至强E5620、16G内存的硬件配置。CentOS 5.6 64位系统,MySQL 5.5.x 稳定版。适用于日IP 50-100w,PV 100-300w的站点,主要使用InnoDB存储引擎。其他应用环境请根据实际情况来设置优化。 # 以下选项会被MySQL客户端应用读取。 # 注意只有MySQL附带的客户端应用程序保证可以读取...

Ubuntu 安装 Gerrit
Debain , Linux , Ubuntu / 2016年5月24日

开始前请先确保已安装 Java  ,Gerrit 是基于java 的 ,  安装 JDK CentOS: [root@CentOS ~]# java -version java version "1.7.0_101" OpenJDK Runtime Environment (rhel-2.6.6.1.el6_7-i386 u101-b00) OpenJDK Client VM (build 24....

Debain Ubuntu Jenkins安装配置
Debain , Linux , Ubuntu / 2016年5月18日

安装 编辑文件 /etc/apt/sources.list.d/jenkins.list,其内容如下: deb http://pkg.jenkins-ci.org/debian binary/ 然后执行以下命令: $ wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - $ sud...

apache SetEnv 设置
Apache / 2016年5月16日

Apache 如何在虚拟目录中配置变量 <VirtualHost host1> SetEnv VHOST customers ... </VirtualHost> <VirtualHost host2> SetEnv VHOST salesmen ... </VirtualHost> 在PHP程序中可以使用$_SERVER['VHOST']取得这个环...