Results 1 to 4 of 4
I am using MYSQL 4.1 on my CentOS 4.2
my server is working very fine
but i am not able to connect to my mysql
database server from remote Computer
...
- 11-19-2005 #1Just Joined!
- Join Date
- Jul 2005
- Location
- INDIA
- Posts
- 41
MYSQL
I am using MYSQL 4.1 on my CentOS 4.2
my server is working very fine
but i am not able to connect to my mysql
database server from remote Computer
the following error:-
Host is not allowed to Connect to This MYSQL server
error number 1103
Plz Help me this is urgent
- 11-19-2005 #2Just Joined!
- Join Date
- Nov 2005
- Location
- California
- Posts
- 36
You need to enable network access, in your my.cnf file comment out
and ensure you have a line readingCode:skip networking
Code:port = 3306 (or whatever port number you are going to use)
- 11-19-2005 #3Just Joined!
- Join Date
- Jul 2005
- Location
- INDIA
- Posts
- 41
MYSQL
This is my.cnf file
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
[mysql.server]
user=mysql
basedir=/var/lib
[mysqld_safe]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
- 11-20-2005 #4
You will need to enable access from that host (and/or user). Check out the mysql docs on authentication.
http://dev.mysql.com/doc/refman/5.0/...ge-system.html"Time is an illusion. Lunchtime, doubly so."
~Douglas Adams, The Hitchhiker's Guide to the Galaxy


Reply With Quote