block ip from ssh
/etc/hosts.deny ALL: 23.234.61.51 (substitute all for whatever daemon name)
/etc/hosts.deny ALL: 23.234.61.51 (substitute all for whatever daemon name)
When you try to login to mysql with a newly created user, you may get: ERROR 1044 (42000): Access denied for user Try to ensure the user’s been granted sufficient privileges for the database. For example, create databases db; create user ‘blah’@’localhost’ with password ‘password’; grant all privileges on db.* to ‘blah’@’%’; <—–IMPORTANT. […]