Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Local firewall may block such outgoing traffic. 
    1. Run :  nc gerrit.o-ran-sc.org 29418
    2. We should see something similar to: “SSH-2.0-GerritCodeReview_2.16.8 (SSHD-CORE-2.0.0)”.  If not, most likely your local firewall is blocking outgoing traffic on port 29418.  This can either be resolved by working with local IT networking staff, or switch to a different access.
  2. If step 1 test passes, the next is to verify that ssh is working:
    1. ssh -p 29418 {{ your Linux Foundation ID }}@gerrit.o-ran-sc.org gerrit version
    2. This command basically ssh into the gerrit server and run a simple version check command.  We should see something like:  gerrit version 2.16.8.  If not, our ssh client is not configured correctly.  Most likely the ssh key is not configured properly.  We can now follow ssh debug process to figure what the problem is.  Fir example, running option "-vvv" with the ssh command.
  3. Because the O-RAN SC project requires all contributors to sign contribution agreement, "git review -s" will not work if the contributor has not done so.  This can be verified by running:  git push --dry-run ssh://{{ your Linux Foundation ID }}@gerrit.o-ran-sc.org:29418/it/dep --all. .  If the CLAs have been signed, the expected response is: "Everything up-to-date".  Otherwise, please proceed to sign the CLAs by following this tutorial:  Signing Contributor License Agreement.
  4. If all previous steps If both step 1 and 2 work, the next suspect is local Gerrit/git configuration. 

...