Subversion clients receive the following error message when attempting to connect to VisualSVN Server: svn: OPTIONS of 'https://server.domain.local/svn/repo': SSL handshake failed: SSL error:Key usage violation in certificate has been detected. (http…
在Linux上检出windows SVN服务器上项目时出现了SSL handshake failed: SSL error: Key usage violation in certificate has been detected.的错误. 最后通过从网上检索找到了一个答案: 可以同时解决掉在Ubuntu上和CentOS上检出失败的问题. 在Windows注册表中加入注册项: 32位机器: [HKEY_LOCAL_MACHINE\SOFTWARE\VisualSVN\VisualSVN Serv…
在Linux下使用subversion尝试链接VisualSVN server搭建的svn库,可能会报下面错误, svn: OPTIONS of 'https://server.domain.local/svn/repo': SSL handshake failed: SSL error:Key usage violation in certificate has been detected. (https://server.domain.local) google了这个问题,发现这个在Visu…
局域网安装了个SVN在checkout的时候报错 SSL handshake failed: SSL error: Key usage violation in certificate has been detected. 解决方法(亲测):1.如果你没安装wget先安装wget. yum install rpm-build wget 2.wget ftp://ftp.icm.edu.pl/vol/rzm2/linux-fedora-secondary/releases/15/Everythin…
CentOS/RHEL yum 安装的 subversion 是 1.6.11 版本,连VisualSVN服务器时会有"Key usage violation"的错误 将subversion升级到最新版可解决该问题 1.添加源 vim /etc/yum.repos.d/wandisco-svn.repo [WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/$releasev…
ubuntu系统 #!/bin/shecho "This script will reconfigure subversion to work with certs correctly."echo "Steps outlined by dcrooke and compiled into this script by Kalosaurusrex"echo "Please see the ubuntuforums.org thread for more inf…
在linux服务器下载https链接的svn源码时出现:SSL handshake failed: SSL error: Key usage violation in certificate has been detected 错误原因是windows使用的证书linux不能识别 Add the following registry value to the Windows registry:(我的是64位) for 32-bit system:(运行regedit->找到下面的注册表项->增…
markdown截图不方便,本教程不用markdown编写 首先参考文章 https://www.jianshu.com/p/2604e53a7f6a?from=singlemessage 安装完后无法通过http://ip:8080访问,问题是我没有打开阿里云的8080端口 我还添加了8088端口,因为添加8080后依旧无法访问,查了下说是端口冲突.这样再通过上面的访问就能成功看到tomcat的界面了. tomcat的开启和关闭 首先,进入Tomcat下的bin目录 cd /usr/local…
最近有个问题,本人在阿里云买了linux服务器,用wordpress做了一个博客网站www.bravetiger.cn,现在想加一个电商系统进去,假设二级域名为:shop.bravetiger.cn, 都是指向的阿里云同一个IP,同一个主机. 我找了下方法,应该是做一个虚拟主机配置即可,方法如下: linux系统配置Apache虚拟主机实例: 1.安装apache和php: yum install httpd php 2.假设服务器的IP是192.168.1.1,有两个域名指向该IP,分别是do…
1.修改MySQL的登录设置: # vi /etc/my.cnf 在[mysqld]的段中加上一句:skip-grant-tables 例如: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock skip-grant-tables 保存并且退出vi. 2.重新启动mysqld  停止 MySQL 数据库 /opt/lampp/lampp stopmysql 只启动 MySQL 数据库 /opt/lampp/lampp…