Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MYSQL


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Unable To Connect To Mysql Server(Linux)


i have problem om my sevrer ( linux )
WHM 11.11.0 cPanel 11.16.0-S18450
REDHAT Enterprise 4 i686 on standard - WHM X v3.1.0

after update apache then all websites on server can not connect mysql
from WHM > Tweak Settings > Mysql > 5.0
and used old style (4.0) passwords with MySQL® 4.1+

also command /scripts/mysqlup
but no way still same error can not connect to Mysql




View Complete Forum Thread with Replies

Related Forum Messages:
Unable To Connect To Database Server. Can't Connect To MySQL Server On 'localhost' (10055)
I am running a PHP application with mySQL . Some times it gives the following error.
I do not understrand why this error occures .

today i am using the application but it is not giving the error but error occures yested day .

Unable to connect to Database Server. Can't connect to MySQL server on 'localhost' (10055).

View Replies !
Unable To Connect To Mysql Server
I have downloaded and installed the latest stable versin of MySql. I have followed the install steps and everything went fine. I have then installed phpmyadmin. I modified the config file to add my password for the root user.

When I type the following address http://localhost/phpmyadmin to access the index page of phpmyadmin, I get this error message:

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.
Error

MySQL said: Documentation
#1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client

I double checked the password, it's the one I entered during the install process. The username is root. The host name is localhost.

View Replies !
Unable To Connect MySQL Server Across The Network
We have a MySQL server that was managed by another group in our company, the guy who used to manage that MySQL server has promptly left. Now this server has turned into me. I'm a Microsoft SQL guy, however, the manager doesn't think there is much difference between MSSQL and MYSQL.

Now I am in the hot seat to fix a problem that just occurred last week. We're suddenly not able to connect this MySQL server across the network. I checked the network connection, everything looked fine, I was able to telnet into the port 3306. First I thought someone changed the root password, but I was able to connect the server from the local server by using:

mysql -h localhost -u root -p

Other accounts have the same problem as well. If I try to connect this MySQL server from a workstation, I'll get the following error message:

ERROR 1045 (00000): Access denied for user: 'root@CS7LL11' (Using password: YES)

It will be geatly appreciated if someone can inform me what I need to do to fix this problem.

By the way, this MySQL server has the version # 3.32.56-nt

View Replies !
Unable To Connect To MySQL Server On Localhost (10061)
I'm trying to install invision pwr board for friends and family. I've got Apache2Triad on Windows, along with some other services like DC, Vent, Teamspeak (I'm a big gammer). I fill out the information to 'install' invision from the web address, click next and it says cannot connect to MySQL server on localhost (10061).

I've created the database but didn't add any tables or anything cuz I don't know what tables to create. Invision doesn't say which tables, just says type in the name of the database. Don't know if my password is wrong (using the one I created at install of apache) or if it's a port issue (installing on host machine) etc...

I've also tried to install a few other programs the same way; Bulletin Board, 3 different image hosting programs etc... all say the same thing, can't connect. All have there own databases with no tables (cuz programs doesn't say which tables to create). Code:

View Replies !
Download Of Mysql.sock File Unable To Connect To Mysql Server
Where can i get the download mysql.sock file?

I am unable to connect to local server because i dont have this file?

View Replies !
Server Unable To Connect
I added a admin and security feature through Xampp after which I cannot load my Mysql database on my localserver. When I try to load it and use it in joomla the following error comes up 'Database Error: Unable to connect to the database:Could not connect to MySQL'


View Replies !
Unable To Connect To Server (was "Novice User Problem")
I've been reading Kevin Yank's Build Your Own Database Driven Website and am unable to connect to the MySQL server as he describes in Chapter 4 (p. 74-75).

After modifying his code to produce a mysql_error, I get:

Unable to connect to server at this time.Client does not support authentication protocol requested by server; consider upgrading MySQL client

Even though I am using the latest MySQL server (5.0).
My
?php

$dbcnx = @mysql_connect('localhost', 'root', 'my_actual_password');
if (!$dbcnx) {
exit('<p>Unable to connect to server at this time.' . mysql_error() . '</p>');
}

if (!@mysql_select_db('ijdb')) {
exit('<p>Unable to locate the joke database at this time.</p>');
}

?>
<p>Here are all the jokes in our MySQL database:</P.
<blockquote>
<?php
$result = @mysql_query('SELECT joketext FROM joke');
if (!$result) {
exit('<p>Error performing query: ' . mysql_error() . '</p>');
}
while ($row = mysql_fetch_array($result)) {
echo '<p>' . $row['joketext'] . '</p>'
}
?>

View Replies !
"Unable To Connect To The Database Server"
I'm moving database from old to new hosting account. I created the MySQL database and my user name and then imported the text file that I'd created when exporting the database in phpmyadmin on the old hosting account. Now, after importing database in phpmyadmin, I'm getting this message "Unable to connect to the database server." on website where the data should be displayed. This is what the php looks like that calls up the database for that webpage:

<?php $dbcnx = @mysql_connect('localhost','****', '****');
if (!$dbcnx) { echo('<p>Unable to connect to the database server.</p>');
exit();
}
mysql_select_db('****', $dbcnx);
if (! @mysql_select_db('****')) {
die('<p>Unable to locate the member</p>');
}

This is all new to me and I'm stumped. I can see the data is there in phpmyadmin. Do I need to "upload" it?

View Replies !
Unable To Connect MySql 4.0
I am running XP and was having a problem with MySql 4.0 so I upgraded to 4.1.10, but now cannot access MySQL either from the localhost or from any clients.
From the locahost I get "Host "localhost" is not allowed to connect to this MySql server". I also get the same error if I try to access the server from a client.
I looked thru the other forum but have not seen a definitive answer to the problem.

View Replies !
Unable To Connect To Mysql Remotely
I just setup my RedHat 9.0 server and have it preconfigured for MySQL, Apache and PHP.
I am able to connect to mySQL using a GUI client from my my LAN (192.168.1.xx), but unable to connect from a remote site.
I have my linksys router configured to forward any requests for port 3306 to my redhat linux IP. I thought it would be also important to mention that I am able to connect to my Apache webpage remotely.
"Cant connect to MySQL server on 'starfire.homelinux.net'" Error 10060 when trying to test from my ODBC drivers.
I have also tried granting a connection for a user@%, but I still am having the same problem.

View Replies !
Unable To Connect To Mysql Via Perl
I am attempting to connect to my mysql using a perl script, and keep getting an error message that tells me the I am missing a sub routine.

I have installed DBI and DBD::mysql but still can not use

my $dbh = open_dbi($db,$username,$password)

I am assuming that open_dbi is not installed, does anyone know of another, or better way to access mysql via perl.

View Replies !
Unable To Connect To MySQL Hosts
I am trying to connect to a MySQL database with the .NET provider. I had not problem in the past to do so, and now I am getting an error message (pasted below). But the weird thing is that the connection string works fine with MySQL query browser. Code:

View Replies !
Unable To Connect To MySQL Databases
I've downloaded the MySQL 4.1 package for MacOS X.3 and things seem to be running, although I did have to manually run the mysql_install_db script as it didn't seem to run properly during install.

Anyhow the PrefPane keeps telling me that the database server is running but when I try to connect using XOOPS or even an SQL GUI like Cocoa MySQL I cannot connect.

I can login as root using the command line:

mysql -u root -p

and I can create databases and drop databases and tables etc but no external app can connect such as XOOPS or Cocoa MySQL using the same login details. Code:

View Replies !
Unable To Connect To Any Of The Specified MySQL Hosts
My ASP.Net application is using MySQL. It was running fine for a while and suddenly one of my page start to throw 'Unable to connect to any of the specified MySQL hosts' error when trying to display the records from the mysql db table.
When I checked the table it has about 2700 rows. When I deleted the rows and made the total number of rows less than 1000 and run my application the page could show up without any problem.
The problem is with the table row size. How to avoid this error? What settings I should change in MYSQL settings to make it work for bigger size tables.
I am using the MySQL Connector 3.51.12. Could this connector have any problem that cause the error?

View Replies !
Unable To Connect To Mysql With Root Permissions
I am trying to connect to a new mysql installation. I have given root permission to connect to all databases from anywhere;

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'passwd' WITH
GRANT OPTION;

I can log on locally by specifying the host name:

[me@au101 me]$ mysql -h 127.0.0.1 -u root -p test
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 2 to server version: 5.0.18-standard

However, when I try to log in locally without specifying the host name I receive the following error:

[me@au101 me]$ mysql -u root -p mysql
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket
'/var/lib/mysql/mysql.sock' (2)

If I try to connect remotely as root using MySQLyog I receive a similar

error message:

Access denied for user root@[my ip

View Replies !
Unable To Connect To Any Of The Specified MySQL Hosts - Firewall?
In my dev environment I'm running MySQL on Windows XP and it works fine. I can connect from other pc's on my lan no problem.

At the customer however we are hosting the DB on a Linux box. Clients are running XP. When we try to connect we get the error:

System.Exception: "Unable to connect to any of the specified MySQL hosts"

I am using the .Net connector 5.1.4.0
The MySQL DB on the Linux box is MySql 4
We're administering via phpMyAdmin.

We've tried changing firewall settings disabling etc to no avail. experimented with ports etc no help.

I am used to a MS Server 200x and MS SQL environment so this is all new to me.
Do I need to configure the DB or something to alow remote connections from within the LAN or something?

I didn't set up the DB so I am not sure what configurations were specified?

View Replies !
Unable To Connect To Mysql From The Command Line
i have a php application which successfully connects to mysql and interacts with the database.
I am using apache as my web server.
I would like to invoke my code from the command shell, using php.exe like so:
c:phpphp.exe c:script.php
in script.php I am using mysql_connect to connect to the database.
I get the following error:
Access denied for user 'root'@'localhost' (using password: YES)
Note that the same script is working perfectly when invoked via the web server...
what do I need to do in order to make my script work from the command line?



View Replies !
Slow Connect Linux To Windows MySql
I have a Linux box with the latest MySql and another box (Windows 2003 Server) with the latest Mysql.

From the unix prompt I do this:
mysql -uroot -pmypass -h windowsserver mydbname

this take about 4 seconds to connect

I do the exact same thing on a windows workstation and its connected instantly.

View Replies !
Connect MySQL 3.51 Database Present On Windows From LinuX Machine
MySql database is present on windows O.S. Is it possible to connect this database from LINUX platform which is on same network ?

If it is yes, then how to configure from LINUX machine ?

View Replies !
How To Connect Remotely To Linux/MySQL Using MySQL Query Browser
http://dev.mysql.com/doc/query-brows...onnection.html

I'm trying to connect from my Windows based PC to a dedicated server which is running on Linux system.

I type server host and port 3306 user name admin + password and default schema and I get access denied message.

I use putty to connect to the server using IP and port 22 and it connects to the server.

What settings do I need to use to connect to MySQL using query browser?

View Replies !
MYSQL Server In Linux
I have a SQL server on a Linux Fedora machine and I try to use a GUI to
connect to database
I used different GUI like "Toad for MySQL"
in connection page I put Linux IP address as "Server host" and
username/password I keep getting error:
Error No. 2003 Can't connect to MySQL server on '192.168.0.121' (10061)

My question is: Do I need a client installation or configuration on Windows
machine?

View Replies !
MySQL Server On Linux
I have MySQL server running fine on Linux Server(Ubuntu 6.06LTS). I need to connect Windows workstations to the MySQL server. I installed MySQL ODBC 3.51.14 driver on it.
When i try to connect the ODBC allways returns the following error:

[MySQL][ODBC 3.51 Driver]Unknown MySQL server host 'mysql' (11001)

I tried server names like 'mysqld', 'MySQL', ip address, combinations of linux server name and mysql name, and other characters like *.*, *:*, *:mysql, etc...

The MySql server is running fine on linux server, port=3306(default). The 'bind-address = 127.0.0.1' parameter on 'my.cnf' file is marked as comment.

View Replies !
Hou Use MySql On Linux Web Server
Now the problum is that when i Host complete web site to linux server then my all web page is running but i dont no how use MySql database on Net.

Through cPanel i creat MySql database but i cant find database root i m not able to Host or copy my existing MySql database with table which is running on my Computer very fine

So please tell me process

1 have to simply upload my mySql database in Public Html folder or else where
i m using cPanel file manager to upload files

View Replies !
I Can't Start Mysql Server On Linux.
I'm triyng to install mysql server with rpm on a linux red hat 9.0
machine. The installation was succesfully, but now I can't start the
server. I think the right command is mysqld_safe --user=mysql but
during the starting procedure the server shutdown, it reports:

[root@psiche root]# mysqld_safe --user=mysql
Starting mysqld daemon with databases from /var/lib/mysql
040525 09:32:25 mysqld ended

If I try to rebuilt the grant tables using the mysql_install_db it
reports some errors: "asked for 196608 thread stack, but got 126976"
and "to start mysql at boot time you have to copy
support-files/mysql.server to the right place for your system".

View Replies !
Upgrading MySQL On Linux Server
I need to upgrade MySQL on my server. I've tried to find some tutorial, but Google found nothing interesting.

I wonder what is the easiest and most safe way to upgrade MySQL? I'd like to keep configuration (./configure params, configuration files etc) as is and to not hurt anything.

View Replies !
Access Linux Mysql Server From Windows?
Can I run a Mysql server on a linux box, and access the databases belonging to it over a lan from a machine running windows xp?

View Replies !
How Do You Install MySQL 5.0 Server And Administrator On Red Hat Enterprise Linux 3 WS
Could someone point me to instructions for installing MySQL 5.0 server and administrator on a Red Hat Enterprise Linux 3 WS system?

I just freshly installed the system and deliberately did not select MySQL serveras part of the installation I downloaded the 5.0 rpm Community Server edition, and that installed fine. My problems came while trying to build the administrator.

Basically, I got caught up in a loop of incompatable modules:

# rpm -i mysql-3.23.58-16.RHEL3.1.i386.rpm
warning: mysql-3.23.58-16.RHEL3.1.i386.rpm: V3 DSA signature: NOKEY, key ID 025e513b
error: Failed dependencies:
perl-DBD-MySQL is needed by mysql-3.23.58-16.RHEL3.1
MySQL conflicts with mysql-3.23.58-16.RHEL3.1
Suggested resolutions:
/var/spool/up2date/perl-DBD-MySQL-2.1021-3.i386.rpm

If up2date the suggested resolution, it says I need a library from mysql-3.23.58-16.RHEL3.1.i386.rpm.

I will gladly read the "manual" or docs, and would love a pointer to them.

View Replies !
Unable To Connect
I updated mysql on my computer(OS windows) and when I run any script i get:
unable to connect to mysql server: Client does not support authentication protocol requested by server; consider upgrading MySQL client
I'm a windows user so can someone advise me as to what to do to fix?do i have to download client tools separately?

View Replies !
4.1: Unable To Connect
MySQL 4.1 on Solaris 8.

./mysqladmin -u root -p 'password'
Enter password:
./mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'

Why is this happening? And what password is it asking?

View Replies !
Integrating Mysql, @mail, And Suse Linux Enterprise Server 9
I have recently received a admin job at a small web hosting company (small) and the current platform is windows and I will be responsible for creating a linux based platform and eventually moving all information over to linux form the windows setup.

The idea is like this run Suse Linux Enterprise Server 9 using 2 web server running apache, 2 email servers using @mail, and having 2 front end servers with 4 storage nodes clustered. This company also has some custom database query programs to retrieve information.

I might be in a tad over my head at this point, but that is ok there isnt an immediate rush on integration.

I am looking for any other admins that might be able to offer any opions regarding this basic setup or that might have this setup and offer any suggestions concerning the actual construction of this type of platform.

View Replies !
Unable To Connect On Same Machine
I can connect using either command line or GUI tool when i have an active internet connection. However as soon as I unplug my machine i can no longer connect to mysql.

The Admin GUI tool throws up the error

MYSQL error Number 2003 cant connect to MYSQL Server on 'localhost' (10022)

whenever i try to connect without an active internet connection.The mysql server is on the same machine so no remote connection should be required.

View Replies !
Unable To Connect To Localhost
After installing mysql 4.0 (using the MSI), I tried to type in :

C:wwwmysqlin>mysql -u root -p

I get the error message:

Enter password:
ERROR 2003: Can't connect to MySQL server on 'localhost' (10061)

View Replies !
Unable To Connect To Database
im geting this error in really big text

iLogin Error:Unable to connect to database. Please check your iLogin MySQL server, username and password configuration options.

i was told it may have somthing to do with enable mysql in php.ini ???

View Replies !
Linux Server V/s Windows Server ( WebServer - LAMP V/s WAMP)
My client wants to use WAMP ( Windows + apache + MySQL + PHP ). But the
site performance is very slow on windows. I dont know the exact
reasons.

I have seen some benchmark details on internet. But still they are not
having concrete facts to support LAMP as a better alternative to WAMP.
Allmost all the search done on google melts down to IIS vs Apache, My
main concern is "Apache on LINUX" v/s "Apache on Windows" and similarly
for PHP/MySQL.

View Replies !
MySQLdb Python API: Unable To Connect
I am using MySQL 5.0 beta and Active Python 2.4. I have the correct
version of MySQLdb installed. The problem is that I can't connect to
MySQL through the Active Python interactive window. Code:

View Replies !
Installation :: Unable To Connect Using JDBC
I am a MySQL newbee and have run into problems straight. I installed MySQL 4.1 on Win XP with the help of Installer. Everything worked fine and I made a database and some tables also.
When I was trying to connect with the database through JDBC program, It shows exception that it can't connect to server.

I tried to reconfigure the instance. There is MySQL Database configuration wizard. I used this thing.

I set up a root password and enabled TCP/IP networking. In the final stage it showed a error message, (I am not recalling the entire message properly.)

could not allow root@localhost(Using password:Yes). It seems there is a personal firewall running in your computer. Disable it and press retry.

There is no firewall on my comp. When i start command line client it asks the password and when I enter it and press enter it exits without any message.

View Replies !
Unable To Connect To Database Manager
id 'root' and the password I set during the configuration process.
I have had php connectivity issues and when I run the php document below, I get the error, <p>Unable to connect to database manager.</p>Could not connect: Access denied for user 'root'@'localhost' (using password: YES)," displayed in the browser.
This is the php that I run:

<?PHP
//remember to change the password to whatever you set
//it to in mysql instance configuration

//first parameter is server name, 2nd username 'root', 3rd is password
$rst = @mysql_connect("localhost","root","root");

if (!$rst){
echo( "<p>Unable to connect to database manager.</p>");
die('Could not connect: ' . mysql_error());
exit();
} else {
echo("<p>Successfully Connected to MySQL Database Manager!</p>");
}...

View Replies !
Connect Mysql5 Using C++ In Redhat-linux
how to connect MySQL using C++ in redhat ....

can any one tell a sample of code to creat ,connect and execute the
statement in c++ code ...

View Replies !
Can't Connect To MySQL Server
I want to install it on Windows XP on the moment but want to switch to Linux later. I am a total rookie in Linux also, but want to learn.

I use 'Typical' installatioin and it installs allright. I open a commandprompt and start the file 'mysqld' . The commandprompt returns. The book says to check if the 'deamon' works with <mysql -u root> Doing that gives the message:

Error 2003: Can't connect to MySQL server on 'localhost' (10061)

I also tried from http://www.mysql.org/downloads the file mysql-4.0.17-win.zip . This also installs fine, but starting <mysqld> does not return with the commandprompt. The book told my to first install MySQL and check it, after that Apache and PHP.

View Replies !
Cannot Connect To Mysql Server
I am running mysql server with "tcp/ip" port disabled and I cannot connect to it from the same machine from java code.

I can connect to it from cmd line (see screenshot). But when I try "jdbc:mysql://./mysql" in java I get unknown host error.

Caused by: java.net.UnknownHostException: . at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$1.lookupAllHostAddr(Unknown Source) at java.net.InetAddress.getAddressFromNameService(Unknown Source) at java.net.InetAddress.getAllByName0(Unknown Source) at java.net.InetAddress.getAllByName(Unknown Source) at java.net.InetAddress.getAllByName(Unknown Source) at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:243) at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:284) ... 13 more

View Replies !
Connect To The Mysql Server
I have intalled MySQL on one of my computer and try to access it using another machine inside the same LAN. Some info about the setup:

* The MySQL server's IP is 192.168.0.3 while the client machine is 192.168.0.6
* Both machine running WinXP Pro
* On the client machine, I am using PHPED's embedded MySQL support to try to access the database on the server.But it keeping telling me that I can not connect the server, and I have tried the following which didn't work:

* Add host address 192.168.0.6 to the privilage list
* Turn the windows SP2 firewall off on both machines

View Replies !
Connect To A MySQL Server
I have a MySql server in the web. i also have the access data (user name , password, etc.)

I tried to cennect to this server via MySQL Control Center but this doesn't work.

I just want to run a SQL script that creates a new database structure. With a local MySql installation I just type something like:
mysql < insert_script.sql
in the command promt.
How do I do this with a MySql Server in the web?

View Replies !
Connect To My MySQL Server
I just can't connect to the MySQL server installed in my pC from remote hosts.
I can over my LAN. I have create a user with '%' for the host.
also, I have added a host with '%'
What I'm doing is to connect from a webhost that support PHP but doesn't include MySQL databases. so, from the host i'm running a PHP script for connection.
the result is this:

Warning: mysql_pconnect(): Access denied for user: 'roberto@10.8.8.4' (Using password: YES)

What can I do to allow any server ?
I have a router, but the port 3306 is forwarded to the MySQL PC, so that not a problem.

View Replies !
Can't Connect To MySql Server Outside The LAN
MySql 5.0.22 - running on windows server 2003

.Net connector 2.0

I've opened the port and specified the correct host address in my connection string.
I can connect with Query Browser, but not with the .NEt connector in my code (same code works PERFECT when connecting within the LAN)

Exception text: "A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied"

View Replies !
How To Connect To MySQL Server In LAN?
I installed MySQL server v5.0.51b on a Windows 2000 machine and i would like to execute queries from another computer in the same LAN.

how to connect to the server from client in same LAN? Let say the Windows 2000 machine, where MySQL Server's installed, has a static IP of 192.168.1.138.

View Replies !
How To Connect MS SQL Server From MySQL
Is there any way I can connect to MS SQL from MySQL directly so that I can push the extracted data directly from MySQL to MS SQL?

View Replies !
Connect MySQL Server
I run Mysql 4.0.18 on window xp. After I trid the command 'mysqladmin shutdown' , I cannot connect the server again. I restarted the computer, and tried the command 'mysqladmin ping'. The followings showed on the screen:

mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to MySQL server on 'localhost' <10061>'
check that mysqld is running on localhost and that the port is 3306.
You can check this by doing 'telnet localhost 3306'


Then I trid the command 'telnet localhost 3306', and get the followings:

Connecting To localhost...Could not open connection to the host, on port 3306: connect failed


I checked the processes in memory. 'mysqld-nt.exe' was on the list. My firewall is Norton 2005. How can I solve the problem?

View Replies !
Connect To This MySQL Server
I tried to connect to the MySQL Server on 192.168.115.12 on local network, then I got the message that i am not allowed to connect to that MySQL Server, but when I try to connect to localhost, it works. What do I have to do that I can connect to 192.168.115.12(It IS my own PC with the MySQL Server installed and runing)?

View Replies !
How To Connect To Mysql On Another Server?
i trying to connect to mysql that resides on another server in the same LAN. so i trying to connect from server A to server B. On server B i was told i would need to grant full priviliges to server A in order to connect, but still no joy.

here is my grant on server B

PHP Code:

GRANT ALL PRIVILEGES ON mysql.* to username@IP_address IDENTIFIED BY 'some_password' WITH  GRANT OPTION;

View Replies !
I Cannot Connect To The Database Because: Host Server.name.net Is Not Allowed To Connect
I need to access a database on one server from another I get this error message:

I cannot connect to the database because: Host server.name.net is not allowed to connect to this MySQL server

I am guessing there is an allowed file somewhere that I need to add my server to. can anybody tell me where and what this file might be? if it is not a file, how do I accomplish this?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved