ubuntu 14.04 安装 gogs
ubuntu 14.04 因为没有 systemd 的原因,所以装不了新的 gitea,只能安装支持启动脚本的 gogs。
-
创建 git 用户,并在 git 用户下,去gogs 官网下载最新的版本 https://gogs.io/docs/installation/install_from_binary ,然后解压,运行
./gogs web
即可。 -
配置的时候,注意修改 域名和 URL 两项为自己的 IP 或者域名都行。
-
把
gogs/scripts/init/debian/
目录下面的 gogs 复制到/etc/init.d
下面,并修改为可执行权限。 update-rc.d gogs defaults
,把启动脚本加入启动列表,然后重启,或者/etc/init.d/gogs
来启动 gogs。
如果需要删除启动,update-rc.d -f gogs remove