質問編集履歴
2
誤記修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
terminate called after throwing an instance of 'std::logic_error
|
21
|
-
what():
|
21
|
+
what(): basic_string::_S_construct null not valid
|
22
22
|
```
|
23
23
|
↑未解決
|
24
24
|
|
@@ -50,7 +50,7 @@
|
|
50
50
|
代わりに、
|
51
51
|
```
|
52
52
|
terminate called after throwing an instance of 'std::logic_error
|
53
|
-
what():
|
53
|
+
what(): basic_string::_S_construct null not valid
|
54
54
|
```
|
55
55
|
が出力されました。
|
56
56
|
|
1
状況の変化
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,8 +11,16 @@
|
|
11
11
|
```
|
12
12
|
terminate called after throwing an instance of 'std::bad_alloc'
|
13
13
|
what(): std::bad_alloc
|
14
|
+
```
|
15
|
+
↑解決済み
|
14
16
|
|
17
|
+
### 新たに発生していた問題・エラーメッセージ
|
18
|
+
|
15
19
|
```
|
20
|
+
terminate called after throwing an instance of 'std::logic_error
|
21
|
+
what(): basic::_S_construct null not valid
|
22
|
+
```
|
23
|
+
↑未解決
|
16
24
|
|
17
25
|
### 試したこと
|
18
26
|
キャッシュの削除を実施は実施いたしました。
|
@@ -27,5 +35,24 @@
|
|
27
35
|
Topを実行し、CPU使用率とメモリ使用率を確認したのですが、
|
28
36
|
それぞれ数%で高いというわけでもありませんでした。
|
29
37
|
|
38
|
+
### 試したこと その2
|
39
|
+
状況が変わりました。
|
40
|
+
|
41
|
+
df -h /bootを実行したところ、
|
42
|
+
ディスクの容量の94%がUseになっておりました。
|
43
|
+
過去の学習に使用したDBを外部へ移行し、空き容量を増やすことで、
|
44
|
+
上記のエラー
|
45
|
+
```
|
46
|
+
terminate called after throwing an instance of 'std::bad_alloc'
|
47
|
+
what(): std::bad_alloc
|
48
|
+
```
|
49
|
+
は出なくなりました。
|
50
|
+
代わりに、
|
51
|
+
```
|
52
|
+
terminate called after throwing an instance of 'std::logic_error
|
53
|
+
what(): basic::_S_construct null not valid
|
54
|
+
```
|
55
|
+
が出力されました。
|
56
|
+
|
30
57
|
何か解決方法や確認すべき点をご存知の方がいらっしゃれば、
|
31
58
|
ご教示いただければと思います。
|