用Gogs替代Gitlab(一)¶
2016-02-09 23:49:00
安装说明¶
- 已安装git(yum -y install git)
- 已安装mysql(yum install mysql)
- 服务安装路径:/usr/servers
- gogs版本号: gogs_v0.8.25_linux_amd64.tar.gz
- 以用户git(非root)启动
1.下载并解压 将gogs_v0.8.25_linux_amd64.tar.gz拷贝到/usr/servers,解压
解压文件夹为gogs2.新建系统用户
为了包含/usr/local/bin
到git用户的$PATH
,方法是编辑超级用户文件。
以管理员身份运行:
然后搜索: 将其改成:3.修改目录权限
修改/usr/servers/gogs
目录下所有文件、所有子文件、文件夹的所有用户
4.启动 以用户git启动
[git@vdlmobile16 gogs]$ ./gogs web
2016/02/22 15:16:02 [W] Custom config '/usr/servers/gogs/custom/conf/app.ini' not found, ignore this if you're running first time
2016/02/22 15:16:02 [T] Custom path: /usr/servers/gogs/custom
2016/02/22 15:16:02 [T] Log path: /usr/servers/gogs/log
2016/02/22 15:16:02 [I] codeRepo 0.8.25.0129
2016/02/22 15:16:02 [I] Log Mode: File(Info)
2016/02/22 15:16:02 [I] Cache Service Enabled
2016/02/22 15:16:02 [I] Session Service Enabled
2016/02/22 15:16:02 [I] Git Version: 1.7.1
2016/02/22 15:16:03 [T] Doing: CheckRepoStats
2016/02/22 15:16:03 [I] SQLite3 Supported
2016/02/22 15:16:03 [I] Run Mode: Production
[mysql] 2016/02/22 15:16:03 statement.go:27: invalid connection
2016/02/22 15:16:03 [I] Listen: http://0.0.0.0:3000
5.访问浏览器 初始化配置并安装
6.配置SSH
安装完成并注册,增加公钥,运行ssh -T git@ip_addr
时报错Permission denied (publickey,gssapi-keyex,gssapi-with-mic),解决如下:
1)修改sshd_config文件
HostKey /etc/ssh/ssh_host_rsa_key
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
chown -R git /home/git //如果以git启动,owner默认为git
chmod 700 /home/git
chmod 700 /home/git/.ssh
chmod 644 /home/git/.ssh/authorized_keys //公钥文件的所有权限
至此应该完成,如果在客户端执行ssh -T git@ip_addr
依然报错
关闭SELinux解决问题: 1)暂时关闭(重启后恢复):
2)永久关闭(需要重启):最后执行ssh -T git@ip_addr
,结果:
Hi there, You've successfully authenticated, but Gogs does not provide shell access.
If this is unexpected, please log in with password and setup Gogs under another user.
7.至此成功