Docker GitLab Nginx git error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker GitLab Nginx git error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413相关的知识,希望对你有一定的参考价值。
参考技术A
http的413错误码是请求体太大,那自然是服务器配置问题
由于我服务端是用nginx反向代理的,所以首先去改nginx配置
在http 的 server 节点中添加client_max_body_size配置如:
'''
http
server
client_max_body_size 100m;
#其他配置
'''
docker搭建gitlab
docker搭建gitlab在服务器上直接安装gitlab,会装入Git,Redis ,postgresql,nginx等。如果主机已有redis、nginx等,配置会比较麻烦。而且以后gitlab的备份和迁移都不方便。附主机安装教程:
https://about.gitlab.com/downloads/#centos7
https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/12
如果将gitlab进行Docker化部署,所有服务如redis,postgresql等放在一个docker容器里,将配置、数据等文件挂载在宿主机上,备份和迁移时候只要复制docker镜像和挂载的数据目录即可。
运行gitlab容器
#查找镜像
[[email protected] ~]# docker search gitlab
INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED
docker.io docker.io/gitlab/gitlab-ce GitLab Community Edition docker image base... 946 [OK]
docker.io docker.io/sameersbn/gitlab Dockerized gitlab web server 803 [OK]
docker.io docker.io/gitlab/gitlab-runner 143 [OK]
docker.io docker.io/gitlab/gitlab-ee GitLab Enterprise Edition docker image bas... 47 # 拉取镜像
docker pull docker.io/gitlab/gitlab-ce
# 启动镜像(使用桥接网络启动docker)
docker run --detach --publish 9443:443 --publish 9080:80 --publish 9022:22 --name gitlab --restart always --volume /app/gitlab/config:/etc/gitlab --volume /app/gitlab/logs:/var/log/gitlab --volume /app/gitlab/data:/var/opt/gitlab gitlab/gitlab-ce
浏览器打开http://132.97.xxx.xxx:9080 即可访问到gitlab
gitlab初始用户名/密码:
username: root
password: 5iveL!fe
以上是关于Docker GitLab Nginx git error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413的主要内容,如果未能解决你的问题,请参考以下文章
docker部署gitlab
docker中建立私有git服务器[gitlab]
让 git 用户的 sshd 登录转发到(GitLab)Docker 容器
Docker Gitlab Nginx 使用
通过 Nginx 代理为 Gitlab 服务器克隆的 Git 不起作用
带有外部 nginx 和综合的 gitlab docker 注册表