We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b729ee commit 3261c9dCopy full SHA for 3261c9d
1 file changed
src/content/docs/linux/mysql-setup-on-antix.mdx
@@ -80,3 +80,13 @@ This guide will walk you through setting up MySql on Antix linux runinit system.
80
```
81
82
</Steps>
83
+
84
+## Common Problem
85
86
+when running `$: mysql -u root -p` if you get
87
+`ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)`
88
89
+```sh
90
+sudo mkdir -p /var/run/mysqld
91
+sudo chown mysql:mysql /var/run/mysqld
92
+```
0 commit comments