I installed mysql version 5.5.9 on my mac and I tried to start it using this command :

sudo /usr/local/mysql/support-files/mysql.server start

mysql didn't start with this command. I checked the localhost.err file in data directory and it was like this :

110227 22:51:14 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
110227 22:51:14 [Warning] Setting lower_case_table_names=2 because file system for /usr/local/mysql/data/ is case insensitive
110227 22:51:14 [Note] Plugin 'FEDERATED' is disabled.
/usr/local/mysql/bin/mysqld: Table 'mysql.plugin' doesn't exist
110227 22:51:14 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
110227 22:51:14 InnoDB: The InnoDB memory heap is disabled
110227 22:51:14 InnoDB: Mutexes and rw_locks use GCC atomic builtins
110227 22:51:14 InnoDB: Compressed tables use zlib 1.2.3
110227 22:51:14 InnoDB: Initializing buffer pool, size = 128.0M
110227 22:51:14 InnoDB: Completed initialization of buffer pool
110227 22:51:14  InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to 5 MB
InnoDB: Database physically writes the file full: wait...
110227 22:51:14  InnoDB: Log file ./ib_logfile1 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile1 size to 5 MB
InnoDB: Database physically writes the file full: wait...
110227 22:51:15 InnoDB: highest supported file format is Barracuda.
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
110227 22:51:15  InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
110227 22:51:15  InnoDB: Waiting for the background threads to start
110227 22:51:16 InnoDB: 1.1.5 started; log sequence number 1595916
110227 22:51:16 [ERROR] /usr/local/mysql/bin/mysqld: unknown option '--skip-locking'
110227 22:51:16 [ERROR] Aborting

110227 22:51:16  InnoDB: Starting shutdown...
110227 22:51:16  InnoDB: Shutdown completed; log sequence number 1595916
110227 22:51:16 [Note] /usr/local/mysql/bin/mysqld: Shutdown complete

110227 22:51:16 mysqld_safe mysqld from pid file /usr/local/mysql/data/localhost.pid ended

I deleted the two ib_log files, I changed my.cnf file and I got nothing.

link|improve this question

50% accept rate
Using MAMP or the Installs from Entropy may cause the Terminal commands that you find online to be inaccurate, as those solutions don't install over Apple shipped Apache/PHP, etc. Have you tried using <command>+<shift>+g from Finder, and verified that the files you're calling are actually there? – Dawson Feb 27 '11 at 22:49
If you can find the Unix Executable in Finder, you can open Terminal and then double-click the executable from the Finder. This would at least show you which file is actually going to work, and its correct path. – Dawson Feb 27 '11 at 22:57
Did you find a solution for this? I have had the same problem. – highBandWidth May 14 at 18:14
feedback

2 Answers

--skip-locking was removed in MySQL 5.5. See here.

Edit your my.cnf file and change "skip-locking" to "skip-external-locking".

link|improve this answer
Thanx for your answer but it didn't make any difference. – AliBZ Feb 27 '11 at 19:41
There might be other directories containing the my.cnf file which the installer will read. Check out this link: (it's not for Mac but it's the same issue) link – red Feb 27 '11 at 19:59
feedback

1 ) in the terminal , launch command : mysql_upgrade ( to create the tables that are non existent )

2 ) edit /etc/my.cnf , comment out the --skip-locking statement

that's all , happy SQLing

link|improve this answer
thanx, I typed the command ./mysql_upgrade in the bin directory and I got this : Got error: 2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) when trying to connect FATAL ERROR: Upgrade failed – AliBZ Feb 27 '11 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.