Beiträge von fuma.san

    Ok, i finally got Seafile 7.0.5 to work with OMV 4.1.27


    I roughly followed baldman's tutorial, but there are a some extra steps you have to take:


    0. Shared Folders


    Your Shared Folders are now under "/sharedfolders/YourShareName/"

    1. fix MySQL install


    OMV uses the the User "omvadmin" instead of root, so we have to fix the install script.
    First Reset your MySQL Password via the OMV-WebUI and make sure user "omvadmin" can login.


    Than, before running the "./setup-seafile-mysql.sh" install command you have to edit the file "setup-seafile-mysql.py" (line 483):



    Python
    def check_mysql_user(self, user, password, host=None):
            print '\nverifying password of user %s ... ' % user,
            kwargs = dict(host=host or self.mysql_host,
                          port=self.mysql_port,
                          user='omvadmin',
                          passwd=password)
    
    
    [...]



    change the line "user=user;" to "user='omvadmin';"


    The installation is now working.



    2. fix Nginx


    It seems like Fastcgi is not working any more, so we have to fix that also.
    Follow the Ngix install, but use the following code for the Extra options:



    Skip Part 7 where you set the fastcgi=true in "/etc/init.d/seafile-server"





    3. Desktop-Client


    If you want to sync via the Desktop Client, you have to check the option "dont check server-cert via https-sync" under Options -> Advanced.


    Im guessing this could be resolved with an non-self-signed SSL-cert.