[REBOL] Re: mysql access denied for user

2001-03-21 Thread GS Jones
From: Frontline Assembly > Im sorry to do this but could someone repost the link to the mysql:// port scheme. For some reason it appears I removed my message on it. > > Brady http://rebol.dhs.org/mysql-loader.r at DocKimbel's site --Scott Jones -- To unsubscribe from this list, please send an

[REBOL] Re: mysql access denied for user

2001-03-21 Thread Frontline Assembly
Im sorry to do this but could someone repost the link to the mysql:// port scheme. For some reason it appears I removed my message on it. Brady On Tue, Mar 20, 2001 at 07:37:27AM -0600, <[EMAIL PROTECTED]> wrote: > Thanks for pointing me in the right direction. I found it here in the docs...

[REBOL] Re: mysql access denied for user

2001-03-21 Thread <[EMAIL PROTECTED]>
Thanks for pointing me in the right direction. I found it here in the docs... shell> mysql --user=root mysql mysql> GRANT ALL PRIVILEGES ON *.* TO monty@localhost IDENTIFIED BY 'some_pass' WITH GRANT OPTION; mysql> GRANT ALL PRIVILEGES ON *.* TO monty@"%" IDENTIFIED BY '

[REBOL] Re: mysql access denied for user

2001-03-20 Thread Michal Kracik
> > So does that mean the mysql:// protocol will only work using scripts > executed on the server where the database resides? > With default MySQL privileges, yes. It's not specific to mysql:// protocol, it's the same with PHP, Perl, ODBC driver or any other client. But MySQL administrator can

[REBOL] Re: mysql access denied for user

2001-03-19 Thread <[EMAIL PROTECTED]>
So does that mean the mysql:// protocol will only work using scripts executed on the server where the database resides? >This is normal, MySQL always distinguishes user names with domains. >When you login with telnet to the server running MySQL, you run MySQL >client and server on the same machi

[REBOL] Re: mysql access denied for user

2001-03-19 Thread Michal Kracik
Hi Ryan, This is normal, MySQL always distinguishes user names with domains. When you login with telnet to the server running MySQL, you run MySQL client and server on the same machine. MySQL server recognizes you as user@localhost which is granted access by default. But all users in other domain