ここでは、WindowsとLinuxの両方で、MySQLデータベースがハードディスクのどこにデータを格納しているかを調べる簡単なユーザーガイドを提供します。

Windows

1)MySQLインストールフォルダに格納されている

my.ini

を探します。

例えば、

C:\Program Files\MySQL\MySQL Server 5.1\my.ini

2)好意的なテキストエディタで “my.ini”を開きます。

#Path to installation directory. All paths are usually resolved relative to this.
basedir="C:/Program Files/MySQL/MySQL Server 5.1/"

#Path to the database root
datadir="C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/"

“datadir”を探します。これはMySQLがWindowsにデータを格納する場所です。

Linux

{空} 1)

find/-name my.cnf

コマンドで

my.cnf

を探します。

yongmo@myserver:~$ find/-name my.cnf
find:/home/lost+found: Permission denied
find:/lost+found: Permission denied/etc/mysql/my.cnf

2)my.cnfファイルを表示する

cat/etc/mysql/my.cnf

yongmo@myserver:~$ cat/etc/mysql/my.cnf
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
# [mysqld]#
# **  Basic Settings
#
user   = mysql
pid-file =/var/run/mysqld/mysqld.pid
socket  =/var/run/mysqld/mysqld.sock
port   = 3306
basedir  =/usr
datadir  =/var/lib/mysql
tmpdir  =/tmp
language =/usr/share/mysql/english
skip-external-locking

3) “datadir”を探します。これはMySQLがLinuxシステムにデータを格納する場所です。