Difference between revisions of "Development:Gitsslchecking"

From Jalview Wiki
Jump to: navigation, search
(Created page with "=Disabling SSL certificate verification for Git/Egit/etc= If you find you cannot connect to https://source.jalview.org/git/jalview.git then it's probable that your client is ...")
 
(Disabling SSL for EGit)
 
(3 intermediate revisions by one user not shown)
Line 14: Line 14:
  
 
For accessing the repository via the Eclipse EGit plugin :
 
For accessing the repository via the Eclipse EGit plugin :
0. first install EGit - the Eclipse GIT plugin (should also install the
 
JGit java git implementation).
 
1. Disable SSL certificate checking by either:
 
a. Navigate to the Team->Git configuration in eclipse preferences and
 
click the 'New entry...' button. Enter 'http.sslVerify' in the Name
 
field, and 'false' in the value field.
 
Or:
 
b. Press the 'Open' button to open the git config file, and add the
 
lines (note spaces before sslVerify):
 
[http]
 
    sslVerify = false
 
  
2. Check you can access and clone the repository by using the Git  
+
# first install EGit - the Eclipse GIT plugin (should also install the JGit java git implementation).
repository explorer perspective. Remember to use  
+
# Disable SSL certificate checking by either:
'https://source.jalview.org/git/jalview.git' as the repository URL.
+
:: a. Navigate to the Team->Git configuration in eclipse preferences and click the 'New entry...' button. Enter 'http.sslVerify' in the Name
 +
field, and 'false' in the value field.
 +
:: Or
 +
:: Press the 'Open' button to open the git config file, and add the lines (note spaces before sslVerify):
 +
[http]
 +
      sslVerify = false
 +
# Check you can access and clone the repository by using the Git repository explorer perspective. Remember to use  
 +
https://source.jalview.org/git/jalview.git as the repository URL.

Latest revision as of 14:04, 11 September 2014

Disabling SSL certificate verification for Git/Egit/etc

If you find you cannot connect to https://source.jalview.org/git/jalview.git then it's probable that your client is having problem with the repository's SSL certificate. That means you'll need to disable SSL cert verification for your git client.

Disabling SSL on the command line git

To do this for the git command line client, you should set : GIT_SSL_NO_VERIFY=1 in your environment when you access the jalview git repository. e.g. : GIT_SSL_NO_VERIFY=1 git clone https://source.jalview.org/git/jalview.git

Disabling SSL for EGit

For accessing the repository via the Eclipse EGit plugin :

  1. first install EGit - the Eclipse GIT plugin (should also install the JGit java git implementation).
  2. Disable SSL certificate checking by either:
a. Navigate to the Team->Git configuration in eclipse preferences and click the 'New entry...' button. Enter 'http.sslVerify' in the Name

field, and 'false' in the value field.

Or
Press the 'Open' button to open the git config file, and add the lines (note spaces before sslVerify):
[http]
     sslVerify = false
  1. Check you can access and clone the repository by using the Git repository explorer perspective. Remember to use

https://source.jalview.org/git/jalview.git as the repository URL.