haiwen / seafile-docker

A Docker image for Seafile server
Other
544 stars 183 forks source link

seafile instance has stopped working... The data maybe is lost #233

Closed avalarh closed 8 months ago

avalarh commented 3 years ago

I had a seafile instance for a few years, which was launched using the default example of docker compose. (with modified passwords/hostnames). Suddenly it has stopped working and the debug message is unclear. [10/07/20 19:04:04] ../common/session.c(148): using config file /opt/seafile/conf/ccnet.conf [10/07/20 19:04:04] SQL error: 5 - database is locked : CREATE TABLE IF NOT EXISTS Config (key TEXT PRIMARY KEY, value TEXT); Starting seafile server, please wait ...

I've tried to recreate all the containers. Just left the data volume untouched. The error message is the same. I could not find a way to debug it since everything is launched within one container. The docker compose file is: `version: '2.0' services: db: image: mariadb:10.1 container_name: seafile-mysql environment:

networks: seafile-net: volumes: html: db:`

freeplant commented 3 years ago

I could not find a way to debug it since everything is launched within one container

As you are using docker compose, the different components are already using their own container.

The database is locked message is often caused by you are using SQLite as database. It is likely the config files that read by the seafile is wrong.

A possible fix is that you setup a new working Seafile docker instance, then migrate the old data to the new instance by following our backup/restore document.

inakrin commented 3 years ago

I had the same problem. No SQLite database was used, the database was mysql. Since it was used as a backup instance I preferred just to reinstall everything after spending some time trying to fix it. Need to say, that despite the seafile itself seemed to be wonderful software (if not the sudden collapse), the seafile-mc container is a huge mess with multiple daemons and scripts running in the same container.