Re: Restrict access to the database to allowed IPs only.
Posted by:
Ryan Lowe
Date: August 06, 2007 08:13AM
That is implied in the GRANT statement:
GRANT SELECT ON databasename.* TO 'username'@'hostname' ... ;
(where hostname can be a literal FQDN or an IP address or something with a wildcard).
Be sure to remove any users from mysql.user where hostname is not specified (or is a %) if you wish to lock down the database.
Subject
Views
Written By
Posted
18509
August 06, 2007 05:54AM
Re: Restrict access to the database to allowed IPs only.
28240
August 06, 2007 08:13AM
9637
December 11, 2007 05:52AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.