mySQL server in XAMP don't start

后端 未结 6 1353
失恋的感觉
失恋的感觉 2021-01-12 21:30

I read all of articles about my problem but it still not working

How can I solve this issue?

Here is my log file:

2015-11-10 15:26:56 10fc          


        
6条回答
  •  执念已碎
    2021-01-12 22:21

    Agree with @Daniel and @Elzo

    Try to run this below command in cmd prompt

    netstat -ano|find "3306"

    Eg:

    TCP 0.0.0.0:3306 0.0.0.0:0 LISTENING 5164

    TCP [::]:3306 [::]:0 LISTENING 5164

    It will let you know whether any process is utilizing port 3306 or not.

    If you are using xampp older version of xampp had portcheck.ext file you could even use that.

    If its mysql than stop and then try to start mysql again. You could even use the pid number(Here 5164) and check in windows task manager who is utilizing these pid so that you would come to know the exact process name

提交回复
热议问题