Oktober 4th, 2008
Scheiß Cisco VPN-Client für Mac OSX … nie geht das Ding … immer dieser Drecksfehler:
“Error 51: Unable to communicate with the VPN subsystem . Please make sure that you have a least one network interface that is currently active and has an IP address and start that application again.”
Hier die Lösung die ich immer wieder suchen mußte:
sudo /System/Library/StartupItems/CiscoVPN/CiscoVPN restart
Juli 18th, 2008
Finally found the solution in the Ubuntu forums:
ln -s /etc/mysql/my.cnf /etc/my.cnf
Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ [Archive] – Ubuntu Forums .
Another problem … same error in phpMyAdmin cause the default for socket is “/tmp/mysql.sock”, you have to change that in your config file (config/config.inc.php):
[sourcecode language='php']
$cfg['Servers'][$i]['connect_type'] = ‘socket’;
$cfg['Servers'][$i]['socket'] = ‘/var/run/mysqld/mysqld.sock’;
[/sourcecode]