mysql数据库,查看数据存放目录datadir

Posted QA-3K

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql数据库,查看数据存放目录datadir相关的知识,希望对你有一定的参考价值。

需求描述

  在使用数据库,或者刚接手一个数据库时,可以查看该数据库的数据文件存放在什么位置。

操作过程

1.通过查看datadir系统变量来查看数据目录

[[email protected] mysql-bin]$ mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.5.57-log MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type help; or \h for help. Type \c to clear the current input statement.

mysql> show variables like datadir;
+---------------+--------------+
| Variable_name | Value        |
+---------------+--------------+
| datadir       | /mysql/data/ |
+---------------+--------------+
1 row in set (0.09 sec)

备注:上面的例子中,数据目录就在/mysql/data/目录下。

 

文档创建时间:2018年4月3日19:32:49

以上是关于mysql数据库,查看数据存放目录datadir的主要内容,如果未能解决你的问题,请参考以下文章

mysql修改数据存放路径(linux)

Windows 下使用mysql installer安装的MySQL数据文件存放位置datadir的修改

MySQL8 查看数据存放的路径地址

查看及更改MySQL数据库物理文件存放的位置

mysql数据库存储路径怎么更改?

如何查看和更改mysql数据库文件存放位置