Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - friedmar

Pages: [1] 2 3
1
News and Announcements / Re: Zentyal 5.0 available!
« on: January 31, 2017, 03:07:01 pm »
Sorry,

as I expected the Update failed!!!!

Error loading EBox::SysInfo::Composite::General: Attempt to reload TryCatch.pm aborted.
Compilation failed in require at /usr/share/perl5/EBox/Model/Composite.pm line 55.
BEGIN failed--compilation aborted at /usr/share/perl5/EBox/Model/Composite.pm line 55.
Compilation failed in require at (eval 1907) line 2.
   ...propagated at /usr/share/perl/5.18/base.pm line 83.
BEGIN failed--compilation aborted at /usr/share/perl5/EBox/SysInfo/Composite/General.pm line 21.
Compilation failed in require at (eval 1906) line 2.
BEGIN failed--compilation aborted at (eval 1906) line 2.
 at /usr/share/perl5/EBox/Model/Manager.pm line 270
in EBox::Model::Manager::_component at /usr/share/perl5/EBox/Model/Manager.pm line 270
  267:
  268:         my $class = $global->_className($moduleName) . '::' . ucfirst($kind) . "::$name";
  269:         eval "use $class";
  270:         if ($@) {
  271:             throw EBox::Exceptions::Internal("Error loading $class: $@");
  272:         }
  273:
Show function arguments

in EBox::Model::Manager::_componentByPath at /usr/share/perl5/EBox/Model/Manager.pm line 246
  243:     }
  244:
  245:     my $module = EBox::Global->getInstance($readonly)->modInstance($moduleName);
  246:     return $self->_component($kind, $module, $compName);
  247: }
  248:
  249: sub _component
Show function arguments

in EBox::Model::Manager::composite at /usr/share/perl5/EBox/Model/Manager.pm line 159
  156: {
  157:     my ($self, $path, $readonly) = @_;
  158:
  159:     return $self->_componentByPath('composite', $path, $readonly);
  160: }
  161:
  162: # Method: component
Show function arguments

in EBox::CGI::Run::_instanceComponent at /usr/share/perl5/EBox/CGI/Run.pm line 238
  235:
  236:     my $manager = EBox::Model::Manager->instance();
  237:     my $model = undef;
  238:     if ($type eq 'Composite') {
  239:         $model = $manager->composite($path);
  240:     } else {
  241:         $model = $manager->model($path);
Show function arguments

in EBox::CGI::Run::_instanceModelCGI at /usr/share/perl5/EBox/CGI/Run.pm line 261
  258:     my $path = lc ($namespace) . "/$modelName";
  259:     return undef unless $manager->componentExists($path);
  260:
  261:     my $model = $self->_instanceComponent($path, $type);
  262:
  263:     if ($model) {
  264:         $menuNamespace = $model->menuNamespace();
Show function arguments

in (eval) at /usr/share/perl5/EBox/CGI/Run.pm line 75
   72:             push (@extraParams, htmlblocks => $htmlblocks);
   73:         }
   74:
   75:         my $handler = $self->_instanceModelCGI($effectiveUrl, @extraParams);
   76:
   77:         unless ($handler) {
   78:             my $classname = $self->urlToClass($effectiveUrl);
in EBox::CGI::Run::run at /usr/share/perl5/EBox/CGI/Run.pm line 68
   65:     $redis->begin();
   66:
   67:     my $url = $self->urlFromRequest($request);
   68:     try {
   69:         my $effectiveUrl = _urlAlias($url);
   70:         my @extraParams = (request => $request);
   71:         if ($htmlblocks) {
Show function arguments

in main::__ANON__ at /usr/share/zentyal/psgi/zentyal.psgi line 46
   43:     local $SIG{__WARN__} = sub { EBox::warn($_[0]) };
   44:
   45:     my $req = Plack::Request->new($env);
   46:     return EBox::CGI::Run->run($req);
   47: };
   48:
   49: my $builder = new Plack::Builder();
Show function arguments

in Plack::App::URLMap::call at /usr/share/perl5/Plack/App/URLMap.pm line 71
   68:         return $self->response_cb($app->($env), sub {
   69:             $env->{PATH_INFO} = $orig_path_info;
   70:             $env->{SCRIPT_NAME} = $orig_script_name;
   71:         });
   72:     }
   73:
   74:     DEBUG && warn "All matching failed.\n";
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in EBox::Middleware::Auth::call at /usr/share/perl5/EBox/Middleware/Auth.pm line 366
  363:         $self->_logout($env);
  364:     } elsif ($self->_validateSession($env)) {
  365:         delete $env->{'psgix.session'}{AuthReason};
  366:         return $self->app->($env);
  367:     } else {
  368:         # Require authentication, redirect to the login form.
  369:         return $self->_redirectToLogin($env);
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in Plack::Middleware::Conditional::call at /usr/share/perl5/Plack/Middleware/Conditional.pm line 16
   13:     my($self, $env) = @_;
   14:
   15:     my $app = $self->condition->($env) ? $self->middleware : $self->app;
   16:     return $app->($env);
   17: }
   18:
   19: 1;
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in EBox::WebAdmin::Middleware::SubAppAuth::call at /usr/share/perl5/EBox/WebAdmin/Middleware/SubAppAuth.pm line 57
   54:             }
   55:         }
   56:     }
   57:     return $self->app->($env);
   58: }
   59:
   60: 1;
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in Plack::Middleware::Session::call at /usr/share/perl5/Plack/Middleware/Session.pm line 52
   49:     }
   50:
   51:     $env->{'psgix.session.options'} = { id => $id };
   52:
   53:     my $res = $self->app->($env);
   54:     $self->response_cb($res, sub { $self->finalize($env, $_[0]) });
   55: }
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in Plack::Middleware::ReverseProxy::call at /usr/share/perl5/Plack/Middleware/ReverseProxy.pm line 68
   65:         }
   66:     }
   67:
   68:     $self->app->($env);
   69: }
   70:
   71: 1;
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in (eval) at /usr/share/perl5/EBox/Middleware/UnhandledError.pm line 78
   75:     my $res;
   76:     my $caught = 0;
   77:     try {
   78:         $res = $self->app->($env);
   79:     } catch ($e) {
   80:         $caught = 1;
   81:         # This $res will only be used if $trace is undef
in EBox::Middleware::UnhandledError::call at /usr/share/perl5/EBox/Middleware/UnhandledError.pm line 77
   74:
   75:     my $res;
   76:     my $caught = 0;
   77:     try {
   78:         $res = $self->app->($env);
   79:     } catch ($e) {
   80:         $caught = 1;
Show function arguments

in Plack::Component::__ANON__ at /usr/share/perl5/Plack/Component.pm line 50
   47: sub to_app {
   48:     my $self = shift;
   49:     $self->prepare_app;
   50:     return sub { $self->call(@_) };
   51: }
   52:
   53:
Show function arguments

in (eval) at /usr/share/zentyal/psgi/zentyal.psgi line 0
    1: # Copyright (C) 2010-2014 Zentyal S.L.
    2: #
    3: # This program is free software; you can redistribute it and/or modify
at /usr/share/zentyal/psgi/zentyal.psgi line 0
    1: # Copyright (C) 2010-2014 Zentyal S.L.
    2: #
    3: # This program is free software; you can redistribute it and/or modify

2
Installation and Upgrades / Re: Problems: Zentyal On Hyper-V
« on: November 30, 2016, 01:17:09 pm »
Works for me at Hyper-V 2016. Network is destroyed but could be fixed manually.
From by point of view this is an early beta!

3
Installation and Upgrades / Re: Zentyal 5 ERROR
« on: November 29, 2016, 04:23:42 pm »
I got a similar issue. Zentyal 5 is loosing the default gateway! I could reproduce ist an a real and a virtual system!

4
Installation and Upgrades / Re: Zentyal 5 questions
« on: November 14, 2016, 01:08:01 pm »
Have a look on ClearOS or Netherver. I am investigating booth but still prefere Zentyal. But as they are not abel to delivery an actual system...

Personality I would be happy with 4.2 running on 16.04 perhaps with an update Samba.

5
Installation and Upgrades / Re: Zentyal 5 questions
« on: November 12, 2016, 09:37:02 am »
Good question. Meanwhile I doubt the progress of Zentyal 5. Since the anouncement nothing happend. The last update on the repo was October 23rd! I see noch chance to publish Zentyal 5 at November 29th, perhaps an early Alpha :'(

By the way, if there is no OpenChange, why should one install Zentyal 5? Any Benefits?

So Zentyal team please talk to us!

6
Installation and Upgrades / Re: Is Zentyal dead?
« on: November 03, 2016, 05:24:03 pm »
Anything new about 5.0? Last update on repo was 23.10. This Version ist not installing; lots of errors.

7
Installation and Upgrades / Re: Is Zentyal dead?
« on: October 19, 2016, 09:49:05 pm »
I did this with a new 1604 but zentyal-samba is broken since weeks. Also no update since that time. I think the apt/soure.list entry points to a dead repository.

8
Installation and Upgrades / Re: Zentyal 5
« on: October 19, 2016, 09:43:53 pm »
This is incomplete and does not work. Last update was weeks ago! Same error here.

Perhaps zentyal could provide us with the correct beta repository.

9
Installation and Upgrades / Re: Zentyal 5
« on: October 18, 2016, 10:50:53 pm »
which install type did you use an where did you get it?

10
Installation and Upgrades / Re: zentyal 4.0 as a webserver
« on: November 15, 2014, 03:21:37 pm »
plus there is a description on the owncloud page how to config nginx for owncloud!

11
Installation and Upgrades / Re: [4.0] backups?
« on: November 01, 2014, 12:05:30 pm »
I totally agree!

There should be a way to backup your users individual data and mail. Zentyal you must not provide a module for backup but you should provide us withe the locations that has to be backed up.

I know where the samba data is stored. But where do we find the databases and directory. I did not find a tool like slapcat to export the directory. Where is the mail storage?

Please provide the locations and name of already installed scripts or tools that help backup the data!

12
German / Re: zentyal 4.0
« on: October 17, 2014, 05:59:26 pm »
Ist der Zentral Server direkt erreichbar oder steht er hinter einer Firewall welche dann die Autodiscover blockt?

Gibt es einen DNS Eintrag autodiscover.meinedomain.de?

13
German / Re: zentyal 4.0
« on: October 16, 2014, 09:30:58 pm »
Du bist hier im Deutschen Forum! Warum also die Frage in Englisch?

14
I just visited my AZUR Account. There you could create UBUNTU 14.04 LTS VMs. So it must be possible to run Zentyal 3.5 and 4.0 as a Hyper-V Guest. Perhaps you have to upgrade to Server/Hyper-V 2012R2!

15
German / Re: Speicherplatz immer nur 50GB
« on: October 01, 2014, 08:02:15 pm »
Also aus meiner Sicht is RAID-10 OK. Du hättest dann 2 Volumes zu 2 TB die gespiegelt sind. Diese weist Du dan LVM zu. Aus dem LVM weist du dann deine einzelnen Bereiche zu. Aktuelle Bistros brauchen kein natives /boot.

Also folgendes wäre denkbar:
/               10 GB
swap         2*Hauptspeicher
/home       erst mal 100 GB
/var          10 GB
/tmp         5 GB
/opt          ...

Bei Bedarf kannst Du dann mehr Speicher zuweisen oder neue LVM definieren.

Zur Sicherung kann man LVM Snapshots verwenden.

Wenn die 2 TB nicht Reihe alternativ RAID-5, ergibt dann 3 TB. Ist aber etwas langsamer als RAID-10. Dürfte aber nicht merkbar sein.

Pages: [1] 2 3