Creating users for local databases

2004-06-30 Thread BillB
Hi, This is a dumb newbie question, so please bear with me:) I'm trying to connect to an existing database called 'billblac_recovery'. I want the username to be 'billblac_bill' and the password to be 'wgb'. I'm having no luck with the CLI or MySQLAdministrator. I'm using MySQL 4.1, upgraded from 3.

Re: Creating Users and Passwords

2004-04-29 Thread Lou Olsten
; To: "Lou Olsten" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 9:34 PM Subject: Re: Creating Users and Passwords > > Lou Olsten wrote: > > > I thought I had a handle on this, but now I'm all screwed up. > > > > My

Re: Creating Users and Passwords

2004-04-29 Thread Michael Stassen
Dan Nelson wrote: In the last episode (Apr 29), Lou Olsten said: I thought I had a handle on this, but now I'm all screwed up. MySQL 4.1.1a-alpha-max-debug-log Windows 2000 Server I'm trying to create a user roby with a password of 'foo' with access to everything. Here's what happens: - Sign in

Re: Creating Users and Passwords

2004-04-29 Thread Michael Stassen
Lou Olsten wrote: I thought I had a handle on this, but now I'm all screwed up. MySQL 4.1.1a-alpha-max-debug-log Windows 2000 Server I'm trying to create a user roby with a password of 'foo' with access to everything. Here's what happens: - Sign in as root on the local host. - GRANT ALL PRIVILE

Re: Creating Users and Passwords

2004-04-29 Thread Paul DuBois
At 16:21 -0500 4/29/04, Dan Nelson wrote: In the last episode (Apr 29), Lou Olsten said: I thought I had a handle on this, but now I'm all screwed up. MySQL 4.1.1a-alpha-max-debug-log Windows 2000 Server I'm trying to create a user roby with a password of 'foo' with access to everything. Her

Re: Creating Users and Passwords

2004-04-29 Thread Tbird67ForSale
hmmmif you are on the same machine, does it work if you do not specify the '-h localhost'? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Creating Users and Passwords

2004-04-29 Thread Tbird67ForSale
What is the version of your mysql client? If it is pre 4.1 then it is likely being bitten by the password length change from 4.0.xx to 4.1 from 16bytes to 41bytes. You'll need to read the note on passwords in the 4.1 docs. Hope this helps. -- MySQL General Mailing List For list archives: ht

Re: Creating Users and Passwords

2004-04-29 Thread Lou Olsten
ing unique to that box. Lou - Original Message - From: "Dan Nelson" <[EMAIL PROTECTED]> To: "Lou Olsten" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 5:21 PM Subject: Re: Creating Users and Passwords > In the last

Re: Creating Users and Passwords

2004-04-29 Thread Dan Nelson
In the last episode (Apr 29), Lou Olsten said: > I thought I had a handle on this, but now I'm all screwed up. > > MySQL 4.1.1a-alpha-max-debug-log > Windows 2000 Server > > I'm trying to create a user roby with a password of 'foo' with access to everything. > Here's what happens: > > - Sign i

Creating Users and Passwords

2004-04-29 Thread Lou Olsten
I thought I had a handle on this, but now I'm all screwed up. MySQL 4.1.1a-alpha-max-debug-log Windows 2000 Server I'm trying to create a user roby with a password of 'foo' with access to everything. Here's what happens: - Sign in as root on the local host. - GRANT ALL PRIVILEGES ON *.* TO rob

Re: Creating users

2004-02-12 Thread Egor Egorov
Daniel Audette <[EMAIL PROTECTED]> wrote: > > I would like to create a user that can create databases and do all the > necessary changes to it(select, insert, update, delete...), view all > database that he has been granted to see by other users except the > mysql.* I have created 1 user with the

Creating users

2004-02-10 Thread Daniel Audette
Hello I would like to create a user that can create databases and do all the necessary changes to it(select, insert, update, delete...), view all database that he has been granted to see by other users except the mysql.* I have created 1 user with the grant method but he can see all the tables and

Re: creating users

2004-02-08 Thread Michael Stassen
Perhaps he really intended to revoke all privs, but he had a syntax error. In that case, to revoke all rights for the mysql db from a particular user ([EMAIL PROTECTED] for example), you would issue REVOKE ALL ON mysql.* FROM [EMAIL PROTECTED] Daniel was missing the '.*' after mysql, which c

Re: creating users

2004-02-08 Thread Bernard Clement
Hello Daniel, Try with: revoke show databases on mysql.* from [EMAIL PROTECTED]; If the user [EMAIL PROTECTED] issue "show databases" il will not see anymore the databases "mysql". The revoke you were trying was not only on showing the database mysql but revoke all the privilege, is is really

creating users

2004-02-08 Thread Daniel Audette
Hello I am new to mysql. What I want to do is give a user a right to create databases with all rights but I do not want them to see the mysql database I have tried the following GRANT ALL PRIVILEGES ON *.* TO [EMAIL PROTECTED] DENTIFIED BY 'some_pass' WITH GRANT OPTION; then tried to revoke r

Re: Trouble creating users

2003-07-08 Thread Paul DuBois
At 8:55 -0700 7/8/03, Michael Iatauro wrote: I took once moe a sharp look now that you did a reply with another sample. Actually I was wrong the SQL statement was NOT correct - you forgot the semicolon in the first exapmple ;-) To my knowledge, the semicolon is unnecessary when using mysql --ex

Re: Trouble creating users

2003-07-08 Thread Nils Valentin
2003年 7月 9日 水曜日 00:55、Michael Iatauro さんは書きました: > > I took once moe a sharp look now that you did a reply with another > > sample. Actually I was wrong the SQL statement was NOT correct - you > > forgot the semicolon in the first exapmple ;-) > > To my knowledge, the semicolon is unnecessary when u

Re: Trouble creating users

2003-07-08 Thread Michael Iatauro
I took once moe a sharp look now that you did a reply with another sample. Actually I was wrong the SQL statement was NOT correct - you forgot the semicolon in the first exapmple ;-) To my knowledge, the semicolon is unnecessary when using mysql --execute. ~Michael Iatauro -- MySQL General Ma

Re: Trouble creating users

2003-07-07 Thread Nils Valentin
Hi Michael; I took once moe a sharp look now that you did a reply with another sample. Actually I was wrong the SQL statement was NOT correct - you forgot the semicolon in the first exapmple ;-) 'Y', 'Y', 'Y');\"" Best regards Nils Valentin Tokyo/Japan 2003年 7月 8日 火曜日 09:38、Michael I

Re: Trouble creating users

2003-07-07 Thread Michael Iatauro
Thanks for your reply, Nils. and then I would like you to take a sharp look at whats left, then there should perhaps be something with this part above. Perhaps the " at the very end is not escaped correctly (double) or something similar. The actual SQL statement works perfectly fine. I thought

Re: Trouble creating users

2003-07-07 Thread Nils Valentin
thing with this part above. Perhaps the " at the very end is not escaped correctly (double) or something similar. The actual SQL statement works perfectly fine. Best regards Nils Valentin Tokyo/Japan 2003年 7月 8日 火曜日 08:28、Michael Iatauro さんは書きました: > I've been having a little trouble

Trouble creating users

2003-07-07 Thread Michael Iatauro
I've been having a little trouble creating users cross-platform. I have a little script that works just fine on Solaris 8 using this command: eval "/path/to/mysql --user=root --password=* --socket=/path/to/socket --database=mysql --execute=\"INSERT INTO user (Host,

re: Creating users through SQL

2002-11-02 Thread Victoria Reznichenko
John, Thursday, October 31, 2002, 11:49:08 PM, you wrote: JM> How do I create users for a specific database using SQL? Take a look at GRANT statement: http://www.mysql.com/doc/en/GRANT.html -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsore

RE: Creating users through SQL

2002-11-01 Thread Josh Trutwin
-- > From: John Meyer [mailto:johnmeyer_1978@;yahoo.com] > Sent: October 31, 2002 16:49 > To: [EMAIL PROTECTED] > Subject: Creating users through SQL > > > How do I create users for a specific database using SQL? --

RE: Creating users through SQL

2002-11-01 Thread Fernando Grijalba
meyer_1978@;yahoo.com] Sent: October 31, 2002 16:49 To: [EMAIL PROTECTED] Subject: Creating users through SQL How do I create users for a specific database using SQL? - Before posting, please check: http://www.mysql.com/manual.php (

RE: Creating users through SQL

2002-10-31 Thread Black, Kelly W [PCS]
It's all right here => http://www.mysql.com/manual.php -Original Message- From: John Meyer [mailto:johnmeyer_1978@;yahoo.com] Sent: Thursday, October 31, 2002 1:49 PM To: [EMAIL PROTECTED] Subject: Creating users through SQL How do I create users for a specific database u

Creating users through SQL

2002-10-31 Thread John Meyer
How do I create users for a specific database using SQL? - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[E

RE: creating users ??? I must be blind.

2002-01-07 Thread Matthew Smith
look for 'GRANT SYNTAX' in the manual. Regards M -Original Message- From: Matthew Darcy [mailto:[EMAIL PROTECTED]] Sent: 07 January 2002 13:16 To: MySql List Subject: creating users ??? I must be blind. Hi, the manual referes to creating users using mysqladmin and mysq

creating users ??? I must be blind.

2002-01-07 Thread Matthew Darcy
Hi, the manual referes to creating users using mysqladmin and mysqlaccess, I have looked at these commands and cannot see how I can create mysql users. Am I missing something that is staring me in the face ? Thanks, Matt. (slowing getting the hang of what is going on now