Ronald Bradford’s recent warning to be sure to know your my.cnf sections reminded me of a similar issue that I ran into last summer, where putting the “group” option in both the [mysqld_safe] and [mysqld] directives resulted in a mostly silent problem.
  I started noticing this in MySQL 5.1 and it affected both the
  official MySQL binary and the Percona binary. In trying to be
  conscientious, I had the following set:
  
  [mysqld_safe]
  user=mysql
  group=mysql
  [mysqld]
  user=mysql
  group=mysql
However, when the MySQL server started up, the error log showed
  [Warning] option 'group_concat_max_len': unsigned value 0
  adjusted to 4
This was obviously a problem, but …
[Read more]