यहां से :
विंडोज
- my.ini का पता लगाएँ, जो MySQL स्थापना फ़ोल्डर में संग्रहीत है।
उदाहरण के लिए, C:\Program Files\MySQL\MySQL Server 5.1\my.ini
- हमारे पसंदीदा टेक्स्ट एडिटर के साथ "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 ने विंडोज़ में डेटा संग्रहीत किया है।
लिनक्स
- ढूंढें / -नाम my.cnf कमांड के साथ my.cnf का पता लगाएँ।
[email protected]:~$ find / -name my.cnf
find: /home/lost+found: Permission denied
find: /lost+found: Permission denied
/etc/mysql/my.cnf
- देखें
my.cnf
इस तरह की फाइल करें: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
- ढूंढें
“datadir”
, यहीं पर MySQL Linux सिस्टम में डेटा संग्रहीत करता है।