Line 28: |
Line 28: |
| cd /opt/otrs/Kernel | | cd /opt/otrs/Kernel |
| | | |
− | edit Config.pm using vi or pico or favorite text editor | + | 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 | | 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';''' |
| + | |
| + | =============================================================================== |
| | | |
| [[Category:Howto]] | | [[Category:Howto]] |