You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
396 B

8 months ago
# grant all privileges on dbname.tablename to 'userName'@'%';
# 比如想给用户nacos赋予数据库test所有的表的权限并且不限制nacos用户的连接地址代码如下
CREATE USER 'omind'@'%' IDENTIFIED BY 'omind';
grant all privileges on *.* to 'omind'@'%';
# 刷新权限
flush privileges;
use mysql;
alter user 'omind'@'%' IDENTIFIED WITH mysql_native_password BY 'omind2023';