PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, January 2, 2022

[FIXED] MAMP - mysql server won't start on port 3306

 January 02, 2022     mamp, mysql     No comments   

Issue

mySQL Server refuses to start up on port 3306 but ok on 8889.

Anyone got any ideas? Banging head on desk here :-)


Solution

The simplest solution would be probably to figure out if there is another instance of MySQL running and stopping it, e.g. you could call in Terminal :

ps -ax | grep mysqld

and then kill the appropriate mysqld process.

And to check for processes listening on the port 3306 :

lsof -i:3306


Answered By - Hamed Kamrava
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing