Securing the MySQL Server
An easy way to secure the MySQL (or MariaDB) server is to run the secure setup script in the command-line.
==========
user@host: $ sudo mysql_secure_installation
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
/* The anonymous user, intended only for testing, allows anyone to log into the database. */
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
/* Allowing remote root login enables guessing of password from the network. */
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
/* The test database, also intended for testing, can be accessed by anyone. */
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
/* Reloading privileges implements the changes immediately. */
==========
Comments
Post a Comment