mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
add migrate to local file system for single storage (#40)
* add migrate to local file system for single storage * improve doc
This commit is contained in:
parent
c587f0b0a4
commit
e903aaf328
|
|
@ -39,6 +39,31 @@ mv seafile.conf /opt
|
|||
|
||||
```
|
||||
|
||||
If you want to migrate to a local file system, the seafile.conf temporary configuration example is as follows:
|
||||
|
||||
```
|
||||
cat > seafile.conf << EOF
|
||||
[commit_object_backend]
|
||||
name = fs
|
||||
# the dir configuration is the new seafile-data path
|
||||
dir = /var/data_backup
|
||||
|
||||
[fs_object_backend]
|
||||
name = fs
|
||||
# the dir configuration is the new seafile-data path
|
||||
dir = /var/data_backup
|
||||
|
||||
[block_backend]
|
||||
name = fs
|
||||
# the dir configuration is the new seafile-data path
|
||||
dir = /var/data_backup
|
||||
|
||||
EOF
|
||||
|
||||
mv seafile.conf /opt
|
||||
|
||||
```
|
||||
|
||||
Repalce the configurations with your own choice.
|
||||
|
||||
## Migrating large number of objects
|
||||
|
|
|
|||
Loading…
Reference in New Issue