Attempting to start mysql service xampp ошибка

I’ve just installed XAMPP for Windows — should be the newest version (XAMPP Control Panel v3.2.1).

Apache is running just fine on port 80 and 443, but MySQL is not starting. When I press the start button, I get this message:

Attempting to start MySQL service…

Then a window pops up and asks me if I want to allow this, which I want. But nothing happens after that. I can press as many times as I want, but with the same result.

What can I do with MySQL?

Melebius's user avatar

Melebius

6,1044 gold badges37 silver badges52 bronze badges

asked Jan 22, 2014 at 9:52

BeHaa's user avatar

4

If you have MySQL already installed on your windows then go to services.msc file on your windows and right click the MySQL file and stop the service, now open your XAMPP and start MySQL. Now MySQL will start on the port 3306.

answered Feb 27, 2016 at 8:39

suki ramachandran's user avatar

1

I had an issue with this because I had accidentally installed XAMPP to c:windowsprogram files (x86) which caused a Windows permissions issue.

The installation says not to install it there, but I thought it had said to install it there.

I uninstalled and reinstalled to c:xampp and it worked.

answered Jan 15, 2017 at 17:51

Eoin's user avatar

EoinEoin

1,3832 gold badges16 silver badges32 bronze badges

2

After Stop xampp, go to configure and change the port 3306 to 3308 of mysql and save. Now start the sql……Enjoy

answered Apr 24, 2016 at 10:16

Alok kumar's user avatar

Alok kumarAlok kumar

811 silver badge1 bronze badge

  1. In the cmd type: services.msc Find MySql and change properties to the disabled.
  2. In the control panel of Xampp uninstall MySql by the checkbox on the left side, and install again by the click in the same checkbox.

TrebledJ's user avatar

TrebledJ

8,6237 gold badges25 silver badges47 bronze badges

answered Feb 10, 2019 at 13:29

surbaniak's user avatar

surbaniaksurbaniak

811 silver badge3 bronze badges

2

Windows 10 Users:

I had this issue too. A little bit of investigating helped out though. I had a problem before this one, that 3306 was being used. So what I found out was that port 3306 was being used by another program. Specifically a JDBC program I was trying to learn and I had xammp installed before I tried this JDBC out. So I deleted the whole file and then here I am, where you’re at. The issue was that my ‘ImagePath'(registry variable) was changed upon installing mySql again. To put it simply, xammp doesn’t know where your mysqld.exe is at anymore, or the file is not in the location that you told it to be. Here’s how to fix it:

  1. Open run (Win + r) and type ‘regedit’. This is where you edit your registry.
  2. Navigate to: HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > MySql

enter image description here

  1. Click on mySql and notice the ImagePath variable. Right click ‘ImagePath’ and click modify.
  2. Enter the location of your xammp mySqld file (navigate through xammp to find it) Although it is likely the same as mine.

Cool Sources:

https://superuser.com/questions/222238/how-to-change-path-to-executable-for-a-windows-service/252850

https://dev.mysql.com/doc/mysql-windows-excerpt/5.7/en/mysql-installation-windows-path.html

Thanks dave

answered Oct 4, 2019 at 23:07

Thomas's user avatar

ThomasThomas

2,4911 gold badge9 silver badges16 bronze badges

1

One of many reasons is xampp cannot start MySQL service by itself. Everything you need to do is run mySQL service manually.

First, make sure that ‘mysqld.exe‘ is not running, if have, end it. (go to Task Manager > Progresses Tab > right click ‘mysqld.exe’ > end task)

Open your services.msc by Run (press ‘Window + R’) > services.msc or 0n your XAMPP ControlPanel, click ‘Services’ button.
Find ‘MySQL‘ service, right click and run it.

answered Aug 19, 2016 at 8:06

nguyendc's user avatar

1

Only stop My sql In Xampp For 15 Min After 15 min restart Mysql .If my sql running But Port Not Showing in Xampp then Click Config > my.ini edit this file and change port no 3306 > 3307 and save and Restart xampp ………

answered Aug 31, 2015 at 9:42

Arghya's user avatar

0

Only for windows
I have fixed the mysql startup issue by following below steps

Steps:

  1. Open CMD and copy paste the command netstat -ano | findstr 3306
    If you get any result for command then the Port 3306 is active

  2. Now we want to kill the active port(3306), so now open powershell and paste the command
    Stop-Process -Id (Get-NetTCPConnection -LocalPort 3306).OwningProcess -Force

Where 3306 is active port. Now port will be inactive

Start Mysql service from Xampp which will work fine now

Note: This works only if the port 3306 is in active state. If you didn’t get any result from step 1 this method is not applicable. There could be some other errors

For other ports change 3306 to "Required port"

Ways to open CMD and Powershell

  1. For CMD-> search for cmd from start menu
  2. For Powershell-> search for powershell from start menu

answered Jan 24, 2020 at 11:20

Mohamed Sulaimaan Sheriff's user avatar

Had this problem today, on a Windows 10 machine. Opened C:xamppdatamysql_error.log and looked for lines containing [ERROR].

Last error line was:

... [ERROR] InnoDB: File (unknown): 'close' returned OS error 206. Cannot continue operation

Important note: if your error is different, google it (you’ll likely find a fix).

Searching for the above error, found this thread on Apache Friends Support Forum, which led me to the fix:

  1. Open C:xamppmysqlbinmy.ini and add the following line towards the end of [mysqld] section (above the line containing ## UTF 8 Settings):
innodb_flush_method=normal
  1. Restart MySQL service. Should run just fine.

answered Dec 24, 2018 at 7:23

tao's user avatar

taotao

81.3k16 gold badges110 silver badges143 bronze badges

Did you use the default installation path?

In my case, when i ran mysql_start.bat I got the following error:

Can`t find messagefile 'D:xamppmysqlshareerrmsg.sys'

I moved my xampp folder to the root of the drive and it started working.

Hope it helps

answered Feb 4, 2016 at 3:04

Oltamor's user avatar

OltamorOltamor

1211 silver badge4 bronze badges

If you have other testing applications like SQL web batch etc, uninstall them because they are running in port 3306.

answered Nov 8, 2017 at 6:56

Shibhe Tepa's user avatar

I have the same problem. Finally found the solution:

The Relocate XAMPP option in the setup tool didn’t correctly relocate the paths and corrupted them, I’ve manually changed the directories inside my.ini (base dir, data dir , …). After that mysql started successfully.

answered Feb 26, 2019 at 7:47

SAMPro's user avatar

SAMProSAMPro

1,0681 gold badge15 silver badges39 bronze badges

The problem I had was changing the path of the Xammp folder in the system.

Eric Aya's user avatar

Eric Aya

69.4k35 gold badges181 silver badges252 bronze badges

answered Dec 12, 2022 at 7:30

mehmet's user avatar

mehmetmehmet

4783 silver badges12 bronze badges

I can share how I solved the problem in my case.

It seems that somehow I had mySQL Server 5.7 installed. It didn’t show on Add/Remove Programs list in Windows tough so I wasn’t aware of it. I marked that after I looked up the XAMPP log.

Just after XAMPP launched it has shown in the log that there is a conflict in mySQL and indicated the folder where my mySQL Server 5.7 is installed. I removed mySQL 5.7 manually from Program Files (x86) and ProgramData folder, restarted and XAMPP mySQL started normally then.

I’ve tried only stopping the mySQL service but for me it didn’t work. Only manually deleting all mySQL 5.7 folders seemed to have helped.

K.Dᴀᴠɪs's user avatar

K.Dᴀᴠɪs

9,93511 gold badges33 silver badges43 bronze badges

answered Dec 12, 2018 at 21:53

radek's user avatar

radekradek

471 silver badge7 bronze badges

Everytime my MySQL starts, it will stop, then I noticed that some files are getting generated in C:xamppmysqldata. I tried deleting some files (like the Error logs, err file, etc.) on that directory. Back up first what you’re going to delete to avoid losing data.

I don’t know how it works. I’m just trying to enable HTTPS in my local machine but then suddenly MySQL can’t be started. But now it’s working.

I’m using Windows 10 and XAMPP 3.2.4.

answered Nov 30, 2019 at 15:41

Bawm's user avatar

BawmBawm

693 bronze badges

This worked for me.

  1. Search for Services in Windows Start

enter image description here

  1. Find MySQL in it.

enter image description here

  1. Right Click and Stop MySQL. Would work on XAMPP Now.

Note: If you wanna use the MYSQL prompt again, you will have to start the MYSQL from Service again.

answered Nov 17, 2021 at 7:03

Kavya Goyal's user avatar

In my case I had xampp installed with PHP 7.4.
But I needed PHP 8.
I downloaded xampp with PHP 8.
Installed it to C:/xampp8/ folder. When I started the new version, it started successfully.
But then I realized that I needed the database data from the old xampp installation. I stopped the new xampp(php 8 version) , and tried to start xampp (php 7.4 version) and saw that Apache started and was working fine, but mysql was not starting.
I tried many settings but couldn’t start mysql from the old xampp.
Solution in my case to copy the data to the new xampp
I went to C:/xampp_old/mysql/data folder. And saw that each of my database has a separate folder inside data folder. I copied all the folders and pasted into
C:/xampp8/mysql/data/
Then I started new xampp and looked in phpmyadmin via browser and I got all my databases back.

answered Mar 10, 2022 at 14:53

Noor Ahmed's user avatar

In the xampp control panel, to the left of «MySQL» there is a green checkbox, click it to uninstall MySQL service. After that you can start MySQL from the same control panel. You can install those services again, it will still work.

answered Oct 20, 2022 at 7:26

Sunil Kumar's user avatar

Sunil KumarSunil Kumar

5,9126 gold badges35 silver badges39 bronze badges

What worked for me was to run xampp «as administrator». Fixed.

answered Nov 14, 2022 at 14:54

user13134936's user avatar

1

I solved this problem by removing all the information in the path

C:xamppmysqldata

And copy the information inside this path

C:xamppmysqlbackup

answered Jan 7 at 16:52

Ali Azmoodeh's user avatar

In Windows, you should go: Start > Run > services.msc > Apache 2.4 > Properties > Start Mode > Automatic > Apply > Start > OK > [Same as MySQL]

answered Jan 19, 2015 at 7:17

Dao Minh Duc's user avatar

if all solutions up did not work for you, make sure the service is running and not set to Disabled!
Go to Services from Control panel and open Services,
Search for Apache2.4 and mysql then switch it to enabled, in the column of status it should be switched to Running

answered May 2, 2020 at 9:43

Ahmad's user avatar

AhmadAhmad

1,3845 gold badges21 silver badges42 bronze badges

1

Google Brings me here. The favourite answers don’t help me.
I’ve now solved it, so maybe this will help someone else.
Problem: after UPDATE of XAMPP to a new version I get the message «MySQL WILL NOT start without the configured ports free!».

However, I only have 1 instance of mysqld running.

It seems that the control panel is not as clever as it looks. As far as I can tell, the single instance of mysqld is the new one i’ve just updated to, but running as a ‘service’. The control panel then tries to start it, and instead of realising its already running, It assumes its another service and reports the error.

Probable cause: The uninstaller failed to remove the autostart property from the mysql service, so the new instal picked it up.

Solution:
open the Xammpp Control Panel and click on the Services Button on the right. This will open the services control panel.
Look for mysqld in the list of running processes, right-click it to get the properties and change the startup type to «Manual».
you might as well do the same for Apache2 while you’re here.
Apply changes and Close the services control panel.

Now click the Config Button on xampp control panel, uncheck The Mysql (and Apache) Autostart features.

Reboot the machine.
You should now be able to start / stop Mysql & Apache without any error messages.
If this works, use the Xampp Control panel as usual to start/stop add service or add autostart as normal.
No need to mess with any ports or config files.

XAMPP is a great tool for web developers who need to host websites locally on their own computers. Unfortunately, because it uses ports and services that are commonly used by other applications, conflicts can happen, causing certain applications on XAMPP to be unable to run.

In this article, we will be exploring what you can do if XAMPP’s Apache service does not run on Windows.

In a previous article, we explored how to troubleshoot situations where XAMPP MySQL does not work on macOS. You may also be looking for solutions to troubleshoot XAMPP Apache for Windows instead too.

  1. The problem
  2. Possible causes and fixes
    1. Port 3306 is already used by another process
    2. Changing the port used by XAMPP
    3. MySQL’s data has been corrupted
  3. Unable to access phpMyAdmin
  4. Conclusion

1. The problem

If your MySQL module’s status changes to back to stopped every time you try to start it, you are strongly encouraged to read on further to solve this problem.

MySQL fails to start on XAMPP
MySQL fails to start on XAMPP.

Below is a transcription of the error log shown on XAMPP when MySQL fails to start:

[mysql] Attempting to start MySQL service...
[mysql] Status change detected: running
[mysql] Status change detected: stopped
[mysql] Error: MySQL shutdown unexpectedly
[mysql] This may be due to a blocked port, missing dependencies,
[mysql] improper priviliges, a crash, or a shutdown by another method.

2. Possible causes and fixes

Below are some common causes that prevent XAMPP’s MySQL module from starting.

a. Port 3306 is used by another process

The most likely reason that XAMPP’s MySQL service is unable to start is because port 3306 is already used by a different program that is currently running on your computer. By default, XAMPP’s MySQL service binds to port 3306 when started, and it can only do so if another program is not already using it.

To ascertain whether this is the case, you can click on the Netstat button to open up a window with a list of all the ports that are being used on your computer currently. If port 3306 is in the list when you haven’t started MySQL on XAMPP, this means that another program is using it.

XAMPP's Netstat window
Use the Netstat window to check if port 3306 has already been occupied.

To remedy this, you will need to find the process that is using port 3306 and end the process. In the example above, a process called mysqld.exe is using port 3306. To stop it, I will have to use Ctrl + Alt + Delete to open up the Task Manager, then find and end the mysqld.exe process.

Task Manager
If your Task Manager doesn’t show all the processes, click on More details at the bottom of the window to get the full Task Manager window.

Once this is done, you can try starting MySQL on XAMPP again. Depending on the program that was occupying port 3306, this might or might not work. If it doesn’t work, you will have to find the program that was creating the process and uninstall it. In most cases, this should be another installation of MySQL on your computer, such as:

  • MySQL Workbench
  • MySQL Community Server

…or some other variation of MySQL, since it is one of the few programs that use port 3306.

After uninstalling the other program(s), remember to restart your computer before trying to start MySQL again.

b. Changing the port used by XAMPP MySQL

If you don’t want to uninstall the program that is using port 3306, or if you can’t find the process using the instructions above, you can also configure XAMPP MySQL to use a different port. Do note that if another MySQL program is using port 3306, there is a chance that this doesn’t work, as 2 seperate installations of MySQL can interfere with each other.

Regardless, below are the steps to change the port of XAMPP’s MySQL:

  1. In the XAMPP control panel, click on the Config button of the MySQL module.
  2. In the popped window, select my.ini.
Where to find MySQL's my.cnf
Where to find MySQL’s my.cnf.
  1. Inside the file, go down and find the section that contains the following line: # The MySQL server. Below this line, you should find the port number, which says port=3306 by default.
  2. Change to a different port. You can use any unused port on your computer between 1 to 65535, but I usually use port 3307.
  3. Save the changes to the file, and try to start MySQL on XAMPP again.

Article continues after the advertisement:


Below is a snapshot of my my.cnf file, with the part that you need to change highlighted:

my.cnf

# Example MySQL config file for small systems.
#
# This is for a system with little memory (<= 64M) where MySQL is only used
# from time to time and it's important that the mysqld daemon
# doesn't use much resources.
#
# You can copy this file to
# C:/xampp/mysql/bin/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is C:/xampp/mysql/data) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
# password       = your_password 
port=3306
socket="C:/xampp/mysql/mysql.sock"


# Here follows entries for some specific programs 

# The MySQL server
default-character-set=utf8mb4
[mysqld]
port=33063307
socket="C:/xampp/mysql/mysql.sock"
basedir="C:/xampp/mysql"
tmpdir="C:/xampp/tmp"
datadir="C:/xampp/mysql/data"
pid_file="mysql.pid"
# enable-named-pipe
key_buffer=16M
max_allowed_packet=1M
sort_buffer_size=512K
net_buffer_length=8K
read_buffer_size=256K
read_rnd_buffer_size=512K
myisam_sort_buffer_size=8M
log_error="mysql_error.log"

# Change here for bind listening
# bind-address="127.0.0.1" 
# bind-address = ::1          # for ipv6

# Where do all the plugins live
plugin_dir="C:/xampp/mysql/lib/plugin/"

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
# commented in by lampp security
#skip-networking
#skip-federated

# Replication Master Server (default)
# binary logging is required for replication
# log-bin deactivated by default since XAMPP 1.4.11
#log-bin=mysql-bin

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id	=1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin


# Point the following paths to different dedicated disks
#tmpdir = "C:/xampp/tmp"
#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables
#bdb_cache_size = 4M
#bdb_max_lock = 10000

# Comment the following if you are using InnoDB tables
#skip-innodb
innodb_data_home_dir="C:/xampp/mysql/data"
innodb_data_file_path=ibdata1:10M:autoextend
innodb_log_group_home_dir="C:/xampp/mysql/data"
#innodb_log_arch_dir = "C:/xampp/mysql/data"
## You can set .._buffer_pool_size up to 50 - 80 %
## of RAM but beware of setting memory usage too high
innodb_buffer_pool_size=16M
## Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size=5M
innodb_log_buffer_size=8M
innodb_flush_log_at_trx_commit=1
innodb_lock_wait_timeout=50

## UTF 8 Settings
#init-connect='SET NAMES utf8'
#collation_server=utf8_unicode_ci
#character_set_server=utf8
#skip-character-set-client-handshake
#character_sets-dir="C:/xampp/mysql/share/charsets"
sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION
log_bin_trust_function_creators=1

character-set-server=utf8mb4
collation-server=utf8mb4_general_ci
[mysqldump]
max_allowed_packet=16M

[mysql]
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[isamchk]
key_buffer=20M
sort_buffer_size=20M
read_buffer=2M
write_buffer=2M

[myisamchk]
key_buffer=20M
sort_buffer_size=20M
read_buffer=2M
write_buffer=2M

[mysqlhotcopy]

c. MySQL’s data has been corrupted

If you have had multiple copies of MySQL installed on your device at one point, or had a separate installation of XAMPP, it is possible that the data in your current installation might have been corrupted. In such a scenario, you can try:

  1. Ensuring that all other installations of MySQL are removed on your computer, then uninstalling and reinstalling XAMPP, or;
  2. Restoring your existing XAMPP’s MySQL installation with backup data.

If you would like to try option B before reinstalling XAMPP, you can follow the steps below:

  1. Go to your XAMPP MySQL directory. By default, it is located under Local Disk → XAMPP → MySQL (e.g. if you installed it under the default C-drive, you will find the folder in C:xamppmysql). Here you will be seeing different folders — the ones that we need to use are the data and backup folders
  2. Rename the data folder to data_old.
  3. Create a new folder with the name data. This is the new folder that MySQL will use to replace the old one. Now, we need to fill this folder with certain files.
  4. Go to the backup folder and copy all the files inside it. Paste them into the new data folder.
  5. Now, we need to paste databases into our new data folder. In order to do so, inside the data_old folder, copy the mysQL folder, as well as all the folders under the phpmyadmin folder. If you have only one folder, it is totally okay, just make sure you paste it. There is NO need to copy the performance_schema and phpmyadmin folders.
  6. Last but not least, we need to copy the ibdata1 file. Go to your data_old folder, find the ibdata1 file, and past it into the data folder.

3. Unable to access phpMyAdmin

There can also be cases where you are able to start MySQL on XAMPP, but are unable to access the http://localhost/phpmyadmin URL. This can be caused by a multitude of reasons, and we explore this in a separate article:

4. Conclusion

As with the other articles on the blog, we’d love if you leave a comment below, especially if you:

  1. Find any errors in this article.
  2. Find a problem causing this issue that is not described in this article.

We will periodically upload this article with new solutions and issues that we find, and we will credit you if you share your issues and / or solutions! Your comments will add to the information that is already here, and help other future readers!


Article continues after the advertisement:


Sometimes MySQL may fail to start in XAMPP, which can be a frustrating experience for users. If you are facing this issue, don’t worry, as there are several steps you can take to fix MySQL not starting in XAMPP on Windows. xampp MySQL not starting windows 11/10; In this tutorial, you will learn how to fix MySQL not starting xampp control panel in windows 11/10.

When you start mysql in xampp you will see some errors. Which is visible in the image given below. But your mysql server will not start in xampp windows.So it means that your mysql server has become corrupt. and it needs to be repaired.

This has happened to us on some commits with Windows XAMPP, which appears to be caused by stopping the MySQL server in the control panel.

This was our error log when we tried to start the MySQL server:

3:43:26 PM  [mysql]   Attempting to start MySQL app...
3:43:26 PM  [mysql]   Status change detected: running
3:43:28 PM  [mysql]   Status change detected: stopped
3:43:28 PM  [mysql]   Error: MySQL shutdown unexpectedly.
3:43:28 PM  [mysql]   This may be due to a blocked port, missing dependencies, 
3:43:28 PM  [mysql]   improper privileges, a crash, or a shutdown by another method.
3:43:28 PM  [mysql]   Press the Logs button to view error logs and check
3:43:28 PM  [mysql]   the Windows Event Viewer for more clues
3:43:28 PM  [mysql]   If you need more help, copy and post this
3:43:28 PM  [mysql]   entire log window on the forums

Follow the below given easy steps to fix/resolve MySQL server not starting in XAMPP windows. And your Mysql server will start in the xampp windows:

  • Step 1 – Visit Xampp/mysql Directory
  • Step 2 – Make Backup Directory
  • Step 3 – Copy MySQL Directory Data
  • Step 4 – Paste MySQL Data in Directory
  • Step 5 – Copy ibdata1 Directory Data
  • Step 6 – Restart MySQL Server In Xampp

Step 1 – Visit Xampp/mysql Directory

Navigate to your XAMPP MySQL directory (C:xamppmysql).

Step 2 – Make Backup Directory

Make a new folder called FIX_BACKUP.

Step 3 – Copy MySQL Directory Data

Copy C:xamppmysqlbackup and C:xamppmysqldata into C:xamppmysqlFIX_BACKUP.

Step 4 – Paste MySQL Data in Directory

Paste the contents of C:xamppmysqlbackup into C:xamppmysqldata overwriting all the files.

Step 5 – Copy ibdata1 Directory Data

Finally copy the ibdata1 file from C:xamppmysqlFIX_BACKUPdata into C:xamppmysqldata overwriting the file.

Step 6 – Restart MySQL Server In Xampp

Now restart MySQL server in xampp. So, Your MySQL server should now start in the XAMPP control panel.

If the above steps do not resolve the issue, it may be necessary to reinstall XAMPP. This will ensure that all components are installed correctly and that there are no missing or corrupt files. Follow these steps to reinstall XAMPP:

  1. Uninstall XAMPP from your system.
  2. Download the latest version of XAMPP from the official website.
  3. Install XAMPP on your system, making sure to select all the required components.
  4. Start XAMPP and check if MySQL is running.

Conclusion

MySQL not starting in XAMPP can be a frustrating problem, but fortunately, it can be fixed by following the steps above. By checking the XAMPP control panel, looking for conflicting ports, checking the MySQL error log, and reinstalling XAMPP, you can get MySQL up and running in XAMPP in no time.

Recommended Tutorials

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

View all posts by Admin

1. Software environment:Windows10 + XAMPP
1. Start apache and report an error
If an error occurs, you need to modify the port. Generally, port 80 and port 443 are occupied, just modify the configuration file directly.
**Modification method: **Click «Config» at the back, search for 80 in httpd.conf, and modify all to 8088 (free to modify, not specific is 8088);
Look for 443 in httpd-ssl.conf, modify all to 4443 (free to modify, not specific is 4443)
2. Start MySQL error


The main reason is that port 3306 is occupied, because I installed a MySQL locally, so I only need to modify it according to the error message.
Attempting to start MySQL service… It means that the service cannot be started…
**Modification method: **If you have also installed MYSQL locally,No need to stop service, Open CMD directly, enter regedit, and modify the registry, as shown below:

Press Enter to open the registration form:

Change the imagepath data here to:
d:xamppmysqlbinmysqld.exe —defaults-file=d:xamppmysqlbinmy.ini mysql
-The first part of defaults-file is the path of the MySQL I originally installed, and the latter part is the path of the XAMPP I installed. You can modify it according to your own installation path.

Reference link:

Понравилась статья? Поделить с друзьями:
  • Asus коды ошибок bios
  • Asus crosshair v formula z ошибка ff
  • Asrock коды ошибок биос
  • Aslo sys ошибка
  • Asctray exe системная ошибка