msyq简单的系统加固,删除没用的帐号密码,修改默认的超级用户root为system,超级用户只允许本地登录,删除系统自带的test库。
1.查询系统存在的帐号和密码
mysql> select user,host from mysql.user;
2.删除多于的帐号,只允许root帐号本地登陆
mysql> delete from mysql.user where (user,host) not in (select 'root','localhost');
3.修改默认root帐号名root为system(先清除多余的帐号)
update mysql.user set user='system',password=password('guan');
刷新生效
flush privileges;
4.删除没有用的test库,刷新生效
mysql> truncate table mysql.db;
通过上述的操作,删除了无用的账户,删除系统自带的test库。