0
を使用してmysqldeveloperに接続すると、mysql(AWS)接続が失敗します。AWS
にmysql instance
を作成し、AWSが提供するend point
を使用してmysql開発者と接続しようとしました。エンドポイント
私はそれがERROR
Status : Failure -Test failed: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
それがAWS MySQLインスタンスのか、MySQLの接続ドライバの問題であり、次の与えるMySQLの開発者で、私の接続をテスト?
私はここで2日間立ち往生してください。
セキュリティグループのソースをどこにでも変更して、問題が解決しました 次のエラーが発生しています。
Error starting at line : 1 in command -
CREATE TABLE employee
(id number(5),
name char(20),
dept char(10),
age number(2),
salary number(10),
location char(10)
)
Error report -
SQL Error: No database selected
私はあなたがする必要がありますファイアウォールで推測で任意の場所に
create tablemydb_name.sampletable(name varchar(50));
のようなあなたのテーブルのデータベース名を追加し、
AWS mysql
インスタンスの変更セキュリティグループのソースリモートホストに接続する場合はポート3305を許可してください。 – Satya大丈夫です。 – raj
これはうまくいきませんでした。昨日は接続が確立されていましたが、その接続を削除して新しい接続を試しましたが、この問題は起きています – raj