Versions Compared

Key

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

...

cat ~/.ssh/id_\{r or d\}sa.pub

It's reported that RSA keys are denied in new OSes like Ubuntu 22.04 and MacOS 14 (Sonoma). Try other key types like edcsa or ed25519, e.g. try one of these

Code Block
ssh-keygen -t edcsa -b521
ssh-keygen -t ed25519 -b 4096

While you're in the settings page, please make sure to update your profile with your name, and your e-mail address!

...

To set up Gerrit as a git remote for your Impala repository, do the following:




Code Block
cd ${IMPALA_HOME}
git remote add asf-gerrit ssh://<your-github-username>@gerrit.cloudera.org:29418/Impala-ASF


If using HTTP to connect to Gerrit, use the following command to add the Gerrit remote is also works:


Code Block
git remote add asf-gerrit http://<your-github-username>@gerrit.cloudera.org:8080/a/Impala-ASF

Pay attention, when using HTTP to push/pull code, we need to input username/password. Do not use login account directly, we should get username/password from "Settings→HTTP Password" instead.

...