8.MySQL数据库基本优化(安全)
账户设置密码,添加额外管理员,重新加载mysql授权表
mysql select user,host from mysql.user; # 查看有哪些用户 grant all privileges on *.* to catgod@'localhost' identified by 'HuaWei@123' with grant option; # 授予catgod用户对于数据库和表的全部权限,及密码. set password for 'mysql.session'@'localhost' = password('HuaWei@123'); # 修改mysql.session用户的密码 set password for 'mysql.sys'@'localhost' = password('HuaWei@123'); # 修改mysql.sys用户的密码 set password for 'root'@'localhost' = password('HuaWei@123'); # 修改root用户的密码 flush privileges; # 刷新权限表
9.关闭MySQL(等待mysql运行完后关闭,建议采用1)
1.使用MySQL自带的脚本关闭MySQL
/etc/init.d/mysql stop
2.使用mysqladmin的方法关闭MySQL
mysqladmin -ucatgod -p'HuaWei@123' shutdown
10.授权远程用户连接MySQL
mysql -uroot -p'HuaWei@123' grant all privileges on *.* to catgod@'192.168.205.%' identified by 'HuaWei@123' with grant option; # 授权catgod用户能够使用192.168.205网段(可以修改成自己的网段)对MySQL所以库和表具有privileges权限. flush privileges; # 刷新权限表 select user,host from mysql.user; # 查看有哪些用户
11.测试远程登陆
mysql -h192.168.205.140 -ucatgod -p'HuaWei@123' -p3306
感谢大家,点赞,收藏,关注,评论!