質問編集履歴

3

解決しました。

2020/03/19 10:57

投稿

shimamo
shimamo

スコア7

test CHANGED
File without changes
test CHANGED
@@ -89,3 +89,17 @@
89
89
  mysql-community-common-5.6.38-2.el6.x86_64
90
90
 
91
91
  mysql-community-libs-5.6.38-2.el6.x86_64
92
+
93
+ <追記>
94
+
95
+ MySQLのバージョンが5.6の場合MySQLのJDBCドライバは最新の8.0系でなく5.1系でも大丈夫なことが分かったので、
96
+
97
+ 5.1に落としたらうまくいきました。
98
+
99
+ https://dev.mysql.com/downloads/connector/j/5.1.html
100
+
101
+ ネットでmysql connector/j ダウンロードと検索すると以下のページが出て8.0しか出てこないのでで何とかする方法を
102
+
103
+ 探してしまいましたが、5.1でもいけないか確認すべきでした。ヒントくださったかたありがとうございました。
104
+
105
+ https://www.mysql.com/jp/products/connector/

2

追記しました

2020/03/19 10:57

投稿

shimamo
shimamo

スコア7

test CHANGED
File without changes
test CHANGED
@@ -77,3 +77,15 @@
77
77
  The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.」
78
78
 
79
79
  と出ているので、怪しそうですが「com.mysql.jdbc.Driver」の設定を探しているのですが、どこにあるか見つけられてません。
80
+
81
+ <追記>
82
+
83
+ MySQL自体はAuroraなので、そちら側でエラー出ていないか確認しましたがエラーは出てませんでした。
84
+
85
+ MySQLクライアントとしてmariaDBが入っていたので削除してMySQL Communityを入れてみたのですが、結果変わらずでした。
86
+
87
+ mysql-community-client-5.6.38-2.el6.x86_64
88
+
89
+ mysql-community-common-5.6.38-2.el6.x86_64
90
+
91
+ mysql-community-libs-5.6.38-2.el6.x86_64

1

ソフトウエアのバージョン等追記しました。

2020/03/19 06:05

投稿

shimamo
shimamo

スコア7

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,49 @@
31
31
  JDBCドライバに対して何か必要なのでしょうか。もしくは他に何か考えられますでしょうか。
32
32
 
33
33
  環境変数のCLASSPATHにJDBCドライバのありかを指定しております。
34
+
35
+
36
+
37
+ <追記>
38
+
39
+ ありがとうございます。情報追記します。
40
+
41
+ MySQLのバージョンは5.6.10
42
+
43
+ MySQLのJDBCドライバはmysql-connector-java-8.0.19.jarです。
44
+
45
+ 他は以下です。
46
+
47
+ IBM WebSphere Application Server 8.5.5
48
+
49
+ IBM MobileFirst Platform Foundation 7.1
50
+
51
+ IBM JDK 8.0
52
+
53
+
54
+
55
+ MobileFirst Platform Foundationのantタスクを使用して
56
+
57
+ データベース作成する際にエラーになりました。
58
+
59
+
60
+
61
+ 「mysql "The driver has not received any packets from the server."」
62
+
63
+ では検索してみているのですが、うまく見つけられませんでした。
64
+
65
+
66
+
67
+ https://qiita.com/syoki/items/3d82ef00300868353572にある
68
+
69
+ 8.x以前:「com.mysql.jdbc.Driver」
70
+
71
+ 8.x:「com.mysql.cj.jdbc.Driver」
72
+
73
+ ですが、ログ上に
74
+
75
+ 「Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.
76
+
77
+ The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.」
78
+
79
+ と出ているので、怪しそうですが「com.mysql.jdbc.Driver」の設定を探しているのですが、どこにあるか見つけられてません。