案例环境: 启动一台数据库服务器(Windows Server 2003)的Reporting Service(SQL Server 2008 R2)服务时,出现如下错误信息: System.InvalidOperationException: Cannot start service Report...
分类:
其他好文 时间:
2014-06-23 08:24:07
阅读次数:
415
A lot of computations involve processing a string one character at a time. Often they start at the beginning, select each character in turn, do someth...
分类:
其他好文 时间:
2014-06-23 07:19:02
阅读次数:
257
1.HANDLE CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, // SD SIZE_T dwStackSize, // initial stack size LPTHREAD_START_ROUTINE lpStartAddress...
分类:
编程语言 时间:
2014-06-22 23:48:03
阅读次数:
291
迭代器是C++标准库中的重要组件,特别是在容器内部,没有迭代器,容器也就无所谓存在了。
例如:vector容器简而言之就是3个迭代器 start finish 以及end_of_storage vector的任何操作都离不开这3个迭代器。。
接下来,总结一下C++ 中的迭代器的操作。
C++的迭代器分为5类,依次为 : Input_iterator, output_iterator,...
分类:
编程语言 时间:
2014-06-22 22:21:00
阅读次数:
275
原文首发在github上 MongoNote01.Start
MongoDB is an open-source document database that provides high performance, high availability, and automatic scaling.
这是mongo官方给出的定义。定义里的几个关键点体现了mongo的几个突出的优点:
do...
分类:
其他好文 时间:
2014-06-22 15:31:57
阅读次数:
280
nginx添加系统服务1、编写脚本,名为nginx#!/bin/sh##nginx - this script start and stops the nginx daemon##chkconfig: -85 15#description: Nginx is an HTTP(S) server, H...
分类:
其他好文 时间:
2014-06-22 12:49:41
阅读次数:
199
1、错误描述
严重: ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/FoundationDatabase]]
a...
分类:
Web程序 时间:
2014-06-22 12:12:42
阅读次数:
257
author:jessonlv
date:2014/6/18
1、首先,总结一下memcached的一些基本设置
-p 监听的端口
-l 连接的IP地址, 默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-d install 安装memcach...
分类:
其他好文 时间:
2014-06-22 00:55:42
阅读次数:
208
今天在ubuntu上遇见这个问题。应该是我的第一分区太小了。
解决办法:
bey0nd@wzw:/var$ cd /var
bey0nd@wzw:/var$ rm -rf log
我们删除日志文件
bey0nd@wzw:/var$ /etc/init.d/mysql start
在开启mysql就正常了...
分类:
数据库 时间:
2014-06-21 23:58:25
阅读次数:
416
php处理csv文件类:
http://www.php100.com/cover/php/540.html
<?php
define("CSV_Start", 0);
define("CSV_Quoted", 1);
define("CSV_Quoted2", 2);
define("CSV_Unquoted", 3);...
分类:
Web程序 时间:
2014-06-21 22:31:29
阅读次数:
298