Close the mysql port (3306) from external access.


/ Published in: Other
Save to your folder(s)

The command you need to close the mysql port 3306 from external access. You need to use the 2 lines in the snippet below once you have connected to the server via SSH.


Copy this code and paste it in your HTML
  1. iptables -I INPUT -p tcp --dport 3306 -j DROP
  2. /etc/init.d/iptables save
  3.  
  4. /*
  5. After you've run the above command, you can undo it by editing /etc/sysconfig/iptables and running /etc/init.d/iptables restart
  6. */

URL: http://daipratt.co.uk

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.