You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is by design or not, but after install the mysql_socket variable was incorrect in the surrogate.conf, resulting in this error in the logs:
160229 22:58:53 Connecting to MySQL server host: localhost, user: backups, password: set, port: 0, socket: /run/mysqld/mysqld.sock
Failed to connect to MySQL server: Can't connect to local MySQL server through socket '/run/mysqld/mysqld.sock' (2).
Easy enough to fix in the config but might be good to have a comment prompting users to double check that path.
mysql_socket="/run/mysqld/mysqld.sock"
mysql_socket="/var/lib/mysql/mysql.sock"
Worked perfect after resolving that. Great work on this script BTW!
The text was updated successfully, but these errors were encountered:
Not sure if this is by design or not, but after install the mysql_socket variable was incorrect in the surrogate.conf, resulting in this error in the logs:
160229 22:58:53 Connecting to MySQL server host: localhost, user: backups, password: set, port: 0, socket: /run/mysqld/mysqld.sock
Failed to connect to MySQL server: Can't connect to local MySQL server through socket '/run/mysqld/mysqld.sock' (2).
Easy enough to fix in the config but might be good to have a comment prompting users to double check that path.
mysql_socket="/run/mysqld/mysqld.sock"
mysql_socket="/var/lib/mysql/mysql.sock"
Worked perfect after resolving that. Great work on this script BTW!
The text was updated successfully, but these errors were encountered: