Skip to content

Instantly share code, notes, and snippets.

@lazybios
Last active August 29, 2015 14:15
Show Gist options
  • Save lazybios/12129492f7293a6b4f8d to your computer and use it in GitHub Desktop.
Save lazybios/12129492f7293a6b4f8d to your computer and use it in GitHub Desktop.

Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

If your file my.cnf (usually in the /etc/mysql/ folder) is correctly configured with

socket=/var/lib/mysql/mysql.sock you can check if mysql is running with the following command:

mysqladmin -u root -p status try changing your permission to mysql folder. If you are working locally, you can try:

sudo chmod -R 755 /var/lib/mysql/ that solved it for me

Mysql2::Error Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

First, to find your socket file:

mysqladmin variables | grep socket For me, this gives:

| socket | /tmp/mysql.sock | Then, add a line to your config/database.yml:

development: adapter: mysql2 host: localhost username: root password: xxxx database: xxxx socket: /tmp/mysql.sock

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment