ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (38)

[root@ibm /var/db/mysql]# uname -a
FreeBSD ibm.jc 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008     root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
[root@ibm /var/db/mysql]# mysql
ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (38)
[root@ibm /var/db/mysql]# ls -al /tmp/mysql.sock
-rw-r–r–  1 root  wheel  0 Dec  4 10:15 /tmp/mysql.sock
Just delete file /tmp/mysql.sock and restart mysql-server

Tags: , , , ,

Filed under:Error

Plesk Backup Process Error

Operating System : MS WIndows Server 2003 Standart Edition
Plesk Version : 7.5.6
The operation you were performing failed. You can retry the operation with or without changing its parameters. You may also want to report this problem to our support so that we could help you as soon as possible.
Backup process has failed for domain ‘titik.org’
Item [...]

Tags: , , , ,

Filed under:Error

Mysql Error : Client does not support authentication protocol requested by server

Error :
Warning: mysql_connect() [function.mysql-connect]: Client does not support authentication protocol requested by server; consider upgrading MySQL client in /home/path/public_html/includes//adodb-mysql.inc.php on line 355
Info :
dbuser=dbuser
dbpasswd=mypassword
Solution : Update your mysql user
mysql> UPDATE mysql.user SET password = OLD_PASSWORD(’mypassword’) WHERE user=’dbuser’ AND host=’localhost’;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> quit
Reference :
Google Search

Tags: ,

Filed under:Error