在ubuntu linux下使用gogs工具 搭建git服务器。 搭建私有的github。搭建私有的gitee。
$ cd ~ $ wget https://dl.gogs.io/0.13.0/gogs_0.13.0_linux_amd64.zip
$ unzip -x gogs_0.13.0_linux_amd64.zip
解压后的目录:/home/git/gogs
$ cd gogs $ ./gogs web
浏览器访问:http://localhost:3000/install。 远程ssh的话,将localhost换成UBUNTN linux的IP地址。
在打开的页面,选好参数,安装即可。我们这里小团队人少,选用的sqlite3做为gogs的数据库。
复制gogs.service文件之前先确认一下文件内容的参数是否正确。复制步骤如下:
$ cd ~/gogs/scripts/systemd $ sudo cp gogs.service /etc/systemd/system/
大家都在用systemd了,使用比较方便。
$ sudo systemctl enable gogs
使用systemd控制gogs服务的打开关闭,就不再使用./gogs web指令了。
$ sudo systemctl start gogs $ sudo systemctl stop gogs
再次访问 http://localhost:3000这个地址, 私有的git服务器就可以使用了。
如果报错,提示有些ubuntu系统依赖包需要安装。自行安装即可。