Bobi Posted January 10, 2012 Posted January 10, 2012 any know how to limited connection to sql server ? i mean only from my pc to can be connect to DB if any other try to connect to my DB to be not allowed
0 Zoey76 Posted January 10, 2012 Posted January 10, 2012 Try creating a user binded to specific IP: CREATE USER 'Bobi'@'YOUR_FIXED_IP' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON *.* TO 'Bobi'@'YOUR_FIXED_IP' WITH GRANT OPTION;
0 Bobi Posted January 11, 2012 Author Posted January 11, 2012 Try creating a user binded to specific IP: CREATE USER 'Bobi'@'YOUR_FIXED_IP' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON *.* TO 'Bobi'@'YOUR_FIXED_IP' WITH GRANT OPTION; can u give me more info how to do that because i never have work with mysql
0 josecarlosfl18 Posted January 11, 2012 Posted January 11, 2012 use mysql console, and copy/paste that code... Or into Query in Navicat replace your: bobi for your username and some_pass for your password and Your_fixed_ip for your ip (xxx.xxx.xxx.xxx)...
0 Zoey76 Posted January 11, 2012 Posted January 11, 2012 can u give me more info how to do that because i never have work with mysql
0 Trance Posted January 11, 2012 Posted January 11, 2012 Try creating a user binded to specific IP: CREATE USER 'Bobi'@'YOUR_FIXED_IP' IDENTIFIED BY 'some_pass'; GRANT ALL PRIVILEGES ON *.* TO 'Bobi'@'YOUR_FIXED_IP' WITH GRANT OPTION; Also firewall exception for his IP.
Question
Bobi
any know how to limited connection to sql server ?
i mean only from my pc to can be connect to DB if any other try to connect to my DB to be not allowed
6 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now