美文网首页
Git私服Gogs-0.11.91.0811安装配置篇—Cent

Git私服Gogs-0.11.91.0811安装配置篇—Cent

作者: 商鲲 | 来源:发表于2019-12-06 03:35 被阅读0次
1. 安装git

sudo yum install -y git

2. MySQL安装配置跳过,手动创建名为gogs 的库,请务必将编码设置为 utf8mb4
3. 安装Gogs
  1. 为gogs创建一个用户git
adduser git   #创建一个用户
su git        #切换到git用户
  1. 下载Gogs安装包
cd /home/git #到git用户根目录
wget https://dl.gogs.io/0.11.29/linux_amd64.tar.gz    #下载Gogs安装包
tar -zxvf linux_amd64.tar.gz  #解压安装包
  1. 启动Gogs服务:./home/git/gogs/gogs web
  2. 访问Gogs网站,完成个性化设置:http://你的服务器IP:3000
    首次运行gogs配置实操流程图
4. 配置Gogs服务自启动
su root #切换到root用户
cp /home/git/gogs/script/init/centos/gogs /etc/init.d #拷贝gogs脚本到init.d文件夹
chmod 774 /etc/init.d/gogs #设置gogs文件夹的权限
chkconfig --add gogs  #添加服务的开机自启动
5. gogs启动状态查询,以及启动关闭命令
   ps -ef|grep gogs #启动状态查询
   systemctl start gogs  #启动gogs 
   systemctl stop gogs  #关闭gogs 
   systemctl restart gogs  #重启gogs 
   systemctl status gogs  #gogs 状态

相关文章

  • Git私服Gogs-0.11.91.0811安装配置篇—Cent

    1. 安装git sudo yum install -y git 2. MySQL安装配置跳过,手动创建名为gog...

  • nexus-oss 私服集成yum

    nexus 集成了 yum 私服使用起来还是比较简单的 配置 yum proxy 实际使用我们可能需要配置cent...

  • gitlab私服问题

    1,私服库密码问题配置git保存密码git config --global credential.helper s...

  • Git

    Git安装配置 Git安装 Git初始配置 跟踪文件 git config

  • GIt

    [TOC] 1. git安装与配置 1.1 git安装 搜索git进官网下载,安装即可! 1.2 git基本配置 ...

  • 2018-04-12 Git基础

    一、Git 安装配置 1.Git官网下载并完成安装 2.Git 配置 1).环境变量配置 安装成功后需要配置Git...

  • centos7.6 安装nginx ,nodejs 最新,mys

    一、 git的安装配置和ssh配置(可选安装,为了安全,设置git用户不能登录) (1)安装git (2)配置gi...

  • 软件安装

    Git Bash的安装与配置 Node.js的安装与配置 Git 的安装与配置 VSCode的安装和配置 错误言论...

  • Python3 模块/包 开发

    一. 安装pypi私服上的python包 方式1: 直接使用pip -i 方式2: 使用配置文件 index:私服...

  • Git 安装

    安装git mac安装git 配置Git 配置Git的用户名跟邮箱, 下面的命令 表示配置home目录下的设置 配...

网友评论

      本文标题:Git私服Gogs-0.11.91.0811安装配置篇—Cent

      本文链接:https://www.haomeiwen.com/subject/amksgctx.html