Ubuntu 17 で MySQL のグローバル変数を設定する

Ubuntu 17 で MySQL のグローバル変数を設定する

my.cnfサブスクライバーメーラーソフトウェアが正しく動作するように、いくつかのグローバル変数を設定し、セッションを設定しようとしています。しかし、これらの変数をファイルに設定してサーバーを再起動しようとするとmysql、次のエラーが発生します。

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

my.cnf以下はファイルです

# 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'

答え1

まず、コピー アンド ペーストの問題が発生しているようです。mysql>これはコンソール クライアントからのプロンプトなので、どの構成ファイルにも含まれるべきではありません。

第二に、変数を設定する際に設定ファイルそれぞれのヘッダーの下に 1 行に 1 つずつ表示され[section]、キー値は等号で区切られます=

/etc/mysql/mysql.conf.d/mysqld.cnfしたがって、以下の任意の場所に[mysqld]追加します:

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

関連情報