JenKins部署安装https://help.aliyun.com/document_detail/106712.html
Gitlab安装
https://help.aliyun.com/zh/ecs/use-cases/deploy-and-use-gitlab
Gitlab密码修改
执行命令进入 GitLab Rails Console: :sudo gitlab-rails console
修改密码
user = User.find_by_username('root')
user.password = 'new_password'
user.password_confirmation = 'new_password'
user.save!
执行exit命令退出 GitLab Rails Console:
MSE