回答編集履歴

4

追記

2018/10/30 13:53

投稿

tanat
tanat

スコア18713

test CHANGED
@@ -1,3 +1,11 @@
1
+ [追記]
2
+
3
+ 以下の回答は直接解決二は結びつかなかったものなので、閲覧時には注意してください。
4
+
5
+
6
+
7
+ ---
8
+
1
9
  「Amazon Web Services 基礎からのネットワーク&サーバー構築」
2
10
 
3
11
  で指示されている構築方法がわからないので確実なことは言えませんが

3

追記

2018/10/30 13:53

投稿

tanat
tanat

スコア18713

test CHANGED
@@ -58,6 +58,10 @@
58
58
 
59
59
  とすると動く予感がします。
60
60
 
61
+ [MySQLのバグっぽい?](https://bugs.mysql.com/bug.php?id=71606)
62
+
63
+
64
+
61
65
 
62
66
 
63
67
  参考

2

追記

2018/10/29 17:08

投稿

tanat
tanat

スコア18713

test CHANGED
@@ -61,3 +61,5 @@
61
61
 
62
62
 
63
63
  参考
64
+
65
+ https://stackoverflow.com/questions/43437490/pdo-construct-server-sent-charset-255-unknown-to-the-client-please-rep

1

ログからの追記

2018/10/29 16:56

投稿

tanat
tanat

スコア18713

test CHANGED
@@ -15,3 +15,49 @@
15
15
  wordpressのエラーログ([参考](https://qiita.com/miiitaka/items/9c8ea4e36c78381c3748))
16
16
 
17
17
  に出力されている可能性が高いので、まずはエラーログを確認してみて下さい。
18
+
19
+
20
+
21
+ ---
22
+
23
+
24
+
25
+ debug.logの内容から推測すると
26
+
27
+ ```my.cnf
28
+
29
+ collation-server = utf8mb4_general_ci
30
+
31
+ character-set-server = utf8mb4
32
+
33
+
34
+
35
+ [client]
36
+
37
+ default-character-set = utf8mb4
38
+
39
+ ```
40
+
41
+
42
+
43
+ ```my.cnf
44
+
45
+ collation-server = utf8_general_ci
46
+
47
+ character-set-server = utf8
48
+
49
+
50
+
51
+ [client]
52
+
53
+ default-character-set = utf8
54
+
55
+ ```
56
+
57
+
58
+
59
+ とすると動く予感がします。
60
+
61
+
62
+
63
+ 参考