Skip to content

Instantly share code, notes, and snippets.

@cloudybdone
Last active November 26, 2022 15:26
Show Gist options
  • Select an option

  • Save cloudybdone/78dab92e661be26bd12ef0f5b3e1308f to your computer and use it in GitHub Desktop.

Select an option

Save cloudybdone/78dab92e661be26bd12ef0f5b3e1308f to your computer and use it in GitHub Desktop.
How To Install and Configure GitLab on Ubuntu 20.04
If you need any help related to GitLab Installation Service on Any Linux contact with me:
Telegram: https://t.me/Cloudybdone
WhatsApp: https://wa.link/3j794g
Skype: https://join.skype.com/invite/vLFaKHx...
Email: cloudybdone@gmail.com
Linkedin: https://www.linkedin.com/in/cloudybdone/
Facebook: https://www.facebook.com/cloudybdone/
About Me: https://about.me/cloudybdone
YouTube Playlist: https://youtu.be/fUu5_VOPfqA
#!/bin/sh
# Installing the Dependencies
sudo apt update
sudo apt install ca-certificates curl openssh-server postfix tzdata perl
# Installing GitLab
cd /tmp
curl -LO https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh
less /tmp/script.deb.sh
sudo bash /tmp/script.deb.sh
sudo apt install gitlab-ce
# Adjusting the Firewall Rules
sudo ufw status
sudo ufw allow http
sudo ufw allow https
sudo ufw allow OpenSSH
# Editing the GitLab Configuration File
sudo nano /etc/gitlab
sudo gitlab-ctl reconfigure
# Performing Initial Configuration Through the Web Interface
https://your_domain
# GitLab generates an initial secure password for you. It is stored in a folder that you can access as an administrative sudo user:
@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-11-23 23-43-13

@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-11-23 23-39-02

@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-11-23 23-48-34

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment