sudo systemctl start mysqld //运行MySQL sudo systemctl status mysqld //查看运行状态 grep "password" /var/log/mysqld.log //找出密码 低版本可以不需要密码 mysql -u root-p 进入数据库 //修改密码 部分内容自行修改 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'New_Password'; //如果要修改简单密码,可以用下面的 低版本应该可以不用 再高版本命令部分可能不同 查看版本 select version(); mysql> set global validate_password_policy=LOW; mysql> set global validate_password_length=检查至少密码位数; //至于编码,看需要
CentOS Linux release 7.5.1804 (Core) mysql Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using EditLine wrapper 2、以root用户登录Mysql
mysql -uroot -proot 3、切换到mysql数据库
use mysql 4、添加用户
//只允许指定ip连接 create user '新用户名'@'localhost' identified by '密码'; //允许所有ip连接(用通配符%表示) create user '新用户名'@'%' identified by '密码'; 5、为新用户授权
//基本格式如下 grant all privileges on 数据库名.表名 to '新用户名'@'指定ip' identified by '新用户密码' ; //示例 //允许访问所有数据库下的所有表 grant all privileges on *.* to '新用户名'@'指定ip' identified by '新用户密码' ; //指定数据库下的指定表 grant all privileges on test.test to '新用户名'@'指定ip' identified by '新用户密码' ; 6、设置用户操作权限
//设置用户拥有所有权限也就是管理员 grant all privileges on *.* to '新用户名'@'指定ip' identified by '新用户密码' WITH GRANT OPTION; //拥有查询权限 grant select on *.* to '新用户名'@'指定ip' identified by '新用户密码' WITH GRANT OPTION; //其它操作权限说明,select查询 insert插入 delete删除 update修改 //设置用户拥有查询插入的权限 grant select,insert on *.* to '新用户名'@'指定ip' identified by '新用户密码' WITH GRANT OPTION; //取消用户查询的查询权限 REVOKE select ON what FROM '新用户名'; 7、删除用户