码迷,mamicode.com
首页 >  
搜索关键字:log-error    ( 361个结果
简单的nginx+2台tomcat负载均衡(自己记录)
#usernobody; #工作进程数(worker),一般等于cpu内核数或者两倍 worker_processes2; #error_loglogs/error.log; #error_loglogs/error.lognotice; #error_loglogs/error.loginfo; #pidlogs/nginx.pid; events{ worker_connections1024; } http{ includemime.types; defau..
分类:其他好文   时间:2015-02-13 11:46:58    阅读次数:206
Google Glog Demo Code.
#include #include #include using namespace std; void ProcessSignal(const char* data, int size) { LOG(ERROR) << __func__ << ":Error..." << std::string(data,size); } int main(int argc, cha...
分类:其他好文   时间:2015-02-13 11:42:22    阅读次数:131
使用cookie保存页面登录信息
1、数据库连接配置页面:connectvars.php2、登录页面:logIn.php Mismatch - Log In Msimatch - Log In '.$error_msg.''; ...
分类:其他好文   时间:2015-02-12 12:21:11    阅读次数:128
git remote log error
使用git pull的时候收到以下信息:error: there are still refs under 'refs/remotes/origin/xxxx'From 10.1.25.57:yyyy/zzzz_server! [new branch] xxxxx -> origin/xxx (u....
分类:其他好文   时间:2015-02-11 20:23:32    阅读次数:460
NGINX基本模块与配置
一、NGINX内置的基本模块 1、NGINX内核模块 2、EVENTS模块 3、HTTP核心模块 二、NGINX基本配置文件 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf...
分类:其他好文   时间:2015-02-03 01:53:48    阅读次数:177
Nginx配置文件(nginx.conf)配置详解
user nginx nginx ; Nginx用户及组:用户 组。window下不指定 ? worker_processes 8; 工作进程:数目。根据硬件调整,通常等于CPU数量或者2倍于CPU。 ? error_log? logs/error.log;? error_log? logs...
分类:其他好文   时间:2015-01-28 16:09:40    阅读次数:276
MySQL配置优化(一)——慢查日志
(1) ERRLOG 包含了当mysqd启动和停止时,以及服务器在运行过程中发生任何严重错误时的相 关信息; 可以用--log-error[=file_name]选项来指定mysqld保存错误日志文件的位置。如果没有给定file_name值,mysqld使用错误日志名host_name.err 并在数据目录中写入日志文件; # * Logging and Replication # Bot...
分类:数据库   时间:2015-01-22 20:23:31    阅读次数:179
03 nginx虚拟主机配置
一:nginx虚拟主机配置#user nobody;#只有一个工作子进程,可以自行修改,但太无益,因为要占用CPU,一般设置为 CPU数*核数worker_processes 1;#error_log logs/error.log;#error_log logs/error.log no...
分类:其他好文   时间:2015-01-22 12:42:13    阅读次数:196
Mysql正常启动之后默认使用的文件
--basedir=/usr/local/mysql--datadir=/usr/local/mysql/data--plugin-dir=/usr/local/mysql/lib/plugin--user=mysql--log-error=/usr/local/mysql/data/localho...
分类:数据库   时间:2015-01-20 20:10:25    阅读次数:199
mysql BINlog日志的3种模式,及binlog模式的选择
log1、错误日志(ErrorLog)作用:记录mysql服务进程mysqld在启动、关闭或运行过程中遇到的错误信息位置:/etc/my.cnf[mysqld_safe]log-error=/data/3306/mysql_oldboy3306.err#此处可以不写等号后边,默认是:/data/主机名2、查询日志(QueryLog)1)、普通查询日志(TheGenera..
分类:数据库   时间:2015-01-20 06:42:57    阅读次数:255
361条   上一页 1 ... 31 32 33 34 35 ... 37 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!