VMware + ubuntu16.04 Linux 下安装配置Gogs
Posted xbit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VMware + ubuntu16.04 Linux 下安装配置Gogs相关的知识,希望对你有一定的参考价值。
本文在Win7+VMware的ubuntu 16.04中测试,安装Gogs,Install from binary。
准备工作:
sudo apt-get install git sudo adduser git # 为Gogs创建单独的用户,最好没有sudo权限
下载:
- 官方下载安装文件,截止目前最新版2017-11-22发布。
- 将压缩包解压到/home/git/目录下,解压后目录如下(注意Owner是git:git)
安装:
sudo cp /home/git/gogs/scripts/init/debian/gogs /etc/init.d/ # 复制启动+配置脚本 sudo chmod +x /etc/init.d/gogs # 增加启动脚本执行权限 sudo cp /home/git/gogs/scripts/systemd/gogs.service /etc/systemd/system/ # 复制service sudo systemctl enable gogs # enable run at startup sudo systemctl start gogs # start now
配置:
- 在Win7(或其他电脑)浏览器中访问http://localhost:3000/install (其中localhost要改成自己Ubuntu Server的IP)
- 数据库配置,由于我不知道怎么配置mysql,我选的SQLite。
- 把所有localhost改成自己Ubuntu Server的IP。
- 点击最下面的Install。
使用:
- 在Win7(或其他电脑)浏览器中访问http://localhost:3000/, 其中localhost为Ubuntu Server的IP,即可使用Gogs服务。
- 正常使用
其他:
至此,应该可以使用Gogs了,另外有些方面还需完善,包括:
- 选用适合服务器的数据库,目前用的适合嵌入式系统的SQLite。
- 使用反向代理,实现域名登陆。nginx(https://www.jianshu.com/p/d946314bce2f)、apache2(https://www.cnblogs.com/ddr888/archive/2016/01/14/5131028.html)
- 实现SSH免密码安全访问。
另外,如果还需要修改配置,可通过:
- /etc/init.d/gogs
- /home/git/gogs/custom/conf/app.ini
- 参考https://gogs.io/docs/advanced/configuration_cheat_sheet。
本文参考了:
https://www.jianshu.com/p/d946314bce2f
https://www.cnblogs.com/ddr888/archive/2016/01/14/5131028.html
https://gogs.io/docs/intro/faqs
https://gogs.io/docs/advanced/configuration_cheat_sheet
以上是关于VMware + ubuntu16.04 Linux 下安装配置Gogs的主要内容,如果未能解决你的问题,请参考以下文章
[Mini2440] 使用 VMware 安装 Ubuntu 16.04
为VMware虚拟机内安装的Ubuntu 16.04设置静态IP地址
为VMware虚拟机内安装的Ubuntu 16.04设置静态IP地址