xxsl

一、创建数据库

mysql> create database jira;
Query OK, 0 rows affected (0.09 sec)

二、创建用户

mysql> create user \'jira\'@\'%\' identified by \'jira123\';
Query OK, 0 rows affected (0.09 sec)

三、授权用户

mysql> grant all privileges on jira.* to \'jira\'@\'%\' with grant option;
Query OK, 0 rows affected (0.10 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)

分类:

技术点:

相关文章: