質問編集履歴
2
作業手順の追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -16,4 +16,17 @@
|
|
16
16
|
```
|
17
17
|
|
18
18
|
起動時にエラーが発生し起動ができない状況です。
|
19
|
+
|
20
|
+
|
21
|
+
/*========実施した作業手順========*/
|
19
|
-
|
22
|
+
```ここに言語を入力
|
23
|
+
//mysqldを停止確認
|
24
|
+
[root@localhost tmp]# service mysqld stop
|
25
|
+
//リポジトリ追加
|
26
|
+
[root@localhost tmp]# rpm -ivh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
|
27
|
+
//インストール
|
28
|
+
[root@localhost tmp]# yum install mysql-community-server
|
29
|
+
//バージョン確認
|
30
|
+
[root@localhost tmp]# mysql --version
|
31
|
+
mysql Ver 14.14 Distrib 5.6.28, for Linux (x86_64) using EditLine wrapper
|
32
|
+
```
|
1
エラー内容修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,10 +11,6 @@
|
|
11
11
|
> MySQL Daemon failed to start.
|
12
12
|
> mysqld を起動中: [失敗]
|
13
13
|
[root@localhost /]# cat /var/log/mysql/mysqld.log | grep ERROR
|
14
|
-
2016-02-03 21:25:32 8554 [ERROR] Plugin 'InnoDB' init function returned error.
|
15
|
-
2016-02-03 21:25:32 8554 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
|
16
|
-
2016-02-03 21:25:32 8554 [ERROR] Unknown/unsupported storage engine: InnoDB
|
17
|
-
2016-02-03 21:25:32 8554 [ERROR] Aborting
|
18
14
|
2016-02-03 21:27:13 8851 [ERROR] InnoDB: Creation of SYS_TABLESPACES and SYS_DATAFILES has failed with error 18. Tablespace is full. Dropping incompletely created tables.
|
19
15
|
AFILES has failed with error 18. Tablespace is full. Dropping incompletely created tables.
|
20
16
|
```
|