与MAMP发生Freak MySql错误

Asi*_*sis 13 mysql macos mamp

  • 我设置了MAMP Pro.在此之前我设置并删除了MAMP和XAMPP.我疯狂地删除了前两个文件的所有文件.从那以后,Apache没有在Mamp默认端口8888上运行,并且 - MySql没有运行.
  • 一行说"检查mysqld进程是否已经运行"我检查了一下,但事实并非如此! - 这是错误日志.
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.
InnoDB: Unable to lock ./ibdata1, error: 35
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.
InnoDB: Unable to lock ./ibdata1, error: 35
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.
InnoDB: Unable to lock ./ibdata1, error: 35
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.
130305 19:49:08  InnoDB: Unable to open the first data file
InnoDB: Error in opening ./ibdata1
130305 19:49:08  InnoDB: Operating system error number 35 in a file operation.
InnoDB: Error number 35 means 'Resource temporarily unavailable'.
InnoDB: Some operating system error numbers are described at
InnoDB: http://dev.mysql.com/doc/refman/5.5/en/operating-system-error-codes.html
130305 19:49:08 InnoDB: Could not open or create data files.
130305 19:49:08 InnoDB: If you tried to add new data files, and it failed here,
130305 19:49:08 InnoDB: you should now edit innodb_data_file_path in my.cnf back
130305 19:49:08 InnoDB: to what it was, and remove the new ibdata files InnoDB created
130305 19:49:08 InnoDB: in this failed attempt. InnoDB only wrote those files full of
130305 19:49:08 InnoDB: zeros, but did not yet use them in any way. But be careful: do not
130305 19:49:08 InnoDB: remove old data files which contain your precious data!
130305 19:49:08 [ERROR] Plugin 'InnoDB' init function returned error.
130305 19:49:08 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
130305 19:49:08 [ERROR] Unknown/unsupported storage engine: InnoDB
130305 19:49:08 [ERROR] Aborting

130305 19:49:08 [Note] /Applications/MAMP/Library/bin/mysqld: Shutdown complete

130305 19:49:08 mysqld_safe mysqld from pid file /Applications/MAMP/tmp/mysql/mysql.pid ended
Run Code Online (Sandbox Code Playgroud)

小智 59

只需在MAC上搜索"Activity Monitor"应用程序并搜索任何名为mysql的任务并结束它.然后重新启动MAMP它会工作.希望它可以帮助某人.


小智 8

结束Activity Monitor应用程序中的任何mysqlmysqld任务(或其他).


kri*_*ris 6

如果您无法使用Activity Monitor杀死它们,请在Terminal do中执行
$ ps aux | grep mysqld
。第二列是进程ID,可以使用(如果为1234)将其停止
$ kill 1234