user2753924
user2753924

Reputation: 465

MySQL won't start in MAMP

I can't start MySQL in MAMP. This is the error in the log.

[ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.

However, if I run mysql_upgrade I get

mysql_upgrade: command not found

Can anyone tell me what the problem is?

Upvotes: 0

Views: 1359

Answers (1)

thatsaru
thatsaru

Reputation: 129

Try this command;

/Applications/MAMP/Library/bin/mysql_upgrade -uroot -p --force

It looks like the Path to MAMP bin directory is not in your PATH.

Upvotes: 2

Related Questions