Installation auf Ubuntu 12.04 x64

Hilfe zu Znuny Problemen aller Art
Locked
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Hallo zusammen,

die Installation funktioniert einwandfrei (genau wie in der Anleitung zu 10.04). Leider habe ich nach der Installation das Problem, dass ich mich nicht einloggen kann.
Es kommt diese Browsermeldung:

Code: Select all

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
Apache/2.2.22 (Ubuntu) Server at srv-mf01.tclsg.local Port 80
Unter /var/log/apache2/error.log kommt das hier:

Code: Select all

ERROR: OTRS-CGI-10 Perl: 5.14.2 OS: linux Time: Mon Jul  2 13:05:20 2012

 Message: C-Parser:
syntax error at line 1, column 49, byte 49 at /usr/lib/perl5/XML/Parser.pm line 187
!

 Traceback (6672):
   Module: Kernel::System::XML::XMLParse (v1.109) Line: 776
   Module: Kernel::System::XML::XMLParse2XMLHash (v1.109) Line: 608
   Module: Kernel::Output::HTML::DashboardProductNotify::Run (v1.11) Line: 86
   Module: Kernel::Modules::AgentDashboard::_Element (v1.29) Line: 513
   Module: Kernel::Modules::AgentDashboard::Run (v1.29) Line: 350
   Module: Kernel::System::Web::InterfaceAgent::Run (v1.64) Line: 868
   Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_index_2epl::handler (unknown version) Line: 46
   Module: (eval) (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::run (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::default_handler (v1.90) Line: 170
   Module: ModPerl::Registry::handler (v1.99) Line: 31

ERROR: OTRS-CGI-10 Perl: 5.14.2 OS: linux Time: Mon Jul  2 13:05:20 2012

 Message: XML::Parser produced errors. I use XML::Parser::Lite as fallback!

 Traceback (6672):
   Module: Kernel::System::XML::XMLParse (v1.109) Line: 777
   Module: Kernel::System::XML::XMLParse2XMLHash (v1.109) Line: 608
   Module: Kernel::Output::HTML::DashboardProductNotify::Run (v1.11) Line: 86
   Module: Kernel::Modules::AgentDashboard::_Element (v1.29) Line: 513
   Module: Kernel::Modules::AgentDashboard::Run (v1.29) Line: 350
   Module: Kernel::System::Web::InterfaceAgent::Run (v1.64) Line: 868
   Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_index_2epl::handler (unknown version) Line: 46
   Module: (eval) (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::run (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::default_handler (v1.90) Line: 170
   Module: ModPerl::Registry::handler (v1.99) Line: 31

[Mon Jul 02 13:05:20 2012] [error] [Mon Jul  2 13:05:20 2012] -e: mismatched tag 'head'\n

Aber wirklich schlau werde ich daraus auch nicht. Kann mir jemand einen Tipp geben?

Danke schon mal.
DavidLambauer
Znuny expert
Posts: 257
Joined: 25 Apr 2012, 07:28
Znuny Version: 3.1.6
Real Name: David Lambauer
Contact:

Re: Installation auf Ubuntu 12.04 x64

Post by DavidLambauer »

Hey, die Fehlermeldung sagt, es gäbe einen Syntax Error.

syntax error at line 1, column 49, byte 49 at /usr/lib/perl5/XML/Parser.pm line 187

Was steht denn unter /usr/lib/perl5/XML in der Datei Parser.pm in Zeile 187?

Gruß
Bitte keine PM's schreiben. Bitte kontaktiert mich über mail@davidlambauer.de

In meinem Blog: http://www.davidlambauer.de findet ihr Artikel über OTRS. In der How To Area des Forums findet ihr auch oft Hilfe...!
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Re: Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Das habe ich doch glatt vergessen zu posten:

Code: Select all

    $result = $expat->parse($arg);

Das ist die ganze Datei:

Code: Select all

# XML::Parser
#
# Copyright (c) 1998-2000 Larry Wall and Clark Cooper
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

package XML::Parser;

use strict;

use vars qw($VERSION $LWP_load_failed);

use Carp;

BEGIN {
  require XML::Parser::Expat;
  $VERSION = '2.41';
  die "Parser.pm and Expat.pm versions don't match"
    unless $VERSION eq $XML::Parser::Expat::VERSION;
}

$LWP_load_failed = 0;

sub new {
  my ($class, %args) = @_;
  my $style = $args{Style};

  my $nonexopt = $args{Non_Expat_Options} ||= {};

  $nonexopt->{Style}             = 1;
  $nonexopt->{Non_Expat_Options} = 1;
  $nonexopt->{Handlers}          = 1;
  $nonexopt->{_HNDL_TYPES}       = 1;
  $nonexopt->{NoLWP}             = 1;

  $args{_HNDL_TYPES} = {%XML::Parser::Expat::Handler_Setters};
  $args{_HNDL_TYPES}->{Init} = 1;
  $args{_HNDL_TYPES}->{Final} = 1;

  $args{Handlers} ||= {};
  my $handlers = $args{Handlers};

  if (defined($style)) {
    my $stylepkg = $style;

    if ($stylepkg !~ /::/) {
      $stylepkg = "\u$style";

      eval {
          my $fullpkg = 'XML::Parser::Style::' . $stylepkg;
          my $stylefile = $fullpkg;
          $stylefile =~ s/::/\//g;
          require "$stylefile.pm";
          $stylepkg = $fullpkg;
      };
      if ($@) {
          # fallback to old behaviour
          $stylepkg = 'XML::Parser::' . $stylepkg;
      }
    }

    my $htype;
    foreach $htype (keys %{$args{_HNDL_TYPES}}) {
      # Handlers explicity given override
      # handlers from the Style package
      unless (defined($handlers->{$htype})) {

        # A handler in the style package must either have
        # exactly the right case as the type name or a
        # completely lower case version of it.

        my $hname = "${stylepkg}::$htype";
        if (defined(&$hname)) {
          $handlers->{$htype} = \&$hname;
          next;
        }

        $hname = "${stylepkg}::\L$htype";
        if (defined(&$hname)) {
          $handlers->{$htype} = \&$hname;
          next;
        }
      }
    }
  }

  unless (defined($handlers->{ExternEnt})
          or defined ($handlers->{ExternEntFin})) {

    if ($args{NoLWP} or $LWP_load_failed) {
      $handlers->{ExternEnt} = \&file_ext_ent_handler;
      $handlers->{ExternEntFin} = \&file_ext_ent_cleanup;
    }
    else {
      # The following just bootstraps the real LWP external entity
      # handler

      $handlers->{ExternEnt} = \&initial_ext_ent_handler;

      # No cleanup function available until LWPExternEnt.pl loaded
    }
  }

  $args{Pkg} ||= caller;
  bless \%args, $class;
}                                # End of new

sub setHandlers {
  my ($self, @handler_pairs) = @_;

  croak("Uneven number of arguments to setHandlers method")
    if (int(@handler_pairs) & 1);

  my @ret;
  while (@handler_pairs) {
    my $type = shift @handler_pairs;
    my $handler = shift @handler_pairs;
    unless (defined($self->{_HNDL_TYPES}->{$type})) {
      my @types = sort keys %{$self->{_HNDL_TYPES}};

      croak("Unknown Parser handler type: $type\n Valid types: @types");
    }
    push(@ret, $type, $self->{Handlers}->{$type});
    $self->{Handlers}->{$type} = $handler;
  }

  return @ret;
}

sub parse_start {
  my $self = shift;
  my @expat_options = ();

  my ($key, $val);
  while (($key, $val) = each %{$self}) {
    push (@expat_options, $key, $val)
      unless exists $self->{Non_Expat_Options}->{$key};
  }

  my %handlers = %{$self->{Handlers}};
  my $init = delete $handlers{Init};
  my $final = delete $handlers{Final};

  my $expatnb = XML::Parser::ExpatNB->new(@expat_options, @_);
  $expatnb->setHandlers(%handlers);

  &$init($expatnb)
    if defined($init);

  $expatnb->{_State_} = 1;

  $expatnb->{FinalHandler} = $final
    if defined($final);

  return $expatnb;
}

sub parse {
  my $self = shift;
  my $arg  = shift;
  my @expat_options = ();
  my ($key, $val);
  while (($key, $val) = each %{$self}) {
    push(@expat_options, $key, $val)
      unless exists $self->{Non_Expat_Options}->{$key};
  }

  my $expat = XML::Parser::Expat->new(@expat_options, @_);
  my %handlers = %{$self->{Handlers}};
  my $init = delete $handlers{Init};
  my $final = delete $handlers{Final};

  $expat->setHandlers(%handlers);

  if ($self->{Base}) {
    $expat->base($self->{Base});
  }

  &$init($expat)
    if defined($init);

  my @result = ();
  my $result;
  eval {
    $result = $expat->parse($arg);
  };
  my $err = $@;
  if ($err) {
    $expat->release;
    die $err;
  }

  if ($result and defined($final)) {
    if (wantarray) {
      @result = &$final($expat);
    }
    else {
      $result = &$final($expat);
    }
  }

  $expat->release;

  return unless defined wantarray;
  return wantarray ? @result : $result;
}

sub parsestring {
  my $self = shift;
  $self->parse(@_);
}

sub parsefile {
  my $self = shift;
  my $file = shift;
  local(*FILE);
  open(FILE, $file) or  croak "Couldn't open $file:\n$!";
  binmode(FILE);
  my @ret;
  my $ret;

  $self->{Base} = $file;

  if (wantarray) {
    eval {
      @ret = $self->parse(*FILE, @_);
    };
  }
  else {
    eval {
      $ret = $self->parse(*FILE, @_);
    };
  }
  my $err = $@;
  close(FILE);
  die $err if $err;

  return unless defined wantarray;
  return wantarray ? @ret : $ret;
}

sub initial_ext_ent_handler {
  # This just bootstraps in the real lwp_ext_ent_handler which
  # also loads the URI and LWP modules.

  unless ($LWP_load_failed) {
    local($^W) = 0;

    my $stat =
      eval {
        require('XML/Parser/LWPExternEnt.pl');
      };

    if ($stat) {
      $_[0]->setHandlers(ExternEnt    => \&lwp_ext_ent_handler,
                         ExternEntFin => \&lwp_ext_ent_cleanup);

      goto &lwp_ext_ent_handler;
    }

    # Failed to load lwp handler, act as if NoLWP

    $LWP_load_failed = 1;

    my $cmsg = "Couldn't load LWP based external entity handler\n";
    $cmsg .= "Switching to file-based external entity handler\n";
    $cmsg .= " (To avoid this message, use NoLWP option to XML::Parser)\n";
    warn($cmsg);
  }

  $_[0]->setHandlers(ExternEnt    => \&file_ext_ent_handler,
                     ExternEntFin => \&file_ext_ent_cleanup);
  goto &file_ext_ent_handler;

}

sub file_ext_ent_handler {
  my ($xp, $base, $path) = @_;

  # Prepend base only for relative paths

  if (defined($base)
      and not ($path =~ m!^(?:[\\/]|\w+:)!))
    {
      my $newpath = $base;
      $newpath =~ s![^\\/:]*$!$path!;
      $path = $newpath;
    }

  if ($path =~ /^\s*[|>+]/
      or $path =~ /\|\s*$/) {
    $xp->{ErrorMessage}
        .= "System ID ($path) contains Perl IO control characters";
    return undef;
  }

  require IO::File;

  require IO::File;
  my $fh = IO::File->new($path);
  unless (defined $fh) {
    $xp->{ErrorMessage}
      .= "Failed to open $path:\n$!";
    return undef;
  }

  $xp->{_BaseStack} ||= [];
  $xp->{_FhStack} ||= [];

  push(@{$xp->{_BaseStack}}, $base);
  push(@{$xp->{_FhStack}}, $fh);

  $xp->base($path);

  return $fh;
}

sub file_ext_ent_cleanup {
  my ($xp) = @_;

  my $fh = pop(@{$xp->{_FhStack}});
  $fh->close;

  my $base = pop(@{$xp->{_BaseStack}});
  $xp->base($base);
}

1;



DavidLambauer
Znuny expert
Posts: 257
Joined: 25 Apr 2012, 07:28
Znuny Version: 3.1.6
Real Name: David Lambauer
Contact:

Re: Installation auf Ubuntu 12.04 x64

Post by DavidLambauer »

Hm sorry, weiß da leider auch nicht weiter, hast du auch die richtige Version für dein System installiert?
Bitte keine PM's schreiben. Bitte kontaktiert mich über mail@davidlambauer.de

In meinem Blog: http://www.davidlambauer.de findet ihr Artikel über OTRS. In der How To Area des Forums findet ihr auch oft Hilfe...!
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Re: Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Ja. Das war die Anleitung für Ubuntu. Allerdings halt 10.04.
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Re: Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Jetzt bin ich verwirrt. Habe nun noch mal Ubuntu 10.04.4 installiert und da tritt der gleiche Fehler auf. Irgendwas muss ich doch übersehen haben?!

edit: Mir ist aufgefallen, dass wenn ich mich mit falschen Anmeldedaten (user/pw) anmelde, nicht diese Fehlermeldung kommt, sondern nur das wackelnde Loginfenster mit der Meldung, dass die Eingabe falsch ist.
DavidLambauer
Znuny expert
Posts: 257
Joined: 25 Apr 2012, 07:28
Znuny Version: 3.1.6
Real Name: David Lambauer
Contact:

Re: Installation auf Ubuntu 12.04 x64

Post by DavidLambauer »

Naja deine Anmeldedaten werden ja vorher überprüft, demnach ist es kein Wunder, dass das wackelnde Fenster erscheint. Kann die aber leider auch nicht mehr sagen..
Bitte keine PM's schreiben. Bitte kontaktiert mich über mail@davidlambauer.de

In meinem Blog: http://www.davidlambauer.de findet ihr Artikel über OTRS. In der How To Area des Forums findet ihr auch oft Hilfe...!
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Re: Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Ich raff es nicht. Zuhause auf meine, 12.04 Desktop x64 lief es gestern. Hier an der Arbeit habe ich mit 10.04 und 12.04 diese Probleme.

Hatte vorhin diese Meldung im Log:

Code: Select all

[Wed Jul 04 15:27:58 2012] [error] no connection to syslog available\n\t- /dev/log is not a socket at /opt/otrs//Kernel/System/Log/SysLog.pm line 66\n
Habe daraufhin syslogd sicherheitshalber neuinstalliert (es war glaube ich rsyslog drauf), dann die DB wieder über die GUI gelöscht und von vorne gestartet. Dann ging es soweit, bis ich die Mailangaben machen muss. Danach kam wieder der Browserfehler.

Hier noch mal ein Log:

Code: Select all

Notice: Install /opt/otrs/Kernel/System/Support/Webserver.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar/Constant.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar/File.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Linux/Distribution.pm (644)!
Notice: Install /opt/otrs/var/httpd/htdocs/skins/Agent/default/css/Support.Default.css (644)!
[Wed Jul 04 15:27:58 2012] [error] no connection to syslog available\n\t- /dev/log is not a socket at /opt/otrs//Kernel/System/Log/SysLog.pm line 66\n
[Wed Jul  4 15:32:39 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:35:55 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:36:00 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:36:19 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
Notice: Install /opt/otrs/Kernel/Config/Files/Support.xml (644)!
Notice: Install /opt/otrs/Kernel/Language/de_Support.pm (644)!
Notice: Install /opt/otrs/Kernel/Modules/AdminSupport.pm (644)!
Notice: Install /opt/otrs/Kernel/Output/HTML/Standard/AdminSupport.dtl (644)!
Notice: Install /opt/otrs/Kernel/Output/HTML/Standard/AdminSupportLicenseText.dtl (644)!
Notice: Install /opt/otrs/Kernel/System/Support.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Database.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/OS.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/OTRS.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Webserver/IIS.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Webserver/Apache.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Database/oracle.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Database/mssql.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Database/postgresql.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Database/mysql.pm (644)!
Notice: Install /opt/otrs/Kernel/System/Support/Webserver.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar/Constant.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar/File.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Archive/Tar.pm (644)!
Notice: Install /opt/otrs/Kernel/cpan-lib/Linux/Distribution.pm (644)!
Notice: Install /opt/otrs/var/httpd/htdocs/skins/Agent/default/css/Support.Default.css (644)!
Notice: CREATE TABLE support_bench_test (
    name_a VARCHAR (60) NOT NULL,
    name_b VARCHAR (60) NOT NULL,
    INDEX support_index_bench_test_name_a (name_a)
)
[Wed Jul  4 15:36:30 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:36:30 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:36:30 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
[Wed Jul  4 15:37:39 2012] de_Support.pm: Subroutine Data redefined at /opt/otrs//Kernel/Language/de_Support.pm line 18.
ERROR: OTRS-CGI-10 Perl: 5.10.1 OS: linux Time: Wed Jul  4 15:38:35 2012

 Message: C-Parser:
syntax error at line 1, column 49, byte 49 at /usr/lib/perl5/XML/Parser.pm line 187
!

 Traceback (5387):
   Module: Kernel::System::XML::XMLParse (v1.109) Line: 776
   Module: Kernel::System::XML::XMLParse2XMLHash (v1.109) Line: 608
   Module: Kernel::Output::HTML::DashboardProductNotify::Run (v1.11) Line: 86
   Module: Kernel::Modules::AgentDashboard::_Element (v1.29) Line: 513
   Module: Kernel::Modules::AgentDashboard::Run (v1.29) Line: 350
   Module: Kernel::System::Web::InterfaceAgent::Run (v1.64) Line: 868
   Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_index_2epl::handler (unknown version) Line: 46
   Module: (eval) (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::run (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::default_handler (v1.90) Line: 170
   Module: ModPerl::Registry::handler (v1.99) Line: 31

ERROR: OTRS-CGI-10 Perl: 5.10.1 OS: linux Time: Wed Jul  4 15:38:35 2012

 Message: XML::Parser produced errors. I use XML::Parser::Lite as fallback!

 Traceback (5387):
   Module: Kernel::System::XML::XMLParse (v1.109) Line: 777
   Module: Kernel::System::XML::XMLParse2XMLHash (v1.109) Line: 608
   Module: Kernel::Output::HTML::DashboardProductNotify::Run (v1.11) Line: 86
   Module: Kernel::Modules::AgentDashboard::_Element (v1.29) Line: 513
   Module: Kernel::Modules::AgentDashboard::Run (v1.29) Line: 350
   Module: Kernel::System::Web::InterfaceAgent::Run (v1.64) Line: 868
   Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_index_2epl::handler (unknown version) Line: 46
   Module: (eval) (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::run (v1.90) Line: 204
   Module: ModPerl::RegistryCooker::default_handler (v1.90) Line: 170
   Module: ModPerl::Registry::handler (v1.99) Line: 31

[Wed Jul 04 15:38:35 2012] [error] [Wed Jul  4 15:38:35 2012] Lite.pm: mismatched tag 'head'\n
mfuhrmann
Znuny newbie
Posts: 38
Joined: 10 May 2012, 10:24
Znuny Version: 3.3.8
Real Name: Marcel Fuhrmann
Location: Fulda

Re: Installation auf Ubuntu 12.04 x64

Post by mfuhrmann »

Heute habe ich Debian 6 x64 installiert. UNd da passiert genau das Gleiche.
Es kann doch nicht sein, dass ich der einzige bin, bei dem das auftritt? Debian und Ubuntu sind ja auch nicht gerade unbekannte Betriebssysteme.
Yabba
Znuny newbie
Posts: 64
Joined: 17 Mar 2011, 12:07
Znuny Version: 3.1.7
Real Name: Michael Kohn

Re: Installation auf Ubuntu 12.04 x64

Post by Yabba »

Habe nicht wirklich eine Idee, aber was sagt der Output von bin/otrs.checkModules ?
Bzgl. Syslog-Fehler: Evtl. musst du /dev/log noch in der entsprechenden Konfiguration deines Syslog-Daemons aktivieren?
OTRS 3.3.6 / FAQ 2.3.3 / ImportExport 3.3.5 / SystemMonitoring 2.5.3 / Support 1.5.4
OS: Debian 7 Wheezy / DB: MySQL 5.5 / Webserver: Apache 2.2
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Installation auf Ubuntu 12.04 x64

Post by reneeb »

Geht es, wenn Du nicht Syslog nimmst, sondern eine Datei? Das kannst Du in Kernel/Config.pm einstellen (evtl. musst Du von Kernel/Config/Defaults.pm die Option übernehmen).
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Alexander Halle
Znuny expert
Posts: 296
Joined: 04 Jul 2010, 17:49
Znuny Version: 3.1.x
Real Name: Alexander Halle
Company: radprax MVZ GmbH
Location: Wuppertal
Contact:

Re: Installation auf Ubuntu 12.04 x64

Post by Alexander Halle »

Hallo mfuhrmann, ich empfehle eine Rückmeldung, vor allem für die User, die probiert haben dir zu helfen ;)

Die beiden Tipps otrs.CheckModules, sowie Datei statt Syslog waren doch sehr gut.
Alexander Halle System: OTRS 3.1.x, Ubuntu 10.04.x LTS, MySQL 5.1.x, Apache 2.2.x
OTRS Community Links: User Meetings, Projects
Locked