mysql 初始化

Posted 阳台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 初始化相关的知识,希望对你有一定的参考价值。

一、centos7下mysql 安装配置

  yum -y install mariadb*  

  systemctl start mariadb.service  

  systemctl enable mariadb.service

二、初始化

 1  [[email protected]]#mysql
 2 Welcome to the MariaDB monitor.  Commands end with ; or \g.
 3 Your MariaDB connection id is 3
 4 Server version: 5.5.50-MariaDB MariaDB Server
 5 
 6 Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
 7 
 8 Type help; or \h for help. Type \c to clear the current input statement.
 9 
10 MariaDB [(none)]> use mysql
11 Reading table information for completion of table and column names
12 You can turn off this feature to get a quicker startup with -A
13 
14 Database changed
15 MariaDB [mysql]> show databases;
16 MariaDB [mysql]> show databases;
17 +--------------------+
18 | Database           |
19 +--------------------+
20 | information_schema |
21 | mysql              |
22 | performance_schema |
23 | test               |
24 +--------------------+
25 4 rows in set (0.00 sec)
26 
27 MariaDB [mysql]> use mysql
28 Database changed
29 MariaDB [mysql]> update user set password=PASSWORD(cXP123456) where user=root;   #设置密码
30 Query OK, 4 rows affected (0.00 sec)
31 Rows matched: 4  Changed: 4  Warnings: 0
32 
33 MariaDB [mysql]> flush privileges
34     -> ;
35 Query OK, 0 rows affected (0.01 sec)
36 
37 MariaDB [mysql]> GRANT ALL PRIVILEGES ON *.* TO root@% IDENTIFIED BY cXP123456;   #设置远程登录
38 Query OK, 0 rows affected (0.00 sec)
39 
40 MariaDB [mysql]> flush privileges;
41 Query OK, 0 rows affected (0.00 sec)
42 
43 MariaDB [mysql]> exit
44 Bye

 

以上是关于mysql 初始化的主要内容,如果未能解决你的问题,请参考以下文章

Jekyll 偏移代码片段高亮的初始行

部分代码片段

linux中怎么查看mysql数据库版本

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

从mysql的片段中加载ListView

如何在使用cardview的片段中初始化gridlayoutmanager?