Wrox Programmer Forums
|
Classic ASP Databases Discuss using ASP 3 to work with data in databases, including ASP Database Setup issues from the old P2P forum on this specific subtopic. See also the book forum Beginning ASP.NET Databases for questions specific to that book. NOT for ASP.NET 1.0, 1.1, or 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Databases section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 20th, 2005, 11:56 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default mysql control center error: 1130

mysql control center error: 1130

Can anyone tell me how to get around this error.

trying to connect to another db within the network.

Picco


__________________
_______________________
Ayrshire Minis - a Mini E-Community
http://www.ayrshireminis.com
http://www.crmpicco.co.uk
 
Old January 20th, 2005, 12:22 PM
Friend of Wrox
 
Join Date: Jan 2004
Posts: 303
Thanks: 0
Thanked 0 Times in 0 Posts
Default

By default all users are only allowed to connect from localhost, i.e. the same computer where mysql is installed. A soultion could be to log in through localhost and change the user to be allowed to login from all/specific domains

if you want to allow a user called 'myuser' to connect from any host with the password 'mypassword' :

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

if you want to allow a user called 'myuser' to connect from your computer with the password 'mypassword' :

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'MyComputerIPAddress' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
 
Old January 20th, 2005, 12:27 PM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

thanks mate.

Picco






Similar Threads
Thread Thread Starter Forum Replies Last Post
latest version of MySQL Control Center crmpicco MySQL 2 September 12th, 2005 10:07 AM
mysql control center error: 1130 crmpicco MySQL 1 January 25th, 2005 11:57 AM
mysql control center error: 1130 crmpicco SQL Language 1 January 20th, 2005 03:17 PM
Do Any Use Application Center Test alyeng2000 ASP.NET 1.0 and 1.1 Professional 1 August 6th, 2004 04:25 AM
align Center melvik C# 1 September 7th, 2003 04:50 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.