Skip to content
Discussion options

You must be logged in to vote

你遇到的 MinIO 控制台功能缺失(比如只能创建桶,无法删除、菜单缺失等)是因为 MinIO 官方在 2025 年 4 月之后的版本对开源镜像做了限制,导致控制台功能大幅缩水。这不是 lobe-chat 或 shell 脚本配置的问题,而是 MinIO 镜像本身的变化。

解决方法:将 MinIO 镜像降级到 RELEASE.2025-04-22T22-12-26Z 版本即可恢复完整控制台功能,包括所有菜单和管理能力。你可以在 docker-compose.yml 里这样写:

minio:
  image: minio/minio:RELEASE.2025-04-22T22-12-26Z
  container_name: lobe-minio
  ports:
    - 9000:9000
    - 9001:9001
  # 其他配置保持不变

或者用 shell 启动:

docker run -d --name lobe-minio \
  -p 9000:9000 -p 9001:9001 \
  -e MINIO_ROOT_USER=你的用户名 \
  -e MINIO_ROOT_PASSWORD=你的密码 \
  minio/minio:RELEASE.2025-04-22T22-12-26Z server /data --console-address ":9001"

重启后用你的 MINIO_ROOT_USER 和 MINIO_ROOT_PASSWORD 登录,控制台功能就会恢复正常。参考

如果降级后还有问题,建议检查数据目录权限(chown -R 9…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by arvinxx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 Bug Something isn't working | 缺陷 unconfirm 未被维护者确认的问题
2 participants
Converted from issue

This discussion was converted from issue #9089 on September 04, 2025 12:52.