Secure MySQL on RHEL 9
Step 1 – Run mysql_secure_installation
mysql_secure_installation
Set root password, remove anonymous users, disallow remote root login, remove test DB.
Step 2 – Bind to localhost
[mysqld]
bind-address = 127.0.0.1
Step 3 – Audit users
SELECT User, Host, plugin FRO...