好奇的探索者,理性的思考者,踏实的行动者。
Table of Contents:
配置
vim /etc/gitlab/gitlab.rb
启动相关
gitlab-ctl reconfigure #更改配置后需要执行
gitlab-ctl stop
gitlab-ctl start
更改密码
gitlab-rails console -e production
user = User.where(username:"root").first
user.password = "test"
user.save!
gitlab查查日志
我们可以用gitlab-ctl tail
命令查看实时log。
可以更改gitlab的配置,禁用gitlab自带nginx,并进行相关的配置
可能是因为sshd没有给linux下的gitlab用户登录的权限,给了权限后便可以登录了。
因为没有用gitlab自带的nginx,可能在nginx代理转发的时候出现的问题。后来用了gitlab自带的nginx的配置后便好了