OTRS Database

English! place to talk about development, programming and coding
Post Reply
dondino
Znuny newbie
Posts: 15
Joined: 21 May 2008, 13:36
Znuny Version: 2.2.6
Location: Niederscherli

OTRS Database

Post by dondino »

Brauche hilfe brauche
kann mir jemand den aufbau des Kategoriendiagramms sagen?

BUSSINESS CRITICAL
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

OTRS Database

Post by jojo »

Kannst Du das genauer Erläutern?
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
dondino
Znuny newbie
Posts: 15
Joined: 21 May 2008, 13:36
Znuny Version: 2.2.6
Location: Niederscherli

OTRS Database

Post by dondino »

Es geht darum das ich Raportieren muss wieviele Tickets schon eskaliert sind, das kann ich aber nicht bei der statistik.

Dachte mir jetzt das ich in der SQL Box vieleicht alle Tickets filtern kann die die eskalations zeit überschritten haben.
Best regards, Mit freundlichen Grüssen, Meilleures salutations,
Don Dino
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

OTRS Database

Post by jojo »

Den Aufbau der Datenbank findest Du auf ftp.otrs.org: http://ftp.otrs.org/pub/otrs/misc/otrs-2.2-database.png
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
dondino
Znuny newbie
Posts: 15
Joined: 21 May 2008, 13:36
Znuny Version: 2.2.6
Location: Niederscherli

OTRS Database

Post by dondino »

Habe leider keinen zugriff darauf
Best regards, Mit freundlichen Grüssen, Meilleures salutations,
Don Dino
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

OTRS Database

Post by jojo »

wie? Da kommt man problemlos drauf
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
dondino
Znuny newbie
Posts: 15
Joined: 21 May 2008, 13:36
Znuny Version: 2.2.6
Location: Niederscherli

OTRS Database

Post by dondino »

Bekomme immer ein popup wo ich einen Benutzernamen und eine Passwort eintragen soll
Best regards, Mit freundlichen Grüssen, Meilleures salutations,
Don Dino
govinthmani
Znuny newbie
Posts: 1
Joined: 25 Jul 2011, 14:07
Znuny Version: 3.0.3
Real Name: manees
Company: ceg

OTRS Database

Post by govinthmani »

Hi..The Open-source Ticket Request System (OTRS) is more than a mailing list notification system for ticket requests.
OTRS database configuration

cp /opt/otrs/Kernel/Config.pm.dist /opt/otrs/Kernel/Config.pm

cd /opt/otrs/Kernel

edit Config.pm using vi or pico or favorite text editor & edit lines as shown below, take note of the database information as this would be required in later steps

line 41: $Self->{Database} = 'otrs';

line 44: $Self->{'DatabaseUser'} = 'otrs';

line 48: $Self->{'DatabasePw'} = 'some-pass';

pico Config.pm

# DatabaseHost
# (The database host.)
$Self->{DatabaseHost} = 'localhost';
# Database
# (The database name.)
$Self->{Database} = 'otrs';
# DatabaseUser
# (The database user.)
$Self->{DatabaseUser} = 'otrs';
# DatabasePw
# (The password of database user. You also can use bin/CryptPassword.pl
# for crypted passwords.)
$Self->{DatabasePw} = 'some-pass';

Save by pressing Ctrl x, press y to save changes and press enter
Post Reply