Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On Snow Leopard, starting MySQL gives the following error:

The server quit without updating PID file

my.cnf

[mysqld]
port            = 3306

socket          = /tmp/mysql.sock

skip-external-locking

key_buffer_size = 16K

pid-file=/var/run/mysqld/mysqld.pid

[mysqld_safe]

log-error=/var/log/mysqld.log

pid-file=/var/run/mysqld/mysqld.pid
share|improve this question
How are you starting mysql? Does the user mysql is running as have read/write access to your /var/run/mysql/ folder? – dmcnelis Feb 10 '11 at 22:52
1  
running as admin user. with sudo /usr/local/mysql/support-files/mysql.server start – Chinmay Feb 11 '11 at 15:15
same problem. Installed mysql with brew – vrybas Nov 9 '11 at 4:42
same problem here. also installed with brew. – jspooner Nov 9 '11 at 19:35

14 Answers

Did you follow the instructions from brew install mysql?

Set up databases to run AS YOUR USER ACCOUNT with:
    unset TMPDIR
    mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp

To set up base tables in another folder, or use a different user to run
mysqld, view the help for mysqld_install_db:
    mysql_install_db --help

and view the MySQL documentation:
  * http://dev.mysql.com/doc/refman/5.5/en/mysql-install-db.html
  * http://dev.mysql.com/doc/refman/5.5/en/default-privileges.html

To run as, for instance, user "mysql", you may need to `sudo`:
    sudo mysql_install_db ...options...

Start mysqld manually with:
    mysql.server start

    Note: if this fails, you probably forgot to run the first two steps up above
share|improve this answer
6  
This is the correct answer and should be marked as such. – Jamon Holmgren Jun 25 '12 at 20:39
1  
This works for me (I was installing MariaDB via brew) – Blake Dec 11 '12 at 1:24
I also had to run the following two commands: You should reload mysql: launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist – yoyoyo Jan 28 at 5:41
3  
If you're repeatedly getting the same error even after following the steps from the output then delete the *.err file from the same directory as the *.pid file. mahdiyusuf.com/post/21022913180/… – countfloortiles Feb 20 at 22:07
1  
I tried following these instructions a million times but never got it to work. I tried to "cheat" by not cleaning up all the things brew doctor warned me about since I thought they didn't make a difference. In the end, cleaning up and following brew doctors advice made it possible to run through the setup described above. So a note to anyone else passing by; don't try to cheat the brew doctor and think you know better! – span Mar 26 at 21:04
show 1 more comment

try to find your log file with suffix ".err", there should be more info. It might be in:

/usr/local/var/mysql/your_computer_name.local.err

It's probably problem with permissions

sudo chown -R your_user /usr/local/var/mysql/

should solve it

share|improve this answer
5  
did not work for me, still having the same problem – biogeek Apr 22 '12 at 11:07
5  
I had to chown to mysql user rather than my user. – Jared Aug 20 '12 at 19:13
1  
chown worked for pid problem upon mysql.start – ahmet alp balkan Jan 13 at 5:34
1  
worked for me. i checked the error file and said that it was becuase o file permissions. executed the chown command and worked. thanks!! – Packet Tracer Feb 26 at 19:47
FINALLY :) thanks! – electblake Mar 19 at 3:17

I hope this work for you.

After checking the error log, I found this:

120309 17:42:49 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
120309 17:42:50 [Warning] Setting lower_case_table_names=2 because file system for /usr/local/mysql/data/ is case insensitive
120309 17:42:50 [Warning] You need to use --log-bin to make --binlog-format work.
120309 17:42:50 [Note] Plugin 'FEDERATED' is disabled.
120309 17:42:50 InnoDB: The InnoDB memory heap is disabled
120309 17:42:50 InnoDB: Mutexes and rw_locks use GCC atomic builtins
120309 17:42:50 InnoDB: Compressed tables use zlib 1.2.3
120309 17:42:50 InnoDB: Initializing buffer pool, size = 16.0M
120309 17:42:50 InnoDB: Completed initialization of buffer pool
120309 17:42:50  InnoDB: Operating system error number 13 in a file operation.
InnoDB: The error means mysqld does not have the access rights to
InnoDB: the directory.
InnoDB: File name /usr/local/mysql/data/ib_logfile0
InnoDB: File operation call: 'open'.
InnoDB: Cannot continue operation.
120309 17:42:50 mysqld_safe mysqld from pid file /usr/local/mysql/data/lu1s.local.pid ended

And to solve it, I gave ownership rights to the entire mysql folder:

cd /usr/local
sudo chown mysql mysql
sudo chown mysql mysql-5.5.21-osx10.6-x86_64
sudo chown _mysql mysql
sudo chown _mysql mysql-5.5.21-osx10.6-x86_64

Then (you can do it command-line too), I applied the permissions (once I gave that ownership to _mysql and mysql users) to all enclosed folders from within the "get info" menu of the folder at /usr/local/mysql-5.5.21-osx10.6-x86_64 . You don't need to tho that to the alias since it's only an alias.

The name of the folder depends of the installation version of mysql that you have.

share|improve this answer

I'm using,

I Installed MySQL using homebrew ('brew install mysql'). It installed a couple of dependencies and then mysql.

When I tried to start it up,

west$ mysql.server start
Starting MySQL
.. ERROR! The server quit without updating PID file (/usr/local/var/mysql/west.local.pid).

I ran this command,

west$ /usr/local/Cellar/mysql/5.5.25/scripts/mysql_install_db 

and MySQL works.

Please take note that you need to run mysql_install_db from the with top level of the mysql directory (IE, usr/local/Cellar/mysql/5.5.25). Running it directly within the /scripts directory does not give it enough context for it to run.

share|improve this answer
Worked for me with 5.5.28 and brew on OSX 10.7.5 – ch3rryc0ke Dec 14 '12 at 22:07

For me the solution was to override/correct the data directory in /etc/my/cnf.

I built MySQL 5.5.27 from source with the directions provided in the readme file:


# Preconfiguration setup
shell> groupadd mysql
shell> useradd -r -g mysql mysql
# Beginning of source-build specific instructions
shell> tar zxvf mysql-VERSION.tar.gz
shell> cd mysql-VERSION
shell> cmake .
shell> make
shell> make install
# End of source-build specific instructions

# Postinstallation setup
shell> cd /usr/local/mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data

# Next command is optional
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &

# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server

mysqld_safe terminated itself without explanation. running /etc/init.d/mysql.server start resulted in the error:

"The server quit without updating PID file"

I noticed something odd in the installation instructions though. It has ownership changed to mysql for the directory "data", but not to "var"; this is unusual because for years I have had to ensure that var directory was mysql writable. So I manually ran chown -R mysql /usr/local/mysql/var and then attempted to start it again. Still no luck. But worse, no .err file in the var dir - it was in the "data" dir! so scripts/mysql_install_db sets up camp in /usr/local/mysql/var, but the rest of the application seems to want to do its work in /usr/local/mysql/data!

So I just edited /etc/my.cnf and under the section [mysqld] I added a directive to explicitly point mysql's data directory to var (as I normally expect it to be any how), and after doing so, mysqld starts up just fine. The directive to add looks like this:

datadir = /usr/local/mysql/var

Worked for me. Hope it helps for you.

share|improve this answer

What's the error log say? I got this error, and it ended up being an old invalid setting in the my.cnf, which the mysql error log indicated. If not a bad config setting, the error log should at least point you in the right direction.

Well, I assume the OP has fixed it at this point... but hopefully this points the others seeing this error in the right direction.

share|improve this answer

I had the same problem. moving my /etc/my.cnf file worked for me. I got the information here

share|improve this answer

This problem usually arrives when you did not have libaio.1 library installed. Install that package first and redo the mysql_install_db step.

share|improve this answer

I was trying to reinstall mysql, and I actually forgot to stop the server from my old install. To solve that, ps -ax | grep mysql, then kill [whatever PIDs]. But, then again, it's different for everybody. Like the other answers said, go to /usr/local/var/mysql/ and check your .err log file.

share|improve this answer

The solution that worked for me was here: http://serverfault.com/questions/334284/cant-create-pid-file-on-mysql-server-permission-denied

Changing some of my permissions seemed to do the trick. I'm running a Mid-2012 Macbook Air with OS X 10.8.2 and mysql was installed with homebrew.

chmod 0755 /var
chown root:wheel /var/tmp
sudo chmod 0771 /usr/local/var/mysql/*
share|improve this answer

I had this problem while trying to brew upgrade on MacOS X 10.7.5.

Unfortunately mysql was also upgraded to 5.6.10 from 5.5.14. Tried the new, did not work.

I decided to go back to my old setup and did a

brew switch mysql 5.5.14

This did not solve the problem. Elsewhere I read and did this, voila! All was back :)

cd /usr/local/var/mysql
mv ib_logfile0 ib_logfile0.bak
mv ib_logfile1 ib_logfile1.bak
share|improve this answer

I had the same issue on my Mac machine (correctly followed all the installation steps suggested by brew install).

Deleting the error file fixed it for me:

sudo rm -rf /usr/local/var/mysql/dev.work.err (dev.work is my hostname)

This worked because dev.work.err was owned by _mysql:wheel instead of my own username. CHOWN-ing the error file would have probably fixed it as well.

share|improve this answer

Could be related to old MySQL process. You need to kill it and restart. Sometimes it can be due to a conflict in MySQL config file. Try to move it and restart MySQL. Check the following url for more details.

http://linuxadministrator.pro/blog/?p=225

Thanks.

share|improve this answer

Previous mysql cruft needed to be removed in my case.

rm -rf /usr/local/var/mysql/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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