禅道和svn集成好后,记录也可以同步了,但是在页面上查看提交记录的diff和view时还是提示:Server certificate verification failed: certificate issued for a different hostname, issuer is not trusted,这是什么原因呢
admin123@ubuntu:/opt/zbox/app/zentao/bin$ ./syncsvn.sh
2018-11-28 14:05:35 begin repo 1
svn: E230001: Unable to connect to a repository at URL 'https://192.168.0.209/svn/%B2%E2%CA%D4'
svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted
2018-11-28 14:05:35 start from revision 0
svn: E230001: Unable to connect to a repository at URL 'https://192.168.0.209/svn/%B2%E2%CA%D4'
svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted
Some error occers:
The command is /usr/bin/svn --non-interactive --trust-server-cert --username wt --password wtwtwt --no-auth-cache log -r 0:HEAD -v --xml https://192.168.0.209/svn/%B2%E2%CA%D4/
the svn logs is <?xml version="1.0" encoding="UTF-8"?>
<log>
root@zentao:/opt/zbox/app/zentaopro# /opt/zbox/bin/php /opt/zbox/app/zentaopro/bin/ztcli 'http://隐藏禅道地址/svn-run'
2018-09-06 17:46:58 begin repo 1
2018-09-06 17:46:58 start from revision 40036
2018-09-06 17:46:58 get 1 logs
2018-09-06 17:46:58 begin parsing logs
2018-09-06 17:46:58 parsing log 40036
2018-09-06 17:46:58 40036 alread parsed, ommit it
2018-09-06 17:46:58 save revision 40036
2018-09-06 17:46:58
repo 1 finished
2018-09-06 17:46:58 begin repo 2
2018-09-06 17:46:58 start from revision 31179
svn: E175002: Unexpected HTTP status 500 'Internal Server Error' on '/svn/Microservices/!svn/bc/331'
svn: E160006: Additional errors:
svn: E160006: No such revision 31179
Some error occers:
The command is /usr/bin/svn --config-dir /home/eric/.subversion --non-interactive --username zentao --password zentao4SVN --no-auth-cache log -r 31179:HEAD -v --xml http://隐藏SVN地址/svn/Microservices/
the svn logs is <?xml version="1.0" encoding="UTF-8"?>
<log>
修改了 subversion,区别为:<br>M /vendor/mediatek/proprietary/external/libshowlogo/cust_display.h view diff<br><br>但是當點擊view時,出現以下的錯誤<br>The requested URL /svn-cat--60.html was not found on this server.<br><br>這該如何解決
2018-11-28 14:05:35 begin repo 1
svn: E230001: Unable to connect to a repository at URL 'https://192.168.0.209/svn/%B2%E2%CA%D4'
svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted
2018-11-28 14:05:35 start from revision 0
svn: E230001: Unable to connect to a repository at URL 'https://192.168.0.209/svn/%B2%E2%CA%D4'
svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted
Some error occers:
The command is /usr/bin/svn --non-interactive --trust-server-cert --username wt --password wtwtwt --no-auth-cache log -r 0:HEAD -v --xml https://192.168.0.209/svn/%B2%E2%CA%D4/
the svn logs is <?xml version="1.0" encoding="UTF-8"?>
<log>
admin123@ubuntu:/opt/zbox/app/zentao/bin$
我在windows上远程操作Ubuntu(禅道在Linux系统上),silksvn安装在windows上
/opt/zbox/app/zentao/module/svn/config.php 配置:
$i = 1;
$config->svn->client = 'E:\software\svn\bin\svn.exe';
$config->svn->repos[$i]['path'] = 'http://192.168.0.137:8181/zentao';
$config->svn->repos[$i]['encoding'] = 'utf-8';
$config->svn->repos[$i]['username'] = 'zz';
$config->svn->repos[$i]['password'] = '000000';
SVN配置:
module/svn/config.php
$i = 1;
$config->svn->repos[$i]['path'] = '隐藏URL/svn/隐藏代码库1/';
$config->svn->repos[$i]['username'] = '隐藏账号';
$config->svn->repos[$i]['password'] = '隐藏密码';
$i ++;
$config->svn->repos[$i]['path'] = '隐藏URL/svn/隐藏代码库2/';
$config->svn->repos[$i]['username'] = '隐藏账号';
$config->svn->repos[$i]['password'] = '隐藏密码';
(隐藏的URL,账号,密码都是一样的)
root@zentao:/opt/zbox/app/zentaopro/bin# ./syncsvn.sh 运行没有结果
直接运行其中的内容也没有结果。然而代码库1 的代码可以在禅道记录里带出来