Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux

  • Think Easily
  • 2021-06-11
  • 3011
Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux
giteagitea setupgitea installationgit installationhow to use giteagitea tutorialoffline git serveroffline git installationoffline source code managementgitea vs gitlabgitea vs githubgitea logingitea demogitea install windowsgitea postgresgitea pluginswget giteaupgrade giteainstall giteaconfigure giteaself hosted githubgithub tutorialgithub basicsinstall gitrun github locallyhow to install giteagitgithub
  • ok logo

Скачать Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Gitea - A self hosted git server | Part -1 : Installation & Setup in Linux

Gitea - A self-hosted git server | Part -1: Installation & Setup in Linux

Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket, and GitLab. Gitea is a fork of Gogs. See the Gitea Announcement blog post to read about the justification for a fork.

System Requirements
2 CPU cores and 1GB RAM is typically sufficient for small teams/projects.


Command Guide

👉 Database Preparation

✔ ✅ Step : 1
We're using Mysql 8.0 for database , so you can install MySQL Database in ubuntu 20.04 by
sudo apt install mysql-server mysql-clinet
Because Ubuntu 20.04 comes with the default of MYSQL 8.0 in its APT Repository.


✔ ✅ Step : 2

For Local Database

CREATE USER 'gitea'@'locahost' IDENTIFIED BY 'Password@321"';
CREATE DATABASE gitea_db CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
GRANT ALL PRIVILEGES ON gitea_db.* TO 'gitea'@'locahost';
FLUSH PRIVILEGES;

For Remote Database

CREATE USER 'gitea'@'X.X.X.X' IDENTIFIED BY 'Password@321"';
CREATE DATABASE gitea_db CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
GRANT ALL PRIVILEGES ON gitea_db.* TO 'gitea'@'X.X.X.X';
FLUSH PRIVILEGES;

Test connection by running this
mysql -u gitea -h host-ip -p gitea_db


👉 Creating a user for Gitea (e.g: git )

sudo adduser --system --shell /bin/bash --gecos 'Git Version Control' --group --disabled-password --home /home/git git


👉 Create required directory structure

mkdir -p /var/lib/gitea/{custom,data,log}
chown -R git:git /var/lib/gitea/
chmod -R 750 /var/lib/gitea/
mkdir /etc/gitea
chown root:git /etc/gitea
chmod 770 /etc/gitea

NOTE: /etc/gitea is temporary set with write rights for user git so that Web installer could write configuration file.
After installation is done, It is recommended to set rights to read-only using:
chmod 750 /etc/gitea
chmod 640 /etc/gitea/app.ini

👉 Download Latest Version of Gitea
wget -O gitea https://dl.gitea.io/gitea/1.14.2/gite...
chmod +x gitea

👉 Copy Gitea Binary to Global location
Execute this to copy binary to global location : cp gitea /usr/local/bin/gitea



#gitea #installation #setup

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]