Configurando variáveis ​​globais para Mysql no Ubuntu 17

Configurando variáveis ​​globais para Mysql no Ubuntu 17

Estou tentando definir algumas variáveis ​​globais e definir a sessão para que um software de mala direta de assinante funcione corretamente. Mas quando tento definir essas variáveis ​​no my.cnfarquivo e reiniciar o mysqlservidor, recebo este erro,

Job for mysql.service failed because the control process exited with error code.
See "systemctl status mysql.service" and "journalctl -xe" for details.

Abaixo está my.cnfo arquivo

# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA

!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

mysql> SET GLOBAL sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'

mysql> SET SESSION sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'

Responder1

Em primeiro lugar, parece que você tem alguns problemas de copiar e colar. Este mysql>é o prompt do cliente do console, portanto nunca deve estar em nenhum arquivo de configuração.

Em segundo lugar, ao definir variáveis ​​noarquivo de configuração, eles apenas ficam nos respectivos [section]cabeçalhos, um por linha, e os valores-chave são separados por um =sinal de igual.

Então, em /etc/mysql/mysql.conf.d/mysqld.cnfqualquer lugar abaixo, [mysqld]adicione:

sql_mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

informação relacionada