質問編集履歴
5
タグ修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,51 +1,29 @@
|
|
1
1
|
表題の通りです。
|
2
|
-
|
3
2
|
DB環境の設定内容が悪いのか、以下の内容でmaven installするとエラーになります。
|
4
3
|
|
5
|
-
|
6
|
-
|
7
4
|
エラー内容
|
8
|
-
|
5
|
+
```
|
6
|
+
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
|
7
|
+
Caused by: java.net.ConnectException: Connection refused (Connection refused)
|
9
8
|
```
|
10
9
|
|
11
|
-
|
10
|
+
application.properties
|
12
|
-
|
11
|
+
```
|
13
|
-
|
12
|
+
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/database
|
14
|
-
|
13
|
+
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
14
|
+
spring.datasouce.username=user
|
15
|
+
spring.datasouce.password=
|
15
16
|
```
|
16
17
|
|
17
|
-
|
18
|
-
|
19
|
-
application.properties
|
20
|
-
|
21
|
-
```
|
22
|
-
|
23
|
-
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/database
|
24
|
-
|
25
|
-
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
26
|
-
|
27
|
-
spring.datasouce.username=user
|
28
|
-
|
29
|
-
spring.datasouce.password=
|
30
|
-
|
31
|
-
```
|
32
|
-
|
33
|
-
|
34
|
-
|
35
18
|
ドライバの設定がよくないのか、urlの設定が悪いのか・・・原因がわからず積んでます。。
|
36
|
-
|
37
19
|
お心当たりがある方、アドバイスいただけると幸いです。
|
38
20
|
|
39
|
-
|
40
|
-
|
41
21
|
補足です。
|
42
|
-
|
43
22
|
最終的にはサーバOS(centOS)で実行します
|
44
23
|
|
24
|
+
### 試したこと
|
25
|
+
①以下リンクより、urlの最後に「?enabledTLSProtocols=TLSv1.2」を追加したのですが、結果は変わらずエラーとなります。
|
26
|
+
[リンク](https://morelia.tokyo/setup/communications-link-failure/)
|
45
27
|
|
46
|
-
|
47
|
-
### 試したこと
|
48
|
-
|
49
|
-
|
28
|
+
②「The requested profile "pom.xml" could not be activated because it does not exist」というメッセージがあったため、以下リンクに従って「アクティブMavenプロファイル」を空欄にしましたが、何も進展はありませんでした。。
|
50
|
-
|
51
|
-
https://
|
29
|
+
[リンク](https://qiita.com/yuji38kwmt/items/84927f21c71a163724f1)
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,6 @@
|
|
46
46
|
|
47
47
|
### 試したこと
|
48
48
|
|
49
|
-
以下リンクより、
|
49
|
+
以下リンクより、urlの最後に「?enabledTLSProtocols=TLSv1.2」を追加したのですが、結果は変わらずエラーとなります。
|
50
50
|
|
51
|
-
|
51
|
+
https://morelia.tokyo/setup/communications-link-failure/
|
3
指摘対応
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,6 @@
|
|
46
46
|
|
47
47
|
### 試したこと
|
48
48
|
|
49
|
-
以下リンクより、urlの最後に「?enabledTLSProtocols=TLSv1.2」を追加したのですが、結果は変わらずエラーとなります。
|
49
|
+
以下リンクより、spring.datasource.urlの最後に「?enabledTLSProtocols=TLSv1.2」を追加したのですが、結果は変わらずエラーとなります。
|
50
50
|
|
51
|
-
https://morelia.tokyo/setup/communications-link-failure/
|
51
|
+
[リンク先の説明](https://morelia.tokyo/setup/communications-link-failure/)
|
2
試したこと を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -41,3 +41,11 @@
|
|
41
41
|
補足です。
|
42
42
|
|
43
43
|
最終的にはサーバOS(centOS)で実行します
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
### 試したこと
|
48
|
+
|
49
|
+
以下リンクより、urlの最後に「?enabledTLSProtocols=TLSv1.2」を追加したのですが、結果は変わらずエラーとなります。
|
50
|
+
|
51
|
+
https://morelia.tokyo/setup/communications-link-failure/
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -35,3 +35,9 @@
|
|
35
35
|
ドライバの設定がよくないのか、urlの設定が悪いのか・・・原因がわからず積んでます。。
|
36
36
|
|
37
37
|
お心当たりがある方、アドバイスいただけると幸いです。
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
補足です。
|
42
|
+
|
43
|
+
最終的にはサーバOS(centOS)で実行します
|