You're getting "Permission denied" when mysql tries to create /tmp/mysql.sock. Usually, this happens for one of two reasons:

1) mysqld is already running, so there's already a socket.
2) mysql doesn't have permission to write to /tmp.

As you've eliminated #1, #2 is the likely problem. If so, you'll need to fix that. Run

  chmod 1777 /tmp

as root (or with sudo).

Michael

OpenView Mike wrote:

Here is the contents of the err log:
050311 12:12:08 mysqld started
050311 12:12:08 [ERROR] Can't start server : Bind on unix socket: Permission denied
050311 12:12:08 [ERROR] Do you already have another mysqld server running on socket: /tmp/mysql.sock
?
050311 12:12:08 [ERROR] Aborting
050311 12:12:08 [Note] /opt/apps/mysql/bin/mysqld: Shutdown complete
050311 12:12:08 mysqld ended


I did a grep on any mysql processes, and none exist?
Any ideas?? THANKS!!!
Michael


[EMAIL PROTECTED] wrote:
you need to look in the mysql .err log file as it likely contains
useful information on why the server is shutting down.


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to