Grant - questions

2002-11-26 Thread Darryl Hoar
Greetings, I created a database. I am having problems connecting to the database remotely. Getting Access Denied. If I log into the machine that the database is on and mysql -u darryl -ppassword I get in. If I try to connect from another machine, Access denied for [EMAIL PROTECTED]. How do I

Re: Grant - questions

2002-11-26 Thread Iikka Meriläinen
Hi! RTFM :-) These URLs will help you: http://www.mysql.com/doc/en/User_names.html http://www.mysql.com/doc/en/GRANT.html http://www.mysql.com/doc/en/Adding_users.html Iikka On Tue, 26 Nov 2002, Darryl Hoar wrote: Greetings, I created a database. I am having problems connecting to the

re: Grant - questions

2002-11-26 Thread Victoria Reznichenko
Darryl, Tuesday, November 26, 2002, 4:46:32 PM, you wrote: DH I created a database. I am having problems connecting DH to the database remotely. Getting Access Denied. DH If I log into the machine that the database is on and DH mysql -u darryl -ppassword DH I get in. DH If I try to connect

GRANT questions on OS X.

2002-04-19 Thread Alex Pilson
Why is this producing a syntax error at the %? This is supposed to create a global user, yes? GRANT ALL ON *.* TO myuser@% IDENTIFIED BY mypassword; Is there a quick command to show all GRANTS? or Users? -- - Alex Pilson FlagShip

Re: GRANT questions on OS X.

2002-04-19 Thread Alex Pilson
At 12:59 PM -0500 4/19/02, Paul DuBois wrote: Why is this producing a syntax error at the %? This is supposed to create a global user, yes? GRANT ALL ON *.* TO myuser@% IDENTIFIED BY mypassword; myuser@% Andrew Hazen emailed me to use single quotes and it worked. So does mysql care if it is

Re: GRANT questions on OS X.

2002-04-19 Thread Barry C. Hawkins
Alex, Enclose the user string in quotes. This will allow you to use the global wildcard option. Example: GRANT ALL ON *.* TO myuser@% IDENTIFIED BY mypassword; For those not using Mac OS X, the default shell is tcsh. I am not sure if this quirk is a function of string handling in

Re: GRANT questions on OS X.

2002-04-19 Thread Paul DuBois
Why is this producing a syntax error at the %? This is supposed to create a global user, yes? GRANT ALL ON *.* TO myuser@% IDENTIFIED BY mypassword; myuser@% Andrew Hazen emailed me to use single quotes and it worked. So does mysql care if it is single or double quotes? No. --

Re: GRANT questions on OS X.

2002-04-19 Thread Paul DuBois
At 14:58 -0400 4/19/02, Barry C. Hawkins wrote: Alex, Enclose the user string in quotes. This will allow you to use the global wildcard option. Example: GRANT ALL ON *.* TO myuser@% IDENTIFIED BY mypassword; You should quote the user name and host name parts separately. myuser@%