svn: E170013: Unable to connect to a repository at URL ‘‘ svn: E230001: Server SSL certificate

这篇具有很好参考价值的文章主要介绍了svn: E170013: Unable to connect to a repository at URL ‘‘ svn: E230001: Server SSL certificate。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

具体错误提示信息如下:

svn: E170013: Unable to connect to a repository at URL ‘https://127.0.0.1/svn/xxxx/trunk’ svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted

意思是服务器的SSL证书验证失败,证书为不同主机名颁发。
解决方法:打开CMD并执行如下命令

svn ls https://ip/svn/xxxx   将ip替换为你要访问的svn仓库的ip,将xxxx替换为项目目录地址

然后会让你选择R(拒绝)、t(暂时接受)、或者p(永久接受)
我们输入p后按回车,会提示输入当前电脑用户的密码,然后提示输入svn的账号密码,按着提示操作就行
都输入完成后,回车就可以解决了
svn: e170013: unable to connect to a repository at url,svn,ssl,网络协议

由于正确的路径没有任何记录,故用错误演示来记录,大概意思是一样的,便于各位进行查看文章来源地址https://www.toymoban.com/news/detail-783558.html

到了这里,关于svn: E170013: Unable to connect to a repository at URL ‘‘ svn: E230001: Server SSL certificate的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Unable to establish SSL connection.

    前言: 出现Unable to establish SSL connection.无法建立连接错误,如果跳过证书验证后(wget --no-check-certificate)wget一直0%,那么有可能是SELinux导致的。 问题出现原因: selinux 是一种安全增强机制,可以限制程序和用户的访问权限,以提高系统的安全性。 然而,有时候 selinux 的设置

    2024年02月07日
    浏览(41)
  • 解决fatal: unable to connect to github.com

    命令:git clone git://github.com/xxxx 错误信息: fatal: unable to connect to github.com: github.com[0: 你的IP]: errno=Operation timed out 原因: 需要用https才能读到数据 解决方法:输入命令 如果再次git clone出现报错: fatal: unable to access ‘https://github.com/robbyrussell/oh-my-zsh.git/’: LibreSSL SSL_connect: SSL_

    2024年02月11日
    浏览(52)
  • svn: E230001: Server SSL certificate verification failed:certificate issued for a different hostname

    最近新安装了2023版本的idea和SVN客户端,但是用idea去连接SVN,使用SVN下载和更新项目的时候,报错: IDEA报错截图 服务器SSL证书验证失败,需要登录。 进入目标目录下,右键-SVN Checkout… 输入自己的项目svn地址,点击OK。 然后弹出登录框,根据提示输入svn账户名UserName和密码

    2024年02月14日
    浏览(42)
  • PostgreSQL Unable to connect to server: XXX port 5432 failed: Connection refused

    一、问题说明 使用 pgAdmin 连接本地的 PostgreSQL 时,报错“Unable to connect to server: XXX port 5432 failed: Connection refused”。 截图如下: 二、问题原因 通过报错提示信息可以看出:客户端工具访问被拒绝的原因是,由于本地的 PostgreSQL 服务没有启动。 三、解决方案 启动本地的 Postg

    2024年02月07日
    浏览(52)
  • EKS 解决Unable to connect to the server 问题

    报错内容如下 1、先配置日志查询我们的eks所属用户 2、查询日志 执行以下查询语句 3、查询当前主机aws configure 4、执行操作远程k8s 报错如下 5、降低kubectl版本 各版本下载地址 https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html

    2024年02月12日
    浏览(60)
  • Unable to add a source with url `` named `-1`.

    今天在发布私有库的时候,执行 pod repo push name name.podspec --allow-warnings --verbose .的时候遇到下面这个错误 Unable to add a source with url `` named -1 . (/usr/bin/git clone – -1 fatal: repository ‘’ does not exist ) You can try adding it manually in /Users/****/.cocoapods/repos or via pod repo add . 解决方法: pod rep

    2024年02月15日
    浏览(42)
  • Portainer连不上docker Unable to retrieve images或Unable to connect to the Docker environment

    系统:Centos docker:23.0.6 portainer:2.19.2 服务器A and 服务器B A,B都有Docker 现象 1、在A上安装了Portainer后,local evironment 可以显示images数量等信息,但无法显示详情,出现Unable to connect to the Docker environment 2、尝试         编辑docker.service         找到 ExecStart字段修改如下  

    2024年04月13日
    浏览(49)
  • RedisConnectionException: Unable to connect to redis.xxx.com:6379

    ping远程试试 telnet ip port netstate -ntlp 查看配置源 vim redis.conf redis配置文件含义 #是否作为守护进程运行 daemonize no #Redis 默认监听端口 port 6379 #客户端闲置多少秒后,断开连接 timeout 300 #日志显示级别 loglevel verbose #指定日志输出的文件名,也可指定到标准输出端口 logfile redis.lo

    2024年01月24日
    浏览(51)
  • Jenkins连接git时出现“Failed to connect to repository : Command ... HEAD“ returned status code 128:”问题解决

    目录 问题 解决 配置仓库时报错: Failed to connect to repository : Command \\\"git.exe ls-remote -h -- http://192.168.0.XXX/XXX/cicd.git HEAD\\\" returned status code 128: stdout: stderr: remote: The project you were looking for could not be found. fatal: repository \\\'http://192.168.0.XXX/XXXX/cicd.git/\\\' not found   原因是我的gitlab仓库设置了权

    2024年02月12日
    浏览(48)
  • Zookeeper Unable to connect to zookeeper server within timeout: 15000

    Zookeeper Unable to connect to zookeeper server within timeout: 15000 一般情况都是防火墙没关,或者Zookeeper 没启动。 如果不是上面两种情况,则可能跟我一样在Spring初始化过程中去连接了Zookeeper ,由于应用启动时间超过15000,把超时时间加大即可。

    2024年02月12日
    浏览(43)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包