[rt-users] Problem initializing database

2007-08-07 Thread John Oliver
[EMAIL PROTECTED] ~]# /usr/sbin/rt-setup-database --action init --dba root --prompt-for-dba-password In order to create or update your RT database,this script needs to connect to your mysql instance on 10.12.14.149 as root. Please specify that user's database password below. If the user has no

Re: [rt-users] Problem initializing database

2007-08-07 Thread Scott Hebert
On 8/7/07, John Oliver [EMAIL PROTECTED] wrote: grant all on *.* to 'root'@'10.12.14.164' identified by '' This is *almost* proper syntax. Try this instead... GRANT ALL ON *.* TO 'root'@'10.12.14.164' IDENTIFIED BY 'password' WITH GRANT OPTION Good luck! -- Scott

Re: [rt-users] Problem initializing database

2007-08-07 Thread John Oliver
On Tue, Aug 07, 2007 at 01:11:24PM -0500, Scott Hebert wrote: On 8/7/07, John Oliver [EMAIL PROTECTED] wrote: grant all on *.* to 'root'@'10.12.14.164' identified by '' This is *almost* proper syntax. Try this instead... GRANT ALL ON *.* TO 'root'@'10.12.14.164'