I have a remote git repository.
I tested connection on Crucible,error message as below:
Error testing connection.
Error talking to repository:
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://XXXX:XXXX@XXXXX/scm/XXXX/XXX-XXX.git/info/refs
fatal: HTTP request failed
at com.atlassian.fisheye.git.GitScmConfig.testConnection(GitScmConfig.java:158)
at com.cenqua.fisheye.RepositoryConfig.testConnection(RepositoryConfig.java:444)
at com.atlassian.fisheye.spi.admin.impl.DefaultRepositoryAdminService.testConnectionFor(DefaultRepositoryAdminService.java:538)
at sun.reflect.GeneratedMethodAccessor582.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
Connection failed.
Use git client, i can setting "git config --global http.sslVerify false" and git clone code succeed.How can I setting to solve this issue on Crucible?
Thanks
Hi Fei,
Git keeps a "global" config file, which applies to every git instance running under a specific user account, as well as a system-wide config file. You should be able to set the SSL verification configuraiton option for git at the system level on your FishEye/Crucible server with this command:
git config --system http.sslverify "false"
You will need to run this command as root, or prefixed with sudo.
Kind Regards,
Richard Stephens
Hi Fei,
Not a problem. If the suggestion worked for you, would you mind accepting my answer?
Thanks!
-Richard
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.