質問編集履歴

1

補足

2019/10/17 07:08

投稿

Qoo
Qoo

スコア1249

test CHANGED
File without changes
test CHANGED
@@ -125,3 +125,19 @@
125
125
  }
126
126
 
127
127
  ```
128
+
129
+
130
+
131
+ ---補足---
132
+
133
+ サーバ上で下記のように外部からアクセスできるユーザを作成しています。
134
+
135
+ grant all privileges on *.* to test_user1@"%" identified by 'test1234' with grant option;
136
+
137
+
138
+
139
+ クライアント側の端末でmysqlを起動し、
140
+
141
+ mysql -h xxx.xxx.xxx.xxx -u test_user1 -p
142
+
143
+ で接続すると問題なく接続できました。