Cách chữa không khởi động được mysql tốt nhất từng làm 3306 (ok)
https://stackoverflow.com/questions/18022809/xampp-mysql-shutdown-unexpectedly
Last updated
Was this helpful?
https://stackoverflow.com/questions/18022809/xampp-mysql-shutdown-unexpectedly
Last updated
Was this helpful?
Cach moi:
Copy 3 thu muc trong bakup
Copy 3 thu muc trong C:\xampp\mysql\backup
Buoc 1: mysql, performance_schema, phpmyadmin
Buoc 2: copy du lieu web cu loi vao day
Đọc thêm
When I open XAMPP and click start MySQL button and it gives me an error. I had started it just before, but now it isn't working.
12:19:12 PM [mysql] Attempting to start MySQL app... 12:19:12 PM [mysql] Status change detected: running 12:19:13 PM [mysql] Status change detected: stopped 12:19:13 PM [mysql] Error: MySQL shutdown unexpectedly. 12:19:13 PM [mysql] This may be due to a blocked port, missing dependencies, 12:19:13 PM [mysql] improper privileges, a crash, or a shutdown by another method 12:19:13 PM [mysql] Press the Logs button to view error logs and check 12:19:13 PM [mysql] the Windows Event Viewer for more clues 12:19:13 PM [mysql] If you need more help, copy and post this 12:19:13 PM [mysql] entire log window on the forums
Here is the contents of the error log:
2013-08-02 12:19:12 4536 [Note] Plugin 'FEDERATED' is disabled. 2013-08-02 12:19:12 f64 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator. 2013-08-02 12:19:12 4536 [Note] InnoDB: The InnoDB memory heap is disabled 2013-08-02 12:19:12 4536 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions 2013-08-02 12:19:12 4536 [Note] InnoDB: Compressed tables use zlib 1.2.3 2013-08-02 12:19:12 4536 [Note] InnoDB: Not using CPU crc32 instructions 2013-08-02 12:19:12 4536 [Note] InnoDB: Initializing buffer pool, size = 16.0M 2013-08-02 12:19:12 4536 [Note] InnoDB: Completed initialization of buffer pool 2013-08-02 12:19:12 4536 [Note] InnoDB: Highest supported file format is Barracuda. 2013-08-02 12:19:12 4536 [Note] InnoDB: The log sequence numbers 0 and 0 in ibdata files do not match the log sequence number 1616798 in the ib_logfiles! 2013-08-02 12:19:12 4536 [Note] InnoDB: Database was not shutdown normally! 2013-08-02 12:19:12 4536 [Note] InnoDB: Starting crash recovery. 2013-08-02 12:19:12 4536 [Note] InnoDB: Reading tablespace information from the .ibd files...
The most important error message is here:
2013-08-02 12:19:12 4536 [ERROR] InnoDB: Attempted to open a previously opened tablespace. Previous tablespace mysql/innodb_table_stats uses space ID: 1 at filepath: .\mysql\innodb_table_stats.ibd. Cannot open tablespace xat/payments which uses space ID: 1 at filepath: .\xat\payments.ibd
The rest of the log:
InnoDB: Error: could not open single-table tablespace file .\xat\payments.ibd InnoDB: We do not continue the crash recovery, because the table may become InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it. InnoDB: To fix the problem and start mysqld: InnoDB: 1) If there is a permission problem in the file and mysqld cannot InnoDB: open the file, you should modify the permissions. InnoDB: 2) If the table is not needed, or you can restore it from a backup, InnoDB: then you can remove the .ibd file, and InnoDB will do a normal InnoDB: crash recovery and ignore that table. InnoDB: 3) If the file system or the disk is broken, and you cannot remove InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf InnoDB: and force InnoDB to continue crash recovery here.
STOP! Please do NOT delete
ibdata1
file!
Deleting this file is like playing a Russian roulette with your databases, it could work and restablish everything, but also, probably could leave unusable every database you have.
Instead, first try using the MySQL backup folder which is included with XAMPP. So do the next:
Rename the folder mysql/data
to mysql/data_old
(you can use any name)
Create a new folder mysql/data
Copy the content that resides in mysql/backup
to the new mysql/data
folder
Copy all your database folders that are in mysql/data_old
to mysql/data
(skipping the mysql
, performance_schema
, and phpmyadmin
folders from data_old
)
Finally copy the ibdata1
file from mysql/data_old
and replace it inside mysql/data
folder
Start MySQL from XAMPP control panel
IMPORTANT Deleting this file may render any existing MySQL data unusable. Use with caution
Hey I just did this and it worked:
exit Xampp server
go to your C:\xampp\mysql\data
directory
delete the ibdata1
file
restart xampp server
Go to mysql/data/
Delete all random files (except the actual database folders)
Restart Apache and MySQL.
If the answers mentioned above are not working, you can try deleting all the files in data, except for the folder
Goto: C:\xampp\mysql\data
After that: Goto: C:\xampp\mysql\bin
then open with notepad my.ini , Its look like this.
When you're not running XAMPP as an administrator, shutting down MySQL frequently causes corruption which means you have to repair or delete your tables. To avoid this you need to either run XAMPP as an administrator, or use the proper command prompt method for shutting down MySQL.
You can delete ibdata1
as Kratos suggests, but this can leave you with a broken database as other pieces of your database are still in the /mysql/data/
folder. In my case, this residual data stopped me successfully installing WordPress.
A cleaner way of undoing the damage is to revert your whole /mysql/data/
folder. Windows has built-in folder versioning — right click on /mysql/data/
and select Restore previous versions
. You can then delete the current contents of the folder and replace it with the older version's contents.
My Xampp MySQL worked just follows as below:
Add the following line below the [mysqld]
section in the mysql config file (my.ini) and restart the apache web server and the mysql service afterwards.
I got the same kind of error in my C:\xampp\mysql\data\mysql_error.log
when trying to start mysql.
You'll have to read the error closely. This says that test_database
is preventing mysql from starting.
You could blow away the offending database, these steps fix the problem:
Make sure mysql and xampp is shut down completely.
Go to your directory where mysql is installed, mine is: C:\xampp\mysql\data
You should see a folder with the name of a database that you created. mine was test_database
.
Create a new folder somewhere else called C:\xampp\mysql\data\mysql\backuptablespace
Drag and drop (don't delete) the offending database table folder to the backup directory.
Try to start mysql again. For me it started right up in 1 second as expected.
If it doesn't work, put the file back where you started and you'll be back where you started.
If you don't want to delete the database and don't have backups:
If you don't have backups of table data and mysql won't start because something is corrupted you'll have to use the process of elimination to guess-and-check your way to exactly what you did that corrupted it. Follow these steps:
Make a clone of the entire C:\xampp\
and store it somewhere safe so you can get back to where you started.
Use a "binary search" approach to try to locate the corrupted item in the mysql database. It could be a file, or a table, or a database, or a user or anything.
Delete the entire database and see if that allows mysql to start. If it does, then put back the database and try removing some of the tables. If it doesn't, then try yanking out something else until it does start.
Try removing these files from C:\xampp\mysql\data\mysql
: db.frm db.MRD db.MYI db.opt user.frm user.MYD user.MYI
When you get mysql to start, try putting things back until you find the one thing that you add which prevents it from starting. One bonus for this is you learn how mysql works under the hood.
Nuclear option:
I also faced this issue and this is how I solved. 1. Make sure xampp is not under sub-directory. For example, it should be C:\xampp 2. You might need to run as administrator in running the application.
in my case i did following steps and it worked:
In Xampp control panel click on "Services" button from the right side toolbar
Then find "MySQL" from the services List
Click on it and from the left side of the panel click on "stop"
Turn back in Xampp control panel and click on start.
move xampp/mysql/backup
files into xampp/mysql/data
Never delete this file (ibdata1
) because all your data will be deleted!!!
I suggest three ways :
A:
1- Exit from XAMPP control panel
.
1- Rename the folder mysql/data
to mysql/data_old
(you can use any name)
2- Create a new folder mysql/data
3- Copy the content that resides in mysql/backup
to the new mysql/data
folder
4- Copy all your database folders that are in mysql/data_old
to mysql/data
(skipping the mysql, performance_schema, and phpmyadmin folders from data_old)
5- Finally copy the ibdata1
file from mysql/data_old
and replace it inside mysql/data folder
6- Reastart your system.
No solution above worked for me. then I did below:
i was facing the same issue and none of the solutions stated above helped me. i went to the mysql configuration file (my.ini) and changed the port number under [mysqld].By default mysql runs on 3306 port.
i changed it to ,
Solution:
Go to the “data” directory in the mysql database.
I installed XAMPP on D: drive on my computer & the mysql “data” directory location of my computer was “D:\xampp\mysql\data\”. You may have different location.
Take Backup of MySQL “data” Folder
First of all you should create a backup of the “data” folder using any compression software.
Give a name like “data_backup.zip” or any type of compression you wish.
I used winrar compression software to compress & backup mysql “data” folder.
Rename the “data” folder
Rename the “data” folder to “data-oldfiles”. This is very important to rename the data directory to any new directory name.
Create a new “data” folder
Create a new folder and give the folder name as “data“
To solve the problem we need to create a new “data” directory in the mysql database.
Copy content from “backup” folder
Go to the “backup” folder and copy all files.
Paste the files from backup folder to data folder
Now start the MySQL database from XAMPP.
Your MySQL database will start properly without showing any error.
Transfer all MySQL projects Database, Data file & Log files
If you have many database which was used for various projects, then you have to transfer all database from “data-oldfiles” folder to “data” folder.
Copy all databases from the data-old files and paste to the data folder.
Now you have to copy the data file “ibdata1” & all log files “ib_logfile0, ib_logfile1 ” from data-old files folder to the data folder.
If you have many id_logiles then copied all of them.
Now Start MySQL from XAMPP.
Go to phpMyAdmin to check all databases are available & working.
Now start your any website project from localhost to check the MySQL database.
The Problem is solved !!
Now you will see the problem is solved and the error message “Error: MySQL shutdown unexpectedly.” will not show again.
If you have any question on this issue please feel free to ask any question in the comments section.
You can also watch video tutorials to solve the problem:
What worked for me is:
First I open Logs
for MySql
in XAMPP panel
.
At the end it says you are running another instance of mysqlid in port 3306
I opened my task manager(Ctrl+Shift+Esc)
then find mysqlid
and End the task
.
I had encountered the same issue, but all I had to do was close the XAMPP Control panel, go to the folder in which XAMPP is installed, find xampp-control.exe and run as administrator and then start the services.
if you are using MariaDB you can try this:
Go to mysql/data/
Rename aria_log_control to aria_log_control_old
Restart "Mysql"
i comment this statement in mysql/bin/my.ini
This means that you already have a MySQL database running at port 3306.
In the XAMPP control panel, press the 'Config' button and after that press 'my.ini'. After this, Ctrl-F and search for '3306'. Replace any '3306' that you find with a different port number of your choice (you could choose 3307 or 3308 - I chose 2811 and it worked).
Asked 7 years, 9 months agoActive Viewed 858k times183106
What is the cause of these errors and how can I rectify them?Followasked Aug 2 '13 at 17:271,84333 gold badges1010 silver badges1111 bronze badges
1582
And, voilà!Followanswered May 17 '20 at 22:206,22522 gold badges1111 silver badges1818 bronze badges
44This is the best answer, doesn't ask you to delete any files or folder and importantly, it works. –
29This is the best answer –
11I've resorted to this answer sooo many times that I even wrote a PowerShell script to automate the process: –
9this should be the top answer –
5Yes, this is best answer. my bad I have not tried it first. Excellent answer. You saved my db data and lots of hassles. Hats off to you man! –
180
It should workFollow♦28.6k2525 gold badges7575 silver badges9191 bronze badgesanswered Aug 10 '13 at 13:142,16911 gold badge99 silver badges22 bronze badges
32This works and should likely be marked as the correct answer. However rename the file to ibdata1.bak rather than delete it. Just to be save. –
23This will, of course, destroy all the data which was stored in that file (all the InnoDB tables which were created before setting innodb_file_per_table
to enabled). The methods suggested in the log message seem suprtior to me. –
17I also had to delete ib_logfile0
and ib_logfile1
to get it to work –
13Ouch! Blowing away ibdata1
is equivalent to losing all your data (or at least all that are ENGINE=Innodb
! –
19The most upvoted unexplained reckless thing you can do –
43
It should fix it.Followanswered Jan 21 '16 at 12:551,0071212 silver badges1111 bronze badges
11It deleted all my data. There was a lot of data. –
12I confirm that deleting files will make all DB unusable. Table files are there but they can't display. –
32
Then delete or put into comment the port 3306 and change it to 8111 then run xamp with administrator and its work well.Follow32011 gold badge22 silver badges1414 bronze badgesanswered Jan 28 '20 at 2:3671211 gold badge1111 silver badges2727 bronze badges
Love You @Matthew Magante. You have solved my problem which I was facing for last one year. Thanks a lot. –
1Now, I am not getting that error in xampp but still phpmyadmin is not workin g –
Thanks, @fabrizio valencia fix was doing well but after two or three times it was not working anymore and this solved as second fix. –
17
Addendum: To ensure that you don't forget to run XAMPP as an administrator you can right click the XAMPP shortcut, go to Properties
, then Advanced
, and finally tick Run as administrator
.Followanswered Nov 7 '13 at 15:3760755 silver badges1111 bronze badges
1This should be accepted as correct answer. If you remove ibdata1, there will be tons of orphaned tables. –
Thanks, you fixed my problem after trying a ton of different things. –
also fixed issue for me –
Nice explannation :D Thank you. –
The 'Restore previous versions' option only works if you regularly create Restore Points in Windows. :( –
15
Followanswered Dec 4 '16 at 9:452,08422 gold badges2424 silver badges3434 bronze badges
this is the most effective way for me !! –
14
Follow7,5042323 silver badges3434 bronze badgesanswered Dec 16 '13 at 17:4044433 silver badges1414 bronze badges
7Read about what you are doing, before you do it: –
Thank you so much, really helped me a lot. –
5it's better to start with value 1 and increment it each time it didn't work. Values 1-3 are considered save. 4-6 can corrupt data! –
This helped me. As pointed out, use values 1-3 first. 2 worked on me. I had to dump all my database, reset mysql data using the back up folder then import the dumps. This is helpful if you want to keep your data –
13
Something you did screwed up the mysql server. An uninstall and reinstall of XAMPP should undo the corruption.Followanswered Aug 8 '13 at 17:25123k8181 gold badges381381 silver badges321321 bronze badges7
Hope this will work!Followanswered Aug 13 '13 at 18:3113366 bronze badges6
Follow3,03977 gold badges2121 silver badges4141 bronze badgesanswered Dec 3 '19 at 8:5457155 silver badges1919 bronze badges
1Thank you, none of the other options worked for me, this one did. Very grateful –
@user3808307 I'm glad it helped you :) –
thank you so much! this was really simple to do and it worked :) –
6
RUN XAMPP
as Administrator
(make sure mysql is installed you can see a green tick if is installed)
Hope it helps!Followanswered May 16 '20 at 21:3649855 silver badges1414 bronze badges6
Step 1 : Close Xampp controller completely Step 2 : Open C:\xampp\mysql\backup Step 3 : Copy all the files from backup folder Step 4 : Open C:\xampp\mysql\data Step 5 : Paste the all the files in data folder Step 6 : Re-start the Xampp controllerFollow24.7k1818 gold badges7070 silver badges9797 bronze badgesanswered Dec 10 '20 at 14:418511 silver badge99 bronze badges
Thanks man worked like a charm for me. :) –
Best Solution You saved my time thanks –
5
B: 1- Stop all sql services. 2- Next, start all sql services again.
C: 1- Open XAMPP control panel 2- Click on Config button, in front of mysql, click on my.ini 3- change client port and server port. Followanswered Nov 28 '20 at 8:288711 silver badge99 bronze badges
Changing port worked for me and no other method worked –
4
Here is what I did. I restarted my computer. Next I run services.msc. I stopped the MySQL service then restarted it. The restarted the Xampp server.Followanswered Jan 11 '17 at 15:1818511 gold badge11 silver badge1313 bronze badges
This is not a valid answer! –
Not valid answer –
4
I deleted all the files inside C:\xampp\mysql\data\ directory except folders in this directory. It worked perfectly fine but my previous databases are not working now. So do above if you don't care it will delete all your previous databases in phpmyadmin.Followanswered Jan 17 '17 at 13:3323633 silver badges1111 bronze badges3
Then run as Administrator.Finally this worked for me.Followanswered Mar 26 '18 at 7:243971010 silver badges1818 bronze badges3
I have resolved the problem by ending the task for mysqlid on Task Manager.Followanswered Dec 17 '19 at 6:5653944 silver badges44 bronze badges
Thanks, it helped me. That soultion with deleting ib1 created for me new problems to solve. –
3
I solved similar MySQL error & I think this answer will help you to fix the same type of MySQL database error.
You can read the details tutorials on the link bellow:
Followanswered Jul 24 '20 at 19:065133 bronze badges2
Guys just make sure you dont have MySql Server installed. Because I have MySql server pre-installed and when I start mysql from xampp control panel some port conflicts are happening and its not working.. SO before starting the mysql from xampp control panel make sure mysql server is not installed. I use .net so I have installed mysql server in the Past. Uninstalling it solved my Problem....Followanswered May 14 '18 at 7:241,46411 gold badge1111 silver badges2424 bronze badges2
Followanswered Mar 24 '20 at 18:2647455 silver badges1010 bronze badges2
Followanswered Aug 1 '20 at 4:323566 bronze badges2
Followanswered Dec 13 '20 at 18:0410611 silver badge44 bronze badges1
Config->Apache->Open httpd.conf. search for Listen or 80,update listen port to 8081 save and restart server. Oh and shutdown Skype if you have it.Followanswered Aug 2 '13 at 17:5622.9k77 gold badges5757 silver badges7272 bronze badges
2Yeah, that fixed it. I swear I reinstalled before posting that, but I guess not. Thanks :) –
1
In my case in which I synced my mysql data and htdocs to dropbox, I just needed to delete the conflicted files in mysql/data folder and subfolders. The conflicted files can be identified by its names, dropbox will tell you that. It has solved the problem for me.Followanswered Jan 11 '15 at 9:1530933 silver badges99 bronze badges1
Make sure the system time is correct. Mine was set to the year 2040 somehow, correcting the date solved the problem.Follow21.8k1313 gold badges101101 silver badges145145 bronze badgesanswered Dec 26 '16 at 6:113,73922 gold badges2323 silver badges2929 bronze badges1
For me I quit Skype, which was occupying port 80, then Apache ran happily on port 80, than I ran Skype and it picked another port this time.Follow6091111 silver badges2626 bronze badgesanswered Jun 28 '15 at 15:5733366 silver badges2121 bronze badges1
Followanswered Mar 28 '18 at 15:001,58333 gold badges1616 silver badges2323 bronze badges1
and it solve my problem. than you everyOneFollowanswered Jun 20 '18 at 9:0562099 silver badges1212 bronze badges
I don't have that line at all –
Are you on windows ? what is your xampp version ? –
Yes, Win 10 with XAMPP 3.2.4 –
did you have access to your mysql/bin/my.ini file? –
see this link, and check your file location that it's supposed to be in C:\xampp\mysql\bin\my.ini , find the line innodb_additional_mem_pool_size and comment it. –
1
After you have replaced every location where '3306' is written, save the file and press 'Start' on the control panel again.Followanswered Oct 31 '18 at 12:46