I have googled for 2 days now and was initially get a

'/var/run/mysqld/mysqld.sock' (2)

I fixed this by using:

Sudo touch /var/run/mysqld/mysqld.cock
sudo chown -R mysql /var/run/mysqld/

now i get the error:

 '/var/run/mysqld/mysqld.sock' (13)

So everything has the correct permissions and the file exists. Any thoughts?

link|improve this question

68% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You cannot (absolutely cannot) replace the filesystem pipe /var/run/mysqld/mysql.sock with a regular file. You need to use mkfifo(1) to create the pipe(7) that clients use to communicate with the mysql server.

The (13) probably also means that you have a permission denied error return, EACCES (which usually has the decimal value 13 -- yes, I've seen it a lot).

If the file system permissions are configured correctly, you might be having accesses rejected by a mandatory access control tool such as AppArmor, SELinux, TOMOYO, or SMACK.

AppArmor comes pre-installed on Ubuntu systems by default, and might be rejecting access to the pipe. Check /var/log/syslog, /var/log/audit/audit.log or dmesg(1) output for messages that look something like this:

type=AVC msg=audit(1320723925.179:45115): apparmor="DENIED"
operation="open" parent=1 profile="/usr/sbin/ntop"
name="/usr/share/ntop/html/PlotKit/excanvas.js" pid=1835 comm="ntop"
requested_mask="r" denied_mask="r" fsuid=122 ouid=0

(But with name=/var/run/mysqld/mysql.sock instead.)

If you have error messages like this, run aa-logprof as root and answer the questions. More information on configuration AppArmor can be found in the apparmor.d(5) manpage, or some various wiki pages.

link|improve this answer
Thanks the great reply. Always wish i spent more time with mysql rather than just queries. So i get this error when i do mysql start "ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (111)". Previously i had no problems starting mysql :/ – Jamie Hutber Nov 23 '11 at 10:55
111104 11:54:40 [Note] Plugin 'FEDERATED' is disabled. 111104 11:54:40 InnoDB: Initializing buffer pool, size = 8.0M 111104 11:54:40 InnoDB: Completed initialization of buffer pool 111104 11:54:43 InnoDB: Started; log sequence number 0 44233 111104 11:54:44 [Note] Event Scheduler: Loaded 0 events 111104 11:54:44 [Note] /usr/sbin/mysqld: ready for connections. Version: '5.1.54-1ubuntu4' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Ubuntu – Jamie Hutber Nov 23 '11 at 10:58
Hey, that looks like an improvement; 111 is Connection refused. Did you restart the server after re-creating the socket? Is the server configured to use that pathname? – sarnold Nov 23 '11 at 10:58
hummm ok so.. i restart the mysql server and get a lot of errors but the most appropriate i believe: 010101 1:37:56 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 ./ibdata1 InnoDB: File operation call: 'create'. InnoDB: Cannot continue operation. Also as for the pathname, i haven't actually edited any config for mysql, i just used sudo apt-get lamp-server – Jamie Hutber Nov 23 '11 at 11:09
Got it working, although i am unsure how. I did aa-logprof, nothing changed, got angry and then re-set it started working. This almost made me more angry as now i don´t know the problem for next time :(. Still thanks for the help – Jamie Hutber Nov 23 '11 at 11:52
show 4 more comments
feedback

Did you check that the mysql server mysqld is running? Also, check the system message log to see if it is complaining about anything.

link|improve this answer
It was running yes, although its not currently starting up. Seeing below comment. – Jamie Hutber Nov 23 '11 at 10:57
feedback

Did you try to remove .lock file and restart mysqld ?

link|improve this answer
Where would this .lock file be? – Jamie Hutber Nov 23 '11 at 10:56
1  
rm /var/lock/subsys/mysql – edead Nov 23 '11 at 11:14
feedback

Your Answer

 
or
required, but never shown

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