Changes between Version 16 and Version 17 of epics/Archiver Appliance インストールメモ
- Timestamp:
- 02/03/20 10:47:26 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
epics/Archiver Appliance インストールメモ
v16 v17 154 154 debian由来のmariadbでは、デフォルトの文字コードがutf8mb(4-bytes unicode)になっているために767バイト制限に引っかかってテーブルを作れない。次のファイルを書き換えてutf8 (3-bytes unicode)を使うようにする。 155 155 * /etc/mysql/mariadb.conf.d/50-server.cnf 156 {{{ 157 ... 158 [mysqld] 159 ... 160 character-set-server = utf8 161 collation-server = utf8_general_ci 162 ... 163 }}} 164 * /etc/mysql/mariadb.conf.d/50-mysql-clients.cnf 165 {{{ 166 ... 167 [mysql] 168 ... 169 default-character-set = utf8 170 ... 171 }}} 156 172 * /etc/mysql/mariadb.conf.d/50-clients.cnf 157 * /etc/mysql/mariadb.conf.d/50-mysql-clients.cnf173 * AAはmysqlクライアントなので、mariadbクライアント向けの設定は変えなくてもよい 158 174 159 175 == logrotate ==