Home >Database >Mysql Tutorial >Why am I getting a \'Found option without preceding group\' error in my MySQL configuration?
When attempting to connect to a remote MySQL database in Ubuntu, you may encounter the following error:
"Found option without preceding group in config file: /etc/mysql/my.cnf at line: 1"
This error occurs due to a missing configuration header in the my.cnf file. To resolve it, add [mysqld] as the first line of the file:
[mysqld] default-time-zone = "+08:00"
After adding the header, restart the MySQL service to apply the changes:
sudo mysqld stop sudo mysqld start
The my.cnf file allows you to configure various MySQL settings. Some common options include:
The above is the detailed content of Why am I getting a \'Found option without preceding group\' error in my MySQL configuration?. For more information, please follow other related articles on the PHP Chinese website!