1 操作:新建文件夹,新建文件,删除文件夹,删除文件
2 客户端:浏览器,PC
3 版本:服务器版本10.0.1
4 安装方式:docker
症状描述:
在以上客户端中执行以上操作,所有操作都提示操作成功,但是在浏览器刷新后消失;在PC端,在几秒后消失。
消失的意思是:新建的文件或文件夹消失,删除的文件或文件夹恢复,覆盖的文件又恢复到之前的内容。
使用 seafile 已经有一年了,在一个月前突然出现此问题,查看日志列表,无任何异常信息,全都是正常日志。
这个问题已出现一个月了,让我相当沮丧。
docker-compose 文件如下,敏感信息已替换。
version: '2.0'
services:
db:
image: mariadb:10.11
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD={{密码}} # Requested, set the root's password of MySQL service.
- MYSQL_LOG_CONSOLE=true
volumes:
- /data/seafile/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
ports:
- "3306:3306"
networks:
- seafile-net
restart: always
memcached:
image: memcached:1.6
container_name: seafile-memcached
entrypoint: memcached -m 256
networks:
- seafile-net
restart: always
seafile:
image: seafileltd/seafile-mc:latest
container_name: seafile
ports:
- "80:80"
- "443:443" # If https is enabled, cancel the comment.
volumes:
- /data/seafile/files:/shared # Requested, specifies the path to Seafile data persistent store.
environment:
- DB_HOST=db
- DB_ROOT_PASSWD={{密码}} # Requested, the value shuold be root's password of MySQL service.
- TIME_ZONE=Asia/Shanghai # Optional, default is UTC. Should be uncomment and set to your local time zone.
- SEAFILE_ADMIN_EMAIL={{emmeil@qq.com}} # Specifies Seafile admin user, default is 'me@example.com'.
- SEAFILE_ADMIN_PASSWORD={{密码}} # Specifies Seafile admin password, default is 'asecret'.
- SEAFILE_SERVER_LETSENCRYPT=true # Whether use letsencrypt to generate cert.
- SEAFILE_SERVER_HOSTNAME=seafile.xx.com # Specifies your host name.
depends_on:
- db
- memcached
networks:
- seafile-net
restart: always
networks:
seafile-net: