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 Quote
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; Quote
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 Quote
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)... Quote
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 Quote
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. Quote
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.