Quote:
Originally posted by D.Ramesh
Hi!
In the .err file i am able to see the port (3306) in which mysql is listening. How to connect from my machine to the server.....?
Many Thanks!
Ramesh
|
Well, you don't say which program you are connecting
to MySQL, so I'll assume it's mysql, which is similar to
isql and osql.
It's very simple. At the DOS command line you start
mysql up with:
mysql -u <username> -p --host=<host_IP_address> <database name>
Your working directory should probably be mysql/bin when
you try this for the first time. (Ignore the greater-than and
less-than signs in the command line above--they are there
to indicate that you need to insert your own username,
host name, and database name in place of those variables.