IntelliJ is listening on 8080, but I'm not running any servers
已回答
IntelliJ is listening on 8080, but I'm not running any servers.
I need 8080 free for some gradle tests that run Wiremock on 8080.
IntelliJ still uses 8080 even after I've disabled all of my plugins.
What in IntelliJ uses 8080? Why? How do I stop it or change the listening port?
Thanks.
请先登录再写评论。
IntelliJ IDEA is not using the port 8080 out of the box. Which plug-ins did you install?
What happens if you open this port in a browser?
When my plugins are enabled, the following is served from http://localhost:8080/
<!DOCTYPE html>
<!-- saved from url=(0022)http://localhost:8080/ -->
<html><script src="chrome-extension://jfkjbfhcfaoldhgbnkekkoheganchiea/scripts/injected.js"></script><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"><title>404 Not Found</title></head><body><h1 style="text-align: center">404 Not Found</h1><hr><p style="text-align: center">IntelliJ IDEA 2020.1 EAP</p></body></html>
The following plugins were enabled, but IntelliJ still used 8080 after disabling every plugin and restarting. I didn't save the response from http://localhost:8080/ when the plugins were disabled.
Later, I can supply a list of all installed plugins:
Angular and AngularJS (201.6073.14)
AsciiDoc (0.30.41)
Batch Scripts Support (1.0.12)
Bytecode Viewer (201.6073.9)
ChangeReminder (201.6073.9)
Code blocks sorter (0.1.2)
Copyright (201.6073.9)
CSS (201.6073.9)
CSV Plugin (2.9.3)
Cucumber for Groovy (201.6073.9)
Cucumber for Java (201.6073.9)
Database Tools and SQL (201.6073.9)
Dependency Structure Matrix (201.6073.9)
EditorConfig (201.6073.9)
Gauge (0.2.4)
Gherkin (201.6073.9)
Git (201.6073.9)
GitHub (201.6073.9)
Gradle (201.6073.9)
Gradle Dependencies Formatter (0.5.3)
Gradle Extension (201.6073.9)
Grammar-Kit (2019.3)
Grazie (201.6073.9)
Groovy (201.6073.9)
HOCON (2020.1.0)
HTML Tools (201.6073.9)
Hunspell (201.6073.9)
IDE Features Trainer (201.6073.28)
IDE Settings Sync (201.6073.9)
Ideolog (201.0.21.0)
IntelliLang (201.6073.9)
Java Bytecode Decompiler (201.6073.9)
Java Internationalization (201.6073.9)
Java SQL Libraries (201.6073.9)
Java Stream Debugger (201.6073.9)
JavaScript and TypeScript (201.6073.9)
JavaScript Debugger (201.6073.9)
JavaScript Intention Power Pack (201.6073.9)
JUnit (201.6073.9)
Kotlin (1.3.70-release-IJ2020.1-2)
Kotlin Sequence Debugger (0.0.3)
kotlintest (3.3.0.11)
Lines Sorter (1.0.1)
Lombok (0.29-EAP)
Machine Learning Code Completion (201.6073.9)
macOS Light Theme (201.6073.9)
Markdown (201.6073.9)
Maven (201.6073.9)
Maven Extension (201.6073.9)
Mercurial (201.6073.9)
Next File Prediction (201.6073.9)
Performance Testing (201.6073.9)
Perl (201.5616.10-EAP-SNAPSHOT)
PHP (201.6073.9)
Plugin DevKit (201.6073.9)
Properties (201.6073.9)
PsiViewer (201.3803.71-EAP-SNAPSHOT.1)
Python (201.6073.24)
Reactive Streams (Reactor, RxJava) (201.6073.9)
Recommenders for Java (201.6073.9)
Resource Bundle Editor (201.6073.9)
ReStructuredText (201.6073.9)
Shell Script (201.6073.9)
Spek Framework (2.0.10-IJ2020.1)
Spy-js (201.6073.9)
Statistic (3.8)
String Manipulation (7.3.191.000.0)
Task Management (201.6073.9)
TestNG (201.6073.9)
TextMate bundles (201.6073.9)
Time Tracking (201.6073.9)
ToolWindow Colorful Icons (1.0)
TSLint (201.6073.9)
UML (201.6073.9)
W3C Validators (201.6073.9)
XPathView + XSLT (201.6073.9)
XSLT Debugger (201.6073.9)
YAML (201.6073.9)
ZKM-Unscramble (201.6073.9)
It looks like you've changed the default port of the built-in server here to 8080:
That was the issue. Thanks for the help.