Mysql
 sql >> Database >  >> RDS >> Mysql

Dove archivia i dati mysql?

Da qui :

Finestre

  1. Individuare my.ini, che memorizza nella cartella di installazione di MySQL.

Ad esempio, C:\Program Files\MySQL\MySQL Server 5.1\my.ini

  1. Apri "my.ini" con il nostro editor di testo preferito.
#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/"

Trova il “datadir” , questo è il luogo in cui MySQL ha archiviato i dati in Windows.

Linux

  1. Individua my.cnf con il comando find / -name my.cnf.
[email protected]:~$ find / -name my.cnf
find: /home/lost+found: Permission denied
find: /lost+found: Permission denied
/etc/mysql/my.cnf
  1. Visualizza il my.cnf file come questo:cat /etc/mysql/my.cnf
[email protected]:~$ 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
  1. Trova il “datadir” , è qui che MySQL ha archiviato i dati nel sistema Linux.