Posts tagged with 迁移

有以下几个步骤:

  1. 备份数据库
    可利用phpmyadmin或者mysqldump备份
  2. 备份文件
    将/opt/seafile文件夹打包压缩
  3. 数据库迁移
    在新服务器建立数据库,导入备份文件
  4. 文件迁移
    在新服务器建立文件夹/opt,将备份文件下载后,解压缩
  5. 在新服务器启动
    查看/opt/seafile/conf/下的配置文件
    seahub_settings.py、seafile.conf、ccnet.conf等
    确保数据库用户名、密码和数据库是正确的。
  6. 注意文件夹权限
    新建用于seafile,将/opt/seafile所有文件更改用户为seafile
    然后在/opt/seafile/seafile-server-latest/下启动
    ./seafile.sh start
    ./seahub.sh start

问题:

  1. 如果遇到seahub启动失败,需要将/opt/seafile/conf/gunicorn.py中的deamon 修改为False可以查看错误信息。
    例如错误信息为:On line 25, AVATAR_RESIZE_METHOD = getattr(settings, 'AVATAR_RESIZE_METHOD', Image.ANTIALIAS) 之类的,
    需要将文件中的getattr(settings, 'AVATAR_RESIZE_METHOD', Image.ANTIALIAS) 修改为getattr(settings, 'AVATAR_RESIZE_METHOD', None),然后保存
    继续讲deamon修改为True,保存。
    启动seahub.sh 一切正常。

参考文件:https://forum.seafile.com/t/seahub-wont-start-and-it-not-gives-any-useful-input-about-why/18535/5