Jump to content
  • 0

[Help]MySql Connection limited


Question

Posted

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

  • 0
Posted

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
Posted

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
Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock