Fixed selinux issue for Rocky 9 and Mysql restart for Ubuntu install

This commit is contained in:
iadgovuser26
2024-03-13 13:49:42 -04:00
parent ae1167b3f5
commit 2b7fee432a
16 changed files with 283 additions and 244 deletions

View File

@ -0,0 +1,5 @@
DELETE FROM mysql.user WHERE User='';
DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');
DROP DATABASE IF EXISTS test;
DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%';
FLUSH PRIVILEGES