NotePublic/Software/Applications/Gitea/Gitea_常见问题及解决方案.md

37 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Gitea 常见问题及解决方案
Gitea 工作不正常时,一般可通过分析 Gitea Root Path 下 log 目录中的日志文件来分析和确定问题。以下是一些常见 Gitea 问题和解决方案。
## Startup Problem With Issue Indexer Error
* 问题描述:
```blk
startup problem with issue indexer error
```
* 问题原因:
可能是索引坏掉了。
* 解决方案:
可以把 Gitea 工作目录下的 data/indexers/issues.queue 目录中的内容删除掉,重新启动。
## 修改“从URL克隆”后“镜像自地址”没有改变
问题描述:
从国内镜像网站镜像仓库后再修改“从URL克隆”发现项目名称下面的“镜像自地址”没有跟着改变。
* 问题原因:
原因在于 \<Gitea Config Dir\>/data/gitea.db 文件中的配置没有修改。
* 解决方案:
1. 停止 gitea 服务;
2. 使用 sqlitebrowser 打开 gitea.db
3. 右击 repository 表,选择“浏览表”;
4. 通过 name 找到对应的仓库,修改 original_url 为新的地址即可。