[rt-users] How should I create a db in mysql?

2009-11-30 Thread Wagner Pereira
Hi, folks. My scenario is: Debian 5.0 lenny x86_64 Request Tracker 3.6 Mysql 5.0 This is my first time here and I need some help: I don't know to create a mysql database, since as I observed, there is no database created. -- Wagner Pereira PoP-SP/RNP - Ponto de Presença da RNP em São Paulo

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread elsif
Login to mysql as root (or user with admin access). create database rt3; grant all on rt3.* to rt3 identified by 'password'; flush privileges; should do it IIRC. You can also use the 'mysqladmin' utility that I think the documentation references. -jake On Mon, 30 Nov 2009, Wagner

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread Kevin Falcone
On Mon, Nov 30, 2009 at 12:26:45PM -0200, Wagner Pereira wrote: Hi, folks. My scenario is: Debian 5.0 lenny x86_64 Request Tracker 3.6 Mysql 5.0 This is my first time here and I need some help: I don't know to create a mysql database, since as I observed, there is no database

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread Wagner Pereira
Hi, Kevin. Could you help me? RT: Request Tracker You're almost there! You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to run the RT server which powers the web interface. The next

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread Kevin Falcone
On Mon, Nov 30, 2009 at 05:43:20PM -0200, Wagner Pereira wrote: Hi, Kevin. Could you help me? RT: Request Tracker You're almost there! You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread Wagner Pereira
This is all covered in the README You need to configure apache -kevin Kevin, Is this README file in /opt/rt3/share/doc path? -- Wagner Pereira PoP-SP/RNP - Ponto de Presença da RNP em São Paulo CCE/USP - Centro de Computação Eletrônica da Universidade de São Paulo http://www.pop-sp.rnp.br

Re: [rt-users] How should I create a db in mysql?

2009-11-30 Thread Behzad Mahini
Take a look at the following 2 URL's, and make sure you set your Apache directives (in your httpd.conf file): http://wiki.bestpractical.com/view/ManualInstallation http://wiki.bestpractical.com/view/ManualApacheConfig Also, make sure you have all the appropriate references made to mod_perl