windows - MySQL remote access allowance -
Hi has installed MySQL on my Windows Server 2012.
Everything is fine and I have a database on the local server but I was wondering how can I allow remote connections like my home computer
Any solution?
Regards
A MySQL user When creating an account, specify the IP address that is allowed in the host:
field of the account.
Example:
instead of creating user @ localhost
(local connection only allowed) or user @%
(any Also have connection permission), use user@ip.address
(only ip.address connection is allowed).
Comments
Post a Comment