LinuxTutorialsUbuntu

How To Install Gitlab on Ubuntu 16.04 LTS

Install Gitlab on Ubuntu 16.04 LTS

In this tutorial, we will show you how to install and configuration of Gitlab on your Ubuntu 16.04 LTS. For those of you who didn’t know, Gitlab is a graphical implementation of git, it is open-source repository management and version control system. GitLab is developed on Ruby on Rails. Using GitLab you can host your source code on your own server. This ensures the security of the code and gives you total freedom on the number of users as well as the number of repositories and the number of files. GitLab provides you with a platform to collaborate on projects and to keep track of changes in code. GitLab has widely used for software development and version control-related tasks. In many ways, it is similar to GitHub, except you can install it on your own server.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of Gitlab on a Ubuntu 16.04 (Xenial Xerus) server.

GitLab Features

  • GitLab provides you with a web interface to edit files, and directories and create merge requests.
  • It is self-hosted, hence you have full control over your server and the source code hosted inside.
  • It provides LDAP user authentication and has a two-factor authentication system which makes the application very secure.
  • You can insert your own branding on the login page and it also supports project import from GitHub and other sources to GitLab.
  • It has lots of features like code reviews, issue tracking, activity feeds, and an inbuilt wiki.
  • It provides fine workflow management which gives you the ability to create groups for a project, the ability to fork a repository as well as it provides the ability to manage large binaries with git LFS.
  • GitLab comes with GitLab CI for continuous integration. You can also Docker with GitLab CI.
  • It’s free and open source hence you won’t have to deal with any licensing issues.

Install Gitlab on Ubuntu 16.04 LTS

Step 1. First, make sure that all your system packages are up-to-date by running the following apt-get commands in the terminal.

sudo apt-get update
sudo apt-get upgrade

Step 2. Install and Configure the necessary dependencies.

Before we going to install Git-lab, we have to install some prerequisites like ssh and mail services:

sudo apt-get install ca-certificates curl openssh-server postfix

Step 3. Installing GitLab.

Use the following command to install GitLab packages on the server:

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash

The script will set up your server to use the GitLab maintained repositories. This lets you manage GitLab with the same package management tools you use for your other system packages. Once this is complete, you can install the actual GitLab application with apt:

sudo apt-get install gitlab-ce

If you are not comfortable installing the repository through a piped script, you can find the entire script here.

Step 4. Configure GitLab on Server.

Now start the configuration by using the gitlab-ctl command:

sudo gitlab-ctl reconfigure

Step 5. Accessing Gitlab.

Gitlab will be available on HTTP port 80 by default. Open your favorite browser and navigate to http://your-domain.com/ or http://server-ip-address and then login with a “root” user and with the initial password “5iveL1fe”. If you are using a firewall, please open port 80 to enable access to the control panel.

Install Gitlab on Ubuntu 16.04 LTS

Congratulations! You have successfully installed Gitlab. Thanks for using this tutorial for installing Gitlab on Ubuntu 16.04 LTS  (Xenial Xerus) system. For additional help or useful information, we recommend you to check the official Gitlab website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

Save

Save

r00t

r00t is a seasoned Linux system administrator with a wealth of experience in the field. Known for his contributions to idroot.us, r00t has authored numerous tutorials and guides, helping users navigate the complexities of Linux systems. His expertise spans across various Linux distributions, including Ubuntu, CentOS, and Debian. r00t's work is characterized by his ability to simplify complex concepts, making Linux more accessible to users of all skill levels. His dedication to the Linux community and his commitment to sharing knowledge makes him a respected figure in the field.
Back to top button