質問編集履歴

4

追記

2024/09/11 08:37

投稿

student
student

スコア83

test CHANGED
File without changes
test CHANGED
@@ -78,6 +78,16 @@
78
78
 
79
79
  [【解決】ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’](https://qiita.com/___fff_/items/3a4398b3e6a8f5e27b09)
80
80
 
81
+
82
+ [【MySQL】プログラミング初心者が今まで遭遇したエラーとその解決方法のメモ](https://qiita.com/suzy1031/items/db99542fc6cf27a07a29)
83
+ /tmp直下にmysql.sockを作ったが、起動することは出来ず、権限付与もしたが、ダメだった。
84
+ ```
85
+ root@x***-**-**-**:~# sudo chown root /tmp/mysql.sock
86
+ root@x***-**-**-**:~# sudo chmod 777 /tmp/mysql.sock
87
+ root@x***-**-**-**:~# sudo service mysql start
88
+ Job for mysql.service failed because the control process exited with error code.
89
+ See "systemctl status mysql.service" and "journalctl -xeu mysql.service" for details.
90
+ ```
81
91
  ここに問題に対して試したことを記載してください。
82
92
 
83
93
  ### 補足情報(FW/ツールのバージョンなど)

3

追記

2024/09/11 08:19

投稿

student
student

スコア83

test CHANGED
File without changes
test CHANGED
@@ -49,10 +49,28 @@
49
49
  ### 試したこと
50
50
  下記の記事を試しましたが、全て吐き出したエラーは変わりませんでした。
51
51
  [Getting Error: mysql.service failed because the control process exited with error code. after installing docker](https://stackoverflow.com/questions/70813122/getting-error-mysql-service-failed-because-the-control-process-exited-with-erro)
52
- 結果:
53
-
54
52
 
55
53
  [mysqlをrestartできない](https://terakoya.sejuku.net/question/detail/46576)
54
+ !追記!
55
+ 設定ファイルの確認
56
+ ```
57
+ root@x***-**-**-**:~# mysql --help | grep my.cnf
58
+ order of preference, my.cnf, $MYSQL_TCP_PORT,
59
+ /etc/my.cnf /etc/mysql/my.cnf ~/.my.cnf
60
+ ```
61
+
62
+ 空き容量
63
+ ```
64
+ root@x***-**-**-**:~# df -h
65
+ Filesystem Size Used Avail Use% Mounted on
66
+ tmpfs 196M 1020K 195M 1% /run
67
+ /dev/vda1 49G 5.4G 43G 12% /
68
+ tmpfs 980M 0 980M 0% /dev/shm
69
+ tmpfs 5.0M 0 5.0M 0% /run/lock
70
+ tmpfs 980M 0 980M 0% /run/qemu
71
+ /dev/vda15 105M 6.1M 99M 6% /boot/efi
72
+ tmpfs 196M 4.0K 196M 1% /run/user/0
73
+ ```
56
74
 
57
75
  [[MySQL] mysqldが起動できないときの対処 (/var/lib/mysql/ 関連)](https://tex2e.github.io/blog/database/mysql-start-err)
58
76
 

2

追記

2024/09/11 08:11

投稿

student
student

スコア83

test CHANGED
File without changes
test CHANGED
@@ -34,11 +34,23 @@
34
34
  9月 11 16:42:50 x162-43-30-66 systemd[1]: mysql.service: Start request repeate>
35
35
  9月 11 16:42:50 x162-43-30-66 systemd[1]: mysql.service: Failed with result 'e>
36
36
  9月 11 16:42:50 x162-43-30-66 systemd[1]: Failed to start MySQL Community Serv>
37
+
38
+ root@x***-**-**-**:~# sudo journalctl -xeu mysql.service
39
+ 9月 11 17:03:20 x162-43-30-66 systemd[1]: mysql.service: Start request repeated too quickly.
40
+ 9月 11 17:03:20 x162-43-30-66 systemd[1]: mysql.service: Failed with result 'exit-code'.
41
+ aa Subject: Unit failed
42
+ aa Defined-By: systemd
43
+ aa Support: http://www.ubuntu.com/support
44
+ aa
45
+ aa The unit mysql.service has entered the 'failed' state with result 'exit-code'.
46
+ 9月 11 17:03:20 x162-43-30-66 systemd[1]: Failed to start MySQL Community Server.
37
47
  ```
38
48
 
39
49
  ### 試したこと
40
50
  下記の記事を試しましたが、全て吐き出したエラーは変わりませんでした。
41
51
  [Getting Error: mysql.service failed because the control process exited with error code. after installing docker](https://stackoverflow.com/questions/70813122/getting-error-mysql-service-failed-because-the-control-process-exited-with-erro)
52
+ 結果:
53
+
42
54
 
43
55
  [mysqlをrestartできない](https://terakoya.sejuku.net/question/detail/46576)
44
56
 

1

追記

2024/09/11 07:50

投稿

student
student

スコア83

test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,21 @@
20
20
  Job for mysql.service failed because the control process exited with error code.
21
21
  See "systemctl status mysql.service" and "journalctl -xeu mysql.service" for details.
22
22
  ```
23
+ ###mysqlサービスのステータス
24
+ ```
25
+ root@x***-**-**-**:~# sudo systemctl status mysql.service
26
+ × mysql.service - MySQL Community Server
27
+ Loaded: loaded (/lib/systemd/system/mysql.service; disabled; vendor preset>
28
+ Active: failed (Result: exit-code) since Wed 2024-09-11 16:42:50 JST; 5min>
29
+ Process: 19545 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=>
30
+ CPU: 3ms
31
+
32
+ 9月 11 16:42:50 x162-43-30-66 systemd[1]: mysql.service: Scheduled restart job>
33
+ 9月 11 16:42:50 x162-43-30-66 systemd[1]: Stopped MySQL Community Server.
34
+ 9月 11 16:42:50 x162-43-30-66 systemd[1]: mysql.service: Start request repeate>
35
+ 9月 11 16:42:50 x162-43-30-66 systemd[1]: mysql.service: Failed with result 'e>
36
+ 9月 11 16:42:50 x162-43-30-66 systemd[1]: Failed to start MySQL Community Serv>
37
+ ```
23
38
 
24
39
  ### 試したこと
25
40
  下記の記事を試しましたが、全て吐き出したエラーは変わりませんでした。