GitLab Installation Tutorial Part 3

GitLab Installation Tutorial (Part3)

12 Apr 2016 4 min read

Step 4 – GitLab  Login

Switch to the URL of the chosen domain (in our case http://gitlab.wdscode.guru ) and login with the default GitLab credentials:

Username: root

Password: 5iveL!fe

Change password on first login.

Install_GitLab1-1024x585

As soon as login with the new credentials, you’ll have access to GitLab.

Install_GitLab_2-1024x585

At this point, if you want to access the repository via SSH instead of HTTP, you need to generate a public SSH-2 RSA key for your client.

On Windows you may use Git Bash (already included with Git for Windows) or PuTTy‘s puttygen.exe command. On Linux or in the first case, once launched Git Bash from the Start menu, the command is:

ssh-keygen -t rsa -C ""

On Linux, the generated public key can be read with:

cat ~/.ssh/id_rsa.pub

While on Windows it will be disposed in the following path:

%USERPROFILE%\.ssh\id_rsa.pub

Next, to set up SSH key click on “Profile Settings” or the profile (root) icon on the bottom left of the GitLab page to access the profile settings:

Install_GitLab-3-1024x585

Then click on “SSH Keys” in the left menu and at last on the “Add SSH Key” button on the top right corner of the window.

Install_GitLab4-1024x585

Type in a name for your key (basically your email or client’s name) in the “Title” field, paste the public key in the “Key” field and click on “Add key”.

Install_GitLab5-1024x585

If the key generated not correctly (because pasted only a part of it, or is not in SSH-2 RSA format), you got “Fingerprint cannot be generated” error, but if everything is alright here what you will see:

Install_GitLab6-1024x584

Step – 5 Final checks

If you want to check SSH connection between your client and GitLab server (in our case, http://gitlab.wdscode.guru ) then just use this Git Bash command:

ssh -T [email protected]

Welcome to GitLab, Administrator!

In case you got a warning like “The authenticity of host ‘gitlab.wdscode.guru (192.167.1.186)’ cannot be established.“ then answer “yes” and press enter, and it won’t be asked again (the host will be added to the list of known hosts in the known_hosts file).

And when it’s all done, please, test for bugs while using GitLab with:

tail /var/log/gitlab/unicorn/unicorn_stderr.log -f tail /var/log/gitlab/gitlab-rails/production.log -f tail 
/var/log/gitlab/gitlab-shell/gitlab-shell.log -f

Also ensure that the additional Nginx directives are correct, namely that the chosen virtual host (in our case http://gitlab.wdscode.guru ) is the only one to point to GitLab by simply visiting another domain hosted by the server (eg http://www.wdscode.guru).

And finally, we recommend for the first time try it on a copy, not on the production environment because of particular configuration of your server may cause unexpected and not discussed in this article errors.

ERP development final cta

Get a Custom Solution with Web Design Sun

At Web Design Sun, we specialize in building web applications for clients in every business and industry.  If you’re interested in custom applications for your business, contact us today.

Contact us today to get started

More From Blog

Mobile-First Design Principles

As web developers, we’ve been ready for the move to mobile-first design. Over the past years, we have shifted our design methodologies and development strategies to take the needs of mobile users into account.
20 May 2021 22 min read

Major SEO Trends in 2017

In order to get your site to the top of the search and generate more relevant traffic, it is essential to be updated about current SEO trends.
27 Jan 2017 9 min read

Upgrading SQLite on CentOS to 3.31.1 or Later

In case you work with stack Django plus python on centos server then you perhaps face the problem of Django ver. 2.2+ demands SQLite ver. 3.83+. And in this article, we'll show you how to upgrade SQLite on CentOS to 3.31.1 or Later.
25 Jun 2020 6 min read