Beiträge von woomg

    If you want you can use netatalk (build your own package) configuring it manually.


    Thanks, I will try it.


    I can't replicate the bug in nginx.


    May be it will be problem for only fresh install 3.0.26? I have similar issue with other feature when I install the 3.0.18 fresh install. But it did not issued if I try to update from 3.0.13 to 3.0.18.


    By the way, here is the log I met.
    ================
    Error #0:
    exception 'InvalidArgumentException' with message 'The operator '' is not defined.' in /usr/share/php/openmediavault/config/databasebackendquerybuilder.inc:227
    Stack trace:
    #0 /usr/share/php/openmediavault/config/databasebackendquerybuilder.inc(236): OMV\Config\DatabaseBackendQueryBuilder->buildPredicate(Array)
    #1 /usr/share/php/openmediavault/config/databasebackendquerybuilder.inc(300): OMV\Config\DatabaseBackendQueryBuilder->buildQueryByFilter(Array)
    #2 /usr/share/php/openmediavault/config/database.inc(414): OMV\Config\DatabaseBackendQueryBuilder->buildExistsQuery(Array)
    #3 /usr/share/openmediavault/engined/rpc/nginx-server.inc(542): OMV\Config\Database->exists('conf.service.ng...', Array)
    #4 /usr/share/openmediavault/engined/rpc/nginx-server.inc(363): OMV\Engined\Rpc\NginxServer->validatePortDefaultServer(8080, 'fa4b1c66-ef79-1...')
    #5 /usr/share/openmediavault/engined/rpc/nginx-server.inc(219): OMV\Engined\Rpc\NginxServer->validateServer(Object(OMV\Config\ConfigObject))
    #6 [internal function]: OMV\Engined\Rpc\NginxServer->set(Array, Array)
    #7 /usr/share/php/openmediavault/rpc/serviceabstract.inc(124): call_user_func_array(Array, Array)
    #8 /usr/share/php/openmediavault/rpc/rpc.inc(84): OMV\Rpc\ServiceAbstract->callMethod('set', Array, Array)
    #9 /usr/sbin/omv-engined(525): OMV\Rpc\Rpc::call('Nginx', 'set', Array, Array, 1)
    #10 {main}
    ================


    Thanks in advance,
    woomg

    I can not found any thread of these plugins now.


    With the version 3.0.26, I have following issues.


    1. I can install nginx plugin, but can not create web server. I met error message 'The operator '' is not defined.' when I click the 'Save' button.


    2. I can not install 'netatalk' plugin, because debian removed package from their repository. So I tried to build and install 'netatalk 3.x' from "https://daniel-lange.com/archives/102-Apple-Timemachine-backups-on-Debian-8-Jessie.html". But I met problem when I install openmediavault-netatalk plugin.
    Message is 'data model already defined'.


    Some have solution for these issues?
    Any help is welcome.
    Thanks and regards.
    woomg

    Hi,


    I have custom PHP web server app which is serve comics(zipped). Originally that is based on Apache, and someone modified for Nginx server. However, with modified configuration for Nginx server I have no idea how to apply to OMV's Nginx plugin configuration.


    Program source : https://github.com/song31/comix-server/archive/master.tar.gz


    Modified Configuration
    ====================


    http{} at nginx.conf
    -------------------------
    server {
    listen 31257;
    server_name servername;
    charset UTF-8;
    root path_for_root_document;
    location / {
    autoindex on;
    index index.php;
    }
    location ~ \.php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    }
    location ~ ^/Comic(.*)$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_param SCRIPT_FILENAME /media/uuid/Comics/handler.php;
    include fastcgi_params;
    }
    }
    ------------------------------


    Many Thanks,
    woomg

    I haven't seen this on my odroid-c1.


    First, I used debian image which is created by http://forum.odroid.com/viewtopic.php?f=112&t=8075.


    And, I just change the configuration


    a. Mount /dev/mmcblk0p3 that is new partition with addtional space


    b. Change permission can use ssh for user


    c. Enable SSH server


    I believe I met the problem when I change the SSH option to "Enabled"


    BTW,


    I will recreate the debian image with http://forum.odroid.com/viewtopic.php?f=115&t=8029 patch that enable the HDMI console.


    Also, I still wait the patch for networking b http://forum.odroid.com/viewtopic.php?f=115&t=8121

    When I change the configuration and click "Apply", I got the error like


    ==========
    Failed to execute command 'export LANG=C; monit restart collectd 2>&1': monit: Cannot connect to the monit daemon. Did you start it with http support?
    ==========


    OMV version 1.9
    Hardware : ODROID-C1 ARMv7


    Thanks,