zoukankan      html  css  js  c++  java
  • Centos7安装gitlab服务器

    1.先按照官方教程

    https://about.gitlab.com/downloads/#centos7

    大概内容如下:

    1. Install and configure the necessary dependencies

    If you install Postfix to send email please select 'Internet Site' during setup. Instead of using Postfix you can also use Sendmail or configure a custom SMTP server and configure it as an SMTP server.

    On CentOS, the commands below will also open HTTP and SSH access in the system firewall.

    安装ssh
    sudo yum install curl policycoreutils openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd

    安装postfix sudo yum install postfix sudo systemctl enable postfix sudo systemctl start postfix

    配置防火墙 sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld

    2. Add the GitLab package server and install the package

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

    If you are not comfortable installing the repository through a piped script, you can find the entire script here and select and download the package manually and install using

    curl -LJO https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-XXX.rpm/download
    rpm -i gitlab-ce-XXX.rpm

    3. Configure and start GitLab

    sudo gitlab-ctl reconfigure

    新建用户可能无法同步或者push,需要管理员设置存储库权限

    选择master+developer就行了,不要点击【unprotect】

     修改http端口

    gitlab默认是80端口,修改下面3个文件,可以很容易看到端口修改的地方

    vi /opt/gitlab/embedded/conf/nginx.conf

    vi /var/opt/gitlab/gitlab-rails/etc/gitlab.yml

    vi /var/opt/gitlab/nginx/conf/gitlab-http.conf

    重启服务

    gitlab-ctl restart

  • 相关阅读:
    mysql允许远程访问
    ubuntu pip install MySQL-python mysql_config not found
    ubuntu 阿里云源
    V
    KMP算法之next函数解释(大量的反证法 和数学归纳法来袭)
    日常ACM题目
    F
    J
    中缀表达式求值 ,中缀表达转化为后缀表达式求值,
    数据结构
  • 原文地址:https://www.cnblogs.com/IWings/p/6897876.html
Copyright © 2011-2022 走看看