Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WAMP server. Very large data directory in MySQL?

I have problem with wammp server. In directory "..\WampServer\bin\mysql\mysql5.5.8\data" was created files with very large size. Full size of this directory is 50GB. What is these files? How can I fix this problem?

The names of files are:

mysql-bin.000001
mysql-bin.000002
................
mysql-bin.000227

The size of all files is 49GB

Thanks in advance!

like image 974
dido Avatar asked May 04 '12 06:05

dido


People also ask

Which database is used in WampServer?

WampServer refers to a solution stack for the Microsoft Windows operating system, created by Romain Bourdon and consisting of the Apache web server, OpenSSL for SSL support, MySQL database and PHP programming language.

Is WAMP a MySQL server?

WampServer is a Web development platform on Windows that allows you to create dynamic Web applications with Apache2, PHP, MySQL and MariaDB. WampServer automatically installs everything you need to intuitively develope Web applications. You will be able to tune your server without even touching its setting files.

Where is MySQL database stored WAMP?

So in yours they would be in E:\wamp\bin\mysql\mysql-version\data . You can start mysql locally from E:\wamp\bin\mysql\mysql-version\bin , where all the executables are.


1 Answers

By default whenever you make a change to a MySQL database it creates a log of the query and stores it in a file simlare to mysql-bin.000001. The MySQL database does this so that you can recover or replicate a database. Most applications this is a good things to have enabled just like doing regular backups.

If you want to disable MySQL from creating these binary logs:

  1. Open my.ini
  2. Search for this line log-bin=mysql-bin
  3. Comment this line out by adding a hash mark: # log-bin=mysql-bin
  4. Save and restart the MySQL database

You can now safely delete these files from that directory.

like image 70
swati Avatar answered Oct 22 '22 10:10

swati