解决:The requested URL returned error: 403
Posted Data-Mining
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决:The requested URL returned error: 403相关的知识,希望对你有一定的参考价值。
目录
问题
今天在 arm 架构的服务器上创建工程时,遇到了一个报错,执行的命令如下:
git clone https://git.liuzhen007.com/boffmpeg.git
报错信息如下:
fatal: unable to access 'https://git.liuzhen007.com/boffmpeg.git/': The requested URL returned error: 403
报错截图:
解决
方法一
执行如下命令查看 git 配置信息:
git config --list
发现 user.name 和 user.email 配置的用户名和邮箱不正确,然后执行如下命令进行了修改:
git config --global user.name "用户名"
git config --global user.email "邮箱"
再次查看 git 配置信息,发现已经更正,如下图所示:
再次执行 clone 命令,报错依然存在。
方法二
基本上尝试了所有的方法,都没有解决上述问题,最终使用如下命令解决了问题:
git clone git@git.liuzhen007.com:boffmpeg.git
其实,我们在使用 github 或者 gitlab 创建工程时,一般有两种方式, github 更多时候只有一种。我们这里只是替换了一种 clone 代码的方式,上述问题应该还是和 git 配置有关系,但是时间比较紧,就先不深入追究了,知道的小伙伴欢迎评论留言!
以上是关于解决:The requested URL returned error: 403的主要内容,如果未能解决你的问题,请参考以下文章
解决github push错误The requested URL returned error: 403 Forbidden while accessing
解决RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large问题(示例代码
Yii2.0 解决“the requested URL was not found on this server”问题
记解决一次“HTTP Error 400. The request URL is invalid”的错误
解决git clone时报错:The requested URL returned error: 401 Unauthorized while accessing
Object not found! The requested URL was not found on this server.... 报错解决方案