最近研究GIT连接TFS.在用VS2013上使用GIT成功连接了TFS服务器. TFS同时包含GIT团队项目和常规团队项目 之后关机重启后,连接TFS团队项目时发生错误,报TF31004错误. 解决过程: 重启VS,无效. 重启电脑,无效. 百度无有效解 最后goole,找到解决方案: http://stackoverflow.com/questions/19125062/error-tf31004-connecting-vs2012-to-tfs 具体处理过程: 删除了本地计算机的TFS wi…
win7中 SQL server 2005无法连接到服务器,错误码:18456.. 数据库刚装完.我用Windows登陆  结果登陆不上去.. 选中SQL Server Management Studio 右键以管理员身份运行. 弄的我找了半天..…
=============================================== 20170704_第一次修改                       ccb_warlock =============================================== 这个问题查了很久没找到解决这个问题的解答,故针对我遇到的这种情况在这做个记录. 背景: 由于项目需求需要到TFS(Team Foundation Server)上创建项目,像之前一样:打开VS -> 菜单栏的&qu…
###  Error querying database.  Cause: com.ibm.db2.jcc.am.SqlDataException: DB2 SQL Error: SQLCODE=-420, SQLSTATE=22018, SQLERRMC=DECFLOAT, DRIVER=3.66.46 ### The error may exist in file [xxxx.xml] ### The error may involve 持久层接口中方法 ### The error occu…
使用SecureCRT连接到远程Ubuntu,连接失败报The remote system refused the connection. 进入Ubuntu系统,终端中敲入以下命令: ps -ef|grep ssh 发现只有ssh-agent进程,而没有sshd进程,缺省情况下没有安装ssh-server 在终端中敲入以下命名安装openssh-server即可 sudo apt-get install openssh-server 安装过程如下,网络快的话两分钟左右,安装完毕后再次使用ps -…
一.curl常见schannel错误 schannel: SNI or certificate check failed: SEC_E_WRONG_PRINCIPAL<0x80090322> 该错误主要原因是服务端使用了SNI技术(就是在同一台服务器配置了多个安全证书),而xp不支持SNI,所以xp在访问https接口时,如果服务器默认的第一个证书跟https请求证书不一致,就会导致证书验证失败. schannel: next InitializeSecurityContext failed:…
可能原因:mysql服务未启动 解决办法:进入到计算机管理,找到服务,然后找到mysql服务,并启动该服务…
问题:利用Elasticsearch -head插件不能查看数据或者在Elasticsearch -linux的curl命令操作时总是提示: {"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406} 解决办法: 1.进入head安装目录: 2.cd _site/ 3.编辑vendor.js  共有两处 ①.68…
报错信息  Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'database.table.column' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by  翻译过来就是在gr…
如下所示,PHP连接MySQL报错: SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket 'MySQL' (2) 测试代码如下: <?php try { $dsn = 'mysql:dbname=php-note;host=localhost;port=3306;charset=utf8'; $username = 'root'; $password = 'root'; new PDO( $dsn,…