Glassfish 4.1 The Eclipse plugin cannot communicate with the GlassFish serverの対処法
環境
Eclipse 4.14
Glassfish 4.1.2
現象
GlassFishを起動する時に、下記メッセージが表示されます。
The Eclipse plugin cannot communicate with the GlassFish server.... The Eclipse plugin cannot communicate with the GlassFish server. A GlassFish Enterprise Server may be running on the same admin or HTTP port, but with a different root installation. Please also check for antivirus software, firewall configuration, or VPN setup which might block some ports.
※glassgishが8080ポートを利用しています。
操作方法
1.管理者権限でコマンドプロンプトを起動します。
2.ポート番号「8080」のプロセスのPIDを確認します。
構文
netstat -aon | find “ポート番号"
操作例
>netstat -aon | find "8080" TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 8916 TCP 0.0.0.0:18080 0.0.0.0:0 LISTENING 4260 TCP [::]:8080 [::]:0 LISTENING 8916 TCP [::]:18080 [::]:0 LISTENING 4260
3.Glassfish 8080プロセスを強制終了します
構文
taskkill /F /pid プロセスID
操作例
>taskkill /F /pid 8916 成功: PID 8916 のプロセスは強制終了されました。
4.Glassfishを再度起動します