Re: Network access?

2002-07-24 Thread Egor Egorov
Steve, Monday, July 22, 2002, 3:39:52 AM, you wrote: SD I am a MySQL newbie and can not seem to find the documentation that SD explains how to allow network or remote access to a running MySQL SD server. It does not seem to be in the my.cnf file or in the manual??? SD I am sure this is a

RE: Network access?

2002-07-24 Thread Matthew Scarrow
Network access or remote access is handled by the OS such as Linux. All you need to do is make sure you have a user setup that is allowed to access the database from those locations. Example: shell mysql --user=root mysql mysql GRANT ALL PRIVILEGES ON *.* TO monty@localhost - IDENTIFIED

Re: Network access?

2002-07-22 Thread Veysel Harun Sahin
look at the grant syntax in the manual. Steve Dickey wrote: I am a MySQL newbie and can not seem to find the documentation that explains how to allow network or remote access to a running MySQL server. It does not seem to be in the my.cnf file or in the manual??? I am sure this is a

Re: Network access?

2002-07-22 Thread Francisco Reinaldo
Hi, If you mean how to connect to a MySQL server from a remote machine in a local network, you only need to include the computer (or ip address) of the server in the HOSTNAME. You also have to make sure that the user in the connection string, has permission to access the database, you should go