I am trying to create the file mysql.sock as with the following permissions

srwxrwxrwx 1 mysql mysql 0 2009-10-07 09:55 mysqld.sock

I know this is done with mknod, but I am not sure of the parameters. I don't want the C programming documentation, just a command for the bash shell

link|improve this question

1  
Did you try just restarting mysql? – BobbyShaftoe Oct 19 '09 at 19:26
nope, the server was recently duplicated, and this file is missing – Señor Reginold Francis Oct 19 '09 at 19:27
actually that worked. Cant beleive I didnt think of that – Señor Reginold Francis Oct 19 '09 at 19:30
FWIW: you create a Unix domain socket in two stages, with socket() and bind() calls - and you probably do not use mknod() at all. – Jonathan Leffler Oct 19 '09 at 19:55
feedback

closed as off topic by Zan Lynx, Powerlord, DigitalRoss, rmeador, Jonathan Leffler Oct 19 '09 at 19:47

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.