码迷,mamicode.com
首页 > 其他好文 > 详细

centos 安装gitea

时间:2020-08-20 19:18:33      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:文件   sys   desc   system   ted   http   后台运行   start   ice   

  • 安装Git

    • yum -y install git
      
  • 下载Gitea,下载最新的版本可以参考https://dl.gitea.io/gitea

    • wget -O gitea https://dl.gitea.io/gitea/1.12.3/gitea-1.12.3-linux-amd64
      
  • 在下载到Gitea的目录下,修改权限

    • chmod +x gitea
      
  • 运行Gitea

    • ./gitea web
      
    • 后台运行:nohup ./gitea web &
      
  • 使用服务来启动

    • 新建一个文件

      • vi /usr/lib/systemd/system/gitea.service
        
      • 写入

      • [Unit]
        Description=gitea
        
        [Service]
        User=root
        ExecStart=gitea的安装路径
        Restart=on-abort
        
        [Install]
        WantedBy=multi-user.target
        
    • 重载daemon,让新的服务文件生效

      • systemctl daemon-reload
        
    • 现在可以用systemctl来启动gitea了:

      • systemctl start gitea
        
    • 设置开机重启

      • systemctl enable gitea
        
    • 停止查看状态

      • systemctl stop gitea
        
        systemctl status gitea
        

centos 安装gitea

标签:文件   sys   desc   system   ted   http   后台运行   start   ice   

原文地址:https://www.cnblogs.com/MyUniverse/p/13525324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!