If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Newbie Question

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-14-04, 12:54
Sylvyr Sylvyr is offline
Registered User
 
Join Date: Jun 2004
Posts: 1
Newbie Question

You'll have to forgive me in advance for this one.. I'm really really new to the SQL world.

Here's my question:

How do I allow connections from specific, or all, addresses.

I get the error:
Error No. 1130
Host 'my-host-24-172-0-45.my.isp.com' is not allowed to connect to this MySQL server


How would I resolve that?


Thanks for any help.
Reply With Quote
  #2 (permalink)  
Old 06-15-04, 03:25
chrisranjana chrisranjana is offline
Registered User
 
Join Date: May 2002
Location: chennai , tamil nadu , India
Posts: 17
mysql grant all privileges !

Quote:
Originally Posted by Sylvyr
You'll have to forgive me in advance for this one.. I'm really really new to the SQL world.

Here's my question:

How do I allow connections from specific, or all, addresses.

I get the error:
Error No. 1130
Host 'my-host-24-172-0-45.my.isp.com' is not allowed to connect to this MySQL server


How would I resolve that?


Thanks for any help.
http://dev.mysql.com/doc/mysql/en/Adding_users.html

Quote:

mysql> GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%'
-> IDENTIFIED BY 'some_pass' WITH GRANT OPTION;
the @ option specifies from which host a particular user is allowed to connect to Mysql
__________________
Chris, Director, Chrisranjana.com
Web Development company
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On