質問編集履歴

1

エラーログを確認した結果を追記

2021/01/07 15:16

投稿

mikeko0901
mikeko0901

スコア227

test CHANGED
File without changes
test CHANGED
@@ -57,3 +57,117 @@
57
57
  起動のコードが誤っているのでしょうか・・・?
58
58
 
59
59
  ご教示いただけますと幸いです。
60
+
61
+
62
+
63
+ ----------------------------------------
64
+
65
+ 【20210107追記】
66
+
67
+ systemctl status mysqld.service、journalctl -xe、logファイルを見てみました。
68
+
69
+
70
+
71
+ ■systemctl status mysqld.service の中身
72
+
73
+ ```
74
+
75
+ ● mysqld.service - MySQL Server
76
+
77
+ Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
78
+
79
+ Active: failed (Result: exit-code) since Thu 2021-01-07 15:08:28 UTC; 8s ago
80
+
81
+ Docs: man:mysqld(8)
82
+
83
+ http://dev.mysql.com/doc/refman/en/using-systemd.html
84
+
85
+ Process: 15557 ExecStart=/usr/sbin/mysqld $MYSQLD_OPTS (code=exited, status=1/FAILURE)
86
+
87
+ Process: 15493 ExecStartPre=/usr/bin/mysqld_pre_systemd (code=exited, status=0/SUCCESS)
88
+
89
+ Main PID: 15557 (code=exited, status=1/FAILURE)
90
+
91
+ Status: "Server startup in progress"
92
+
93
+ Error: 13 (Permission denied)
94
+
95
+ ```
96
+
97
+ パーミッションに問題がとのことでしたので、/var/lib/mysql配下のパーミッションを見てみました。
98
+
99
+ ```
100
+
101
+ ec2-user:/var/lib/mysql $ sudo ls -l
102
+
103
+
104
+
105
+ total 32
106
+
107
+ -rw------- 1 mysql mysql 1679 Jan 7 14:45 ca-key.pem
108
+
109
+ -rw-r--r-- 1 mysql mysql 1107 Jan 7 14:45 ca.pem
110
+
111
+ -rw-r--r-- 1 mysql mysql 1107 Jan 7 14:45 client-cert.pem
112
+
113
+ -rw------- 1 mysql mysql 1679 Jan 7 14:45 client-key.pem
114
+
115
+ -rw------- 1 mysql mysql 1679 Jan 7 14:45 private_key.pem
116
+
117
+ -rw-r--r-- 1 mysql mysql 451 Jan 7 14:45 public_key.pem
118
+
119
+ -rw-r--r-- 1 mysql mysql 1107 Jan 7 14:45 server-cert.pem
120
+
121
+ -rw------- 1 mysql mysql 1675 Jan 7 14:45 server-key.pem
122
+
123
+ ```
124
+
125
+ ↑このようになっております。
126
+
127
+
128
+
129
+ ■logファイルを見てみました。
130
+
131
+ ```
132
+
133
+ 2021-01-07T14:36:41.998101Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.22) initializing of server in progress as process 14011
134
+
135
+ 2021-01-07T14:36:41.999868Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
136
+
137
+ 2021-01-07T14:36:41.999896Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/mysql/ is unusable. You can remove all files that the server added to it.
138
+
139
+ 2021-01-07T14:36:41.999964Z 0 [ERROR] [MY-010119] [Server] Aborting
140
+
141
+ 2021-01-07T14:36:42.000085Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22) MySQL Community Server - GPL.
142
+
143
+ 2021-01-07T15:08:28.545200Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.22) initializing of server in progress as process 15555
144
+
145
+ 2021-01-07T15:08:28.593932Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
146
+
147
+ 2021-01-07T15:08:28.593971Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/mysql/ is unusable. You can remove all files that the server added to it.
148
+
149
+ 2021-01-07T15:08:28.595505Z 0 [ERROR] [MY-010119] [Server] Aborting
150
+
151
+ 2021-01-07T15:08:28.610746Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22) MySQL Community Server - GPL.
152
+
153
+ ```
154
+
155
+ ↑/var/lib/mysql/の中身を削除しろとあったので、全て削除しましたが、起動を試みるといくつかのファイルができてしまい同じLogの内容が出ます。
156
+
157
+
158
+
159
+ ちなみに、こちらの[http://wordpress.ideacompo.com/?p=13004](http://wordpress.ideacompo.com/?p=13004)が内容的に近いのかなと思いまして、
160
+
161
+
162
+
163
+ ```rm -rf /var/lib/mysql```
164
+
165
+ をした後、mysqlをremove⇒再インストールしましたが、同じエラーが出てしまいます。。。
166
+
167
+
168
+
169
+ 他に何を試したらよいか分からず困っております・・・
170
+
171
+
172
+
173
+ ご教示いただけますと幸いです。