Is there a way to use environment variables in my.cnf? Ideally, I'd like to do something like
[client] user = $MYSQL_USER password = $MYSQL_PASSWORD host = db But, with the configuration above, when I try to connect to MySQL, I get
ERROR 1045 (28000): Access denied for user '$MYSQL_USER'@'188.1.1.5' (using password: YES)
